New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

term-tracker

Package Overview
Dependencies
Maintainers
0
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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 for

latest
Source
npmnpm
Version
2.1.0
Version published
Maintainers
0
Created
Source

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.

You can also just run it in memory without a file by omitting the storeFile option.

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.

Keywords

request

FAQs

Package last updated on 23 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts