treetagger
v0.1.1
Published
Node.js module for interfacing with the TreeTagger toolkit by Helmut Schmid.
Downloads
11
Readme
treetagger
Node.js module for interfacing with the TreeTagger toolkit by Helmut Schmid.
Getting Started
Install the module with: npm install treetagger
var treetagger = require('treetagger');
treetagger.tag("This is a test!", function (err, buffer) {
console.log(buffer.toString());
});
/*
This DT this
is VBZ be
a DT a
test NN test
! SENT !
*/
License
Copyright (c) 2013 Thomas Holloway
Licensed under the MIT license.