0.5.0 • Published 7 years ago

api-build v0.5.0

Weekly downloads
1
License
ISC
Repository
-
Last release
7 years ago

api

CircleCI

cli and node module to create, manage and run services

npm.io

Usage (CLI)

With npm:

npm install api-build -g

With yarn:

yarn global add api-build

This gives you the api command line program

# Displays usage information
api 

# In a fresh directory
api init

Usage (node module)

With npm:

npm install api-build --save

With yarn:

yarn add api-build
const api = require('api-build');

api.create(name, function)

  • name is the name of the of the action
  • function is the code to invoke when this action is run

function is invoked with (data, api)

  • data is an object containing parameters passed to your actions
  • api is an object containing error and success methods to call on completion

Credits

Dom Harrington

Marc Cuva