Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

itembase-document-stream

Package Overview
Dependencies
Maintainers
7
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

itembase-document-stream

Stream itembase documents

latest
Source
npmnpm
Version
1.1.3
Version published
Weekly downloads
1
Maintainers
7
Weekly downloads
 
Created
Source

itembase-document-stream Build Status

Stream itembase documents. Handles pagination and refreshing the access token if necessary.

npm install itembase-document-stream

Usage

As a minimum the constructor requires the resource URL and a valid access token.

var itembase = require('itembase-document-stream');
var JSONStream = require('JSONStream');

itembase('/v1/users/:user_id/transactions', 'access_token')
	.pipe(JSONStream.stringify())
	.pipe(process.stdout);

It's also possible to pass more complex options.

var tokens = {
	access_token: 'access_token',
	refresh_token: 'refresh_token'
};

var options = {
	client: { id: 'client_id', secret: 'client_secret' },
	urls: { api: 'http://sandbox.api.itembase.io', accounts: 'http://sandbox.accounts.itembase.io' },
	query: { document_limit: 10 }
};

var stream = itembase('/v1/users/:user_id/transactions', tokens, options);

stream.on('tokens', function(tokens) {
	// Tokens have been refreshed
	console.log(tokens);
});

stream.on('data', function(data) {
	console.log(data);
});

The client option, together with the refresh_token, is necessary to be able to refresh the access token if it expires. Otherwise an error event is emitted.

It's also possible to override the base URLs in the options map, and pass additional query parameters to the API request.

Additionally a start event is emitted when the first request is performed. It contains, among other things, total number of documents to expect.

License

MIT

FAQs

Package last updated on 06 May 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