watson-nlc-wrapper
v0.0.4
Published
watson nlc wrapper with login
Downloads
2
Readme
watson-nlc-wrapper
Needed to use watson classifier but didn't want to keep on setting it up with cfenv.
Installation
npm install watson-nlc-wrapper --save
Usage
For Bluemix:
var Classifier = require('watson-nlc-wrapper');
var classifier = new Classifier('my-bluemix-classifier-service-name');
The rest of functionalities are directly from IBM Watson NLC Service,
except for .list, which now only accepts the callback argument.
For hardcoded Credentials:
var Classifier = require('watson-nlc-wrapper');
var classifier = new Classifier({
username: <username>,
password: <password>,
<other nlc params>: <param value>
});
Added Functionalities
.getClassifier(name, cb)
//success returns {classifier_id, url, name, language, created}
//fail returns null
classifier.getClassifier('abc', function(err, classifier){
if(err) return console.error(err);
//do stuff with classifier
})