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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@semantictools/mnt-matcher

v0.8.1

Published

MNT-Matcher - NLP matching and searching library for JavaScript/Node.js

Readme

mnt-matcher

Mint Matcher (Murray Near Text) - Node.js library for fuzzy word matching with confidence scores.

Index words, then retrieve partial/inexact matches with probabilities. Useful for NLP, search suggestions, typo correction.

Installation

npm install @semanticlabs/mnt-matcher

Usage

import * as fmIndex from '@semanticlabs/mnt-matcher';

// Configure penalties (optional)
fmIndex.setPenalties({
    lengthDifferenceFactor: 1.0,
    spaceCountFactor: 0.2
});

// Create index
const index = fmIndex.construct(fmIndex.L_DEFAULT);

// Add words to index
const dictionary = ["hello", "world", "help", "held"];
for (const word of dictionary) {
    fmIndex.store(index, word, null);
}

// Search with fuzzy matching
const results = fmIndex.search(index, "hellow");
console.log(JSON.stringify(results));

Demo

Installation Demo files

git clone https://github.com/SemanticTools/mnt-demo.git
npm install

Run the interactive demo:

node demo/demo.mjs

Example session:

PROMPT> node demo/demo.mjs 

MNT-Match Fuzzy Search Demo
==========================

Building index...

Index Statistics:
  Words indexed:    550
  Total keys:       2599
  Total paths:      4308
  Keys per word:    4.73
  MNT-Match level:   10

------------------------------------------
Type a word to search (or 'quit' to exit)
Try misspellings like 'elefant', 'buterfly', 'computr'
------------------------------------------

> hi

Search: "hi"
Time: 0.20ms | Results: 0
  No matches found.

> home

Search: "home"
Time: 0.69ms | Results: 1

Top matches:
  1. come            confidence: 0.457 █████████

> drive

Search: "drive"
Time: 0.12ms | Results: 1

Top matches:
  1. drive           confidence: 1.000 ████████████████████

> cool

Search: "cool"
Time: 0.16ms | Results: 1

Top matches:
  1. cool            confidence: 1.000 ████████████████████

> kool

Search: "kool"
Time: 0.56ms | Results: 1

Top matches:
  1. cool            confidence: 0.880 ██████████████████

License

MIT