JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q34916F
  • License MIT

Community Node.js API wrapper for Forte Web Services

Package Exports

  • forte

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (forte) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

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