0.4.0 • Published 2 years ago

brandwatch-api v0.4.0

Weekly downloads
12
License
MIT
Repository
-
Last release
2 years ago

node-brandwatch-api

Really, really simple NodeJS wrapper for the Brandwatch API that wraps request. Build Status

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