bullet.js
v1.0.0
Published
A node.js pushbullet api wrapper.
Downloads
6
Maintainers
Readme
bullet.js
This is a simple and complete port of the pushbullet api in node.js.
Installation
npm install bullet.jsGet 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);
});