npm install apeman-api-clientapeman-api-client
==========
[![Build Status][bd_travis_shield_url]][bd_travis_url]
[![Code Climate][bd_codeclimate_shield_url]][bd_codeclimate_url]
[![Code Coverage][bd_codeclimate_coverage_shield_url]][bd_codeclimate_url]
[![npm Version][bd_npm_shield_url]][bd_npm_url]
[![JS Standard][bd_standard_shield_url]][bd_standard_url]
[bd_repo_url]: https://github.com/apeman-api-labo/apeman-api-client
[bd_travis_url]: http://travis-ci.org/apeman-api-labo/apeman-api-client
[bd_travis_shield_url]: http://img.shields.io/travis/apeman-api-labo/apeman-api-client.svg?style=flat
[bd_travis_com_url]: http://travis-ci.com/apeman-api-labo/apeman-api-client
[bd_travis_com_shield_url]: https://api.travis-ci.com/apeman-api-labo/apeman-api-client.svg?token=
[bd_license_url]: https://github.com/apeman-api-labo/apeman-api-client/blob/master/LICENSE
[bd_codeclimate_url]: http://codeclimate.com/github/apeman-api-labo/apeman-api-client
[bd_codeclimate_shield_url]: http://img.shields.io/codeclimate/github/apeman-api-labo/apeman-api-client.svg?style=flat
[bd_codeclimate_coverage_shield_url]: http://img.shields.io/codeclimate/coverage/github/apeman-api-labo/apeman-api-client.svg?style=flat
[bd_gemnasium_url]: https://gemnasium.com/apeman-api-labo/apeman-api-client
[bd_gemnasium_shield_url]: https://gemnasium.com/apeman-api-labo/apeman-api-client.svg
[bd_npm_url]: http://www.npmjs.org/package/apeman-api-client
[bd_npm_shield_url]: http://img.shields.io/npm/v/apeman-api-client.svg?style=flat
[bd_standard_url]: http://standardjs.com/
[bd_standard_shield_url]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg
Client for apeman api
Installation
-----
``bash`
$ npm install apeman-api-client --save
Usage
---------
`javascript
#!/usr/bin/env node
/**
* This is an example of rfunc client
*/
'use strict'
const apemanApi = require('apeman-api-client')
const co = require('co')
co(function * () {
let api = apemanApi('http://myapp.example.com')
let sign = yield api.connect('sign') // Define a client
// Call remote api and receive the result
let { success } = yield sign.signin('foo', 'bar1234')
console.log('success:', success)
{
// Access to scoped api
let admin = api.of('@admin')
let user = admin.user()
yield user.destroy(1)
/ ... /
}
}).catch((err) => console.error(err))
``
License
-------
This software is released under the MIT License.
Links
------
+ [apeman][apeman_url]
[apeman_url]: https://github.com/apeman-labo/apeman