Skip to content

Node.js module for interfacing with the TreeTagger toolkit by Helmut Schmid.

License

Notifications You must be signed in to change notification settings

nyxtom/treetagger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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');
var tagger = new Treetagger();
tagger.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.

About

Node.js module for interfacing with the TreeTagger toolkit by Helmut Schmid.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages