Feather Node.js Library
This library provides a convenient interface to the Feather API for applications running in a Node.js server environment.
Installation
$ npm install feather-id --save# or $ yarn add feather-id
Usage
The Feather package must be initialized with your project's API key, available on the Feather Dashboard. Include the API key when you require the package:
const feather = "live_...";
Using Promises
Every method returns a promise:
feathercredentials ;
Development
If you do not have yarn
installed, you can install it with npm install --global yarn
.
Run the tests:
$ yarn install$ yarn test