node-heroku
A wrapper around the v3 Heroku API.
Usage
var Heroku = require('heroku-client').Heroku;
heroku = new Heroku({ token: user.apiToken });
heroku.apps().list(function (err, apps) {
console.log(apps);
});
heroku.apps('my-app').info(function (err, app) {
console.log(app);
});
heroku.apps().create({ name: 'my-new-app' }, function (err, app) {
console.log(app);
});
var newPlan = { plan: { name: 'papertrail:fixa' } };
heroku.apps('my-app').addons('papertrail').update(newPlan, function (err, addon) {
console.log(addon);
});
Promises
node-heroku works with Node-style callbacks, but also implements promises with the q library.
var q = require('q');
heroku.apps().list().then(function (apps) {
return q.all(apps.map(function (app) {
return heroku.apps(app.name).dynos().list();
}));
}).then(function (dynos) {
console.log(dynos);
});
Caching
When NODE_ENV
is set to "production", node-heroku will create a memcached client using memjs. See the memjs repo for configuration instructions.
For local development with caching, it's enough to start a memcached server and set MEMCACHIER_SERVERS
to 0.0.0.0:11211
in your .env
file.
You will also need to pass an option called cacheKeyPostfix
when creating your node-heroku client:
var heroku = new Heroku({ token: user.apiToken, cacheKeyPostfix: user.id });
This ensures that API responses are cached and properly scoped to the user that node-heroku is making requests on behalf of.
Contributing
Running tests
node-heroku uses jasmine-node for tests:
$ npm test