brandwatch-api

nodejs client for the Brandwatch API

Usage no npm install needed!

<script type="module">
  import brandwatchApi from 'https://cdn.skypack.dev/brandwatch-api';
</script>

README

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://newapi.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