treetagger

0.1.1 • Public • Published

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, results) {
    console.log(results);
});
 
/*
[ { t: 'This', pos: 'DT', l: 'this' },
  { t: 'is', pos: 'VBZ', l: 'be' },
  { t: 'a', pos: 'DT', l: 'a' },
  { t: 'test', pos: 'NN', l: 'test' },
  { t: '!', pos: 'SENT', l: '!' } ]
*/
 

License

Copyright (c) 2013 Thomas Holloway
Licensed under the MIT license.

Readme

Keywords

none

Package Sidebar

Install

npm i treetagger

Weekly Downloads

11

Version

0.1.1

License

none

Last publish

Collaborators

  • nyxtom