0.1.1 • Published 12 years ago

treetagger v0.1.1

Weekly downloads
6
License
-
Repository
github
Last release
12 years ago

treetagger Build Status

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.