bullet.js

1.0.0 • Public • Published

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);
});

Package Sidebar

Install

npm i bullet.js

Weekly Downloads

0

Version

1.0.0

License

GPL-3.0

Last publish

Collaborators

  • icroque