npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

pos-tagger.js

v1.0.10

Published

A Kotlin rewrite of the Stanford Part-Of-Speech Log-Linear tagger

Downloads

13

Readme

pos-tagger.js

Build and test the library

A Part-Of-Speech Tagger (POS Tagger) is a piece of software that reads text in some language and assigns parts of speech to each word (and other token), such as noun, verb, adjective, etc., although generally computational applications use more fine-grained POS tags like 'noun-plural'.

This is a rewrite of the Stanford Part-Of-Speech Log-Linear tagger in Kotlin, it is compiled to JavaScript and made available through npm. No background Java service is needed.

This module includes two models:

  • left3words-wsj-0-18
  • bidirectional-distsim-wsj-0-18

The total package size (including both models) is under 10mb. Basic benchmarks show that the JavaScript library has similar performance to that of the original Java code for the "left3words" model.

License: GPL v2 or above

Usage

Install pos-tagger.js from npm:

npm install pos-tagger.js

Example code:
const Tagger = require("pos-tagger.js");
const tagger = new Tagger(Tagger.readModelSync("left3words-wsj-0-18"));

// alternatively
// const tagger = new Tagger(Tagger.readModelSync("bidirectional-distsim-wsj-0-18"));

const output = tagger.tag("I am a happy part-of-speech tagger. How do you do?");

console.log(output);
console.log("First word is a " + output[0][0].tag);

tag takes a string representing one or more "." terminated sentences. The output is a list with one element per input sentence. Each sentence element is itself a list with an element per input token, each element contains a word key with the original token, and a tag key which contains the Penn Treebank part-of-speech tag.

Example output:
[
  [
    { "word": "I", "tag": "PRP" },
    { "word": "am", "tag": "VBP" },
    { "word": "a", "tag": "DT" },
    { "word": "happy", "tag": "JJ" },
    { "word": "part-of-speech", "tag": "JJ" },
    { "word": "tagger", "tag": "NN" },
    { "word": ".", "tag": "." }
  ],
  [
    { "word": "How", "tag": "WRB" },
    { "word": "do", "tag": "VBP" },
    { "word": "you", "tag": "PRP" },
    { "word": "do", "tag": "VB" },
    { "word": "?", "tag": "."
    }
  ]
]
First word is a PRP