0.6.1 ā€¢ Published 6 years ago

@caldera-labs/api-client v0.6.1

Weekly downloads
6
License
GPL-2.0
Repository
github
Last release
6 years ago

caldera-api-client

JavaScript API client for Caldera Forms REST API and Caldera Forms Pro REST API.

šŸŒ‹ šŸ‘€ Documentation

Build Status Documentation Status Maintainability

Install

npm i @caldera-labs/api-client

Usage

Create a form client and use it to get page one of form configs via API

import {wpClientFactory} from '@caldera-labs/api-client';

const formsAdminApiClient = wpClientFactory(
	'https://hiroy.club/wp-json/cf-api/v2', //root of Caldera Forms REST API namespace
	'12345', //the nonce for REST API cookie authentication
    	'forms' //type of client to get
);
let forms = [];
formsAdminApiClient(page).then(r => {
	forms = r;
}).catch(error => {
	console.log(error);
	throw error;
});

See: http://calderalabs.org/caldera-api-client/manual/overview.html#usage

Development Requirements

Testing

We use Facebook Jest for unit tests. Test go in the directory __tests__.

  • Run test watcher
yarn test

Make sure to review the docs on testing requests

Scripts

Build for release

  • yarn build
    • Runs tests, and flow type checks and Babel compiles with minification and source map.

This script calls a pre, compile, and post subcommands. For consistency, please call other scripts at those three events.

Tests

*yarn test - Run test watcher

  • npm test:once
    • Run tests once

Type-checking With Flow

  • yarn flow

Lint Code

  • yarn lint
    • Run linter and fixer watch
  • yarn lint:fix
    • Lint and fix code once
  • yarn lint:once
    • Lint code once

Generate Documentation

  • npm run documentation
    • Generates documentation from inline docs
    • Generates documentation from markdown files in /manual

Release To npm

Must be logged in as project maintainer via npm cli

  • yarn release
0.6.1

6 years ago

0.6.0

6 years ago

0.5.0

6 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.3.0

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.4

6 years ago