New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

bullethq

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bullethq

A Node wrapper for the BulletHQ API service

latest
Source
npmnpm
Version
0.0.6
Version published
Weekly downloads
14
55.56%
Maintainers
1
Weekly downloads
 
Created
Source

node-bullethq

How to use it?


var bullethq = require("bullethq");

bullethq.initialize("Email", "API-Key", "BusinessId (if needed)");


bullethq.listAllInvoices(function(err, data) {
	if (err) { console.log(err); return false; }

	console.log(data);
});


bullethq.createClientPayment({
	    currency: "EUR",
	    amount: "500.00",
	    dateReceived: "2015-02-01",
	    clientId: 94682,
	    bankAccountId: 4562,
	    invoiceIds: [258772]
	}, function(err, data) {
		if (err) { console.log(err); return false; }

		console.log(data);
	}
);

Installation

Via [npm][]:

 $ npm install bullethq

As a submodule of your project

$ git submodule add http://github.com/owenobyrne/node-bullethq.git bullethq
$ git submodule update --init

Keywords

node

FAQs

Package last updated on 03 Feb 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts