Skip to content

kurtmarcink/node-jambase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JamBase API for Node.js

node-jambase aims to provide a client library for the JamBase V3 REST API.

Configuration

You will need a valid JamBase API Key. Directions for obtaining one can be found here.

var JamBase = require('node-jambase');

var client = new JamBase(apiKey);

Add your credentials accordingly. I would use environment variables to keep your private info safe. So something like:

var client = new JamBase(process.env.JAMBASE_API_KEY);

Installation

npm install node-jambase

Usage

Methods are provided for all of the methods found in the JamBase API Documentation.

For examples, see examples/all.js.

About

JamBase API client library for node.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published