nlprep-node
v1.1.0
Published
nodejs client library for the nlprep platform
Downloads
2
Readme
nlprep-node
NodeJS SDK for streaming from the nlprep platform.
Installation
npm install nlprep-node
Usage
var nlprep = require('nlprep-node');
var stream = nlprep.stream(['twitter-streamer']);
stream.on('data', function(data) {
console.log(data);
});