1.0.0 • Published 8 years ago

bullet.js v1.0.0

Weekly downloads
3
License
GPL-3.0
Repository
github
Last release
8 years ago

bullet.js

This is a simple and complete port of the pushbullet api in node.js.

Installation

npm install bullet.js

Get started

Authentication with an api key

bullet.setToken('your token here');

Get pushes

bullet.getPushes(function (err, data) {
  if (err) throw err;
  console.log(data);
});

Get user info

bullet.getUser(function (err, data) {
  if (err) throw err;
  console.log(data);
});