brandwatch-api
v0.4.0
Published
nodejs client for the Brandwatch API
Downloads
277
Readme
node-brandwatch-api
Really, really simple NodeJS wrapper for the Brandwatch API that wraps request.
Usage
var BrandwatchAPI = require('brandwatch-api').BrandwatchAPI,
api = new BrandwatchAPI({apiUrl: 'http://api.brandwatch.com:80'}, {
auth: access_token
});
// "api" is a wrapped request object
api.get('/user', function(err, res, body){
});
As the module is just a wrapper around request the API is the same
Contributing
Contributions accepted - please just ensure you have unit tests, update documentation, and adhere to the linting rules