forte
v0.2.7
Published
Community Node.js API wrapper for Forte Web Services
Downloads
16
Readme
This library is alpha status. You have been warned!
Forte community library for Node.js
See the Forte Web Service docs for help.
Pull requests welcome. Please write tests.
Ensure the PR conforms to the JSCS and JSHint standards.
npm run jscs
npm run jshint
Usage
var Forte = require('forte');
var credentials = require('./test/credentials.example.json');
var forte = new Forte(credentials);
forte.setDevmode(); // to use the sandbox endpoint
See the tests in ./test/functional/
for common usage.
Testing
npm run unit
npm run functional
npm test # everything
Debugging
Run with DEBUG=forte*
environment variable.
DEBUG=forte* npm test