A simple SendPulse REST client library and example for Node.js
npm install sendpulse-apiAPI Documentation https://sendpulse.com/api
```
npm install sendpulse-api
`javascript
var sendpulse = require("sendpulse-api");
/*
* https://login.sendpulse.com/settings/#api
*/
var API_USER_ID = "USER_ID";
var API_SECRET = "USER_SECRET";
var TOKEN_STORAGE = "/tmp/";
sendpulse.init(API_USER_ID,API_SECRET,TOKEN_STORAGE,function() {
sendpulse.listAddressBooks(console.log);
});
``
You can get full list of API library methods in example