AudienseCo / node-hubspot

Node wrapper for the HubSpot API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-hubspot

Node.js wrapper for the HubSpot API

install

npm install node-hubspot

use

var Client = require('hubspot');

var client = new Client();

client.useKey('API_KEY');
client.useToken('MY_ACCESS_TOKEN');
client.campaigns.get(function(err, res) {
	if (err) { throw err; }
	console.log(res);
});

About

Node wrapper for the HubSpot API


Languages

Language:JavaScript 100.0%