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 🙏

© 2024 – Pkg Stats / Ryan Hefner

term-tracker

v2.0.1

Published

A persistent record of terms used in documents that can be used for TF-IDF analysis or other purposes. The backing store is just a JSON file, which is loaded entirely in memory. It's nice and simple and will work for, say, personal blogs, but it's not for

Downloads

18

Readme

term-tracker

A persistent record of terms used in documents that can be used for TF-IDF analysis or other purposes. The backing store is just a JSON file, which is loaded entirely in memory. It's nice and simple and will work for, say, personal blogs, but it's not a corpus that does not fit in memory.

Installation

npm install term-tracker

Usage

var Tracker = require('term-tracker');

var tracker = Tracker({ storeFile: __dirname + '/data/terms.json', textProp: 'body' });

tracker.track({
  id: 'a',
  caption: `Hey, I liked Dead Cells. I'm a limited-video-game-time dad. It is indeed a Metroidvania, a format that I love, but the procedurally generation freed me from thinking I had to inspect every last corner. Plus, I really enjoyed finding healing meats again.
  I think I liked Kero Blaster even more, though. I had tried it on iOS before, but it's just too actiony for touch controls. On Switch, it feels great, and all the fine details are delightful. The little guy blinking when you hit the button to start the level, monsters faces when their hit. The music is really cheerful in that effective SMB2 way, though at first you don't know it's going to be cheerful, if you know what I mean.`
});

tracker.track({
  id: 'b',
  text: `Kero Blaster is just such a good-feeling game. It's mostly no-shading pixel art. No implying 3D, even at the level NES games did. All flat, almost like Atari, but the iconography is just so delightful. And the second state of those two-state sprites hits the spot. The shocked look of guys when they've been hit is adorbs. The look on the main guy's face when he gets an item: also delightful! And the music is so calmly happy.
  Anyway, worth playing to feel good!`
});

console.log(tracker.getTerm({ term: 'good' }));
console.log(tracker.getTerm({ term: 'button' }));
console.log(tracker.getDocMeta({ id: 'a' }));
console.log(tracker.getTermsSortedByCount({ limit: 10 }));
tracker.save(reportError);

function reportError(error) {
  console.log('Error saving term tracker:', error);
}

If you've already parsed the words, you can pass an object with an array of words (looks for words property by default, but you can change this by specifying wordsProp in the Tracker constructor). If it finds a words property, it favors that over parsing the text itself.

Output:

{ term: 'good', count: 2, countsInRefs: { b: 2 }, refs: ['b'] }

{ term: 'button', count: 1, countsInRefs: { a: 1 }, refs: ['a'] }

{
  id: 'a',
  termCount: 71,
  countsPerTerm: {
    hey: 1,
    liked: 2,
    dead: 1,
    cells: 1,
    limited: 1,
    video: 1,
    game: 1,
    time: 1,
    dad: 1,
    it: 1,
    indeed: 1,
    metroidvania: 1,
    format: 1,
    love: 1,
    procedurally: 1,
    generation: 1,
    freed: 1,
    thinking: 1,
    inspect: 1,
    every: 1,
    last: 1,
    corner: 1,
    plus: 1,
    really: 2,
    enjoyed: 1,
    finding: 1,
    healing: 1,
    meats: 1,
    think: 1,
    kero: 1,
    blaster: 1,
    even: 1,
    though: 2,
    tried: 1,
    ios: 1,
    actiony: 1,
    touch: 1,
    controls: 1,
    on: 1,
    switch: 1,
    feels: 1,
    great: 1,
    fine: 1,
    details: 1,
    delightful: 1,
    the: 2,
    little: 1,
    guy: 1,
    blinking: 1,
    hit: 2,
    button: 1,
    start: 1,
    level: 1,
    monsters: 1,
    faces: 1,
    music: 1,
    cheerful: 2,
    effective: 1,
    smb2: 1,
    way: 1,
    first: 1,
    know: 2,
    going: 1,
    mean: 1
  }
}

[
  { term: 'the', count: 4, countsInRefs: { a: 2, b: 2 }, refs: ['a', 'b'] },
  {
    term: 'delightful',
    count: 3,
    countsInRefs: { a: 1, b: 2 },
    refs: ['a', 'b']
  },
  { term: 'hit', count: 3, countsInRefs: { a: 2, b: 1 }, refs: ['a', 'b'] },
  {
    term: 'blaster',
    count: 2,
    countsInRefs: { a: 1, b: 1 },
    refs: ['a', 'b']
  },
  { term: 'it', count: 2, countsInRefs: { a: 1, b: 1 }, refs: ['a', 'b'] },
  {
    term: 'like',
    count: 2,
    countsInRefs: { b: 1, c: 1 },
    refs: ['b', 'c']
  },
  { term: 'good', count: 2, countsInRefs: { b: 2 }, refs: ['b'] },
  { term: 'really', count: 2, countsInRefs: { a: 2 }, refs: ['a'] },
  { term: 'state', count: 2, countsInRefs: { b: 2 }, refs: ['b'] },
  { term: 'know', count: 2, countsInRefs: { a: 2 }, refs: ['a'] }
]

The next time you instantiate Tracker, the documents 'a' and 'b' will already be accounted for; you do not need to add them again.

Tests

Run tests with make test.

License

The MIT License (MIT)

Copyright (c) 2018 Jim Kang

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.