1.0.1 • Published 5 years ago

@ewarren/bsd-node v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

bsd-node

NodeJS Library for interacting with the BSD Tools.

Setup

$ npm install @ewarren/bsd-node

Usage

Convert a two-letter code to the name of a state

const bsd = require('@ewarren/bsd-node');

const bsdClient = bsd('client.bsd.net', 'your_app_id', 'your_app_secret');

const response = await client.get('/page/api/signup/list_form_fields', {
  'signup_form_id': '123',
});

console.log(response.statusCode);
console.log(response.data.api.signup_form_field);

Local development

Coming soon...