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

levenshtein-lte1

v1.0.1

Published

A very fast JavaScript implementation of Levenshtein distance for the k <= 1 case.

Downloads

32

Readme

Build Status

levenshtein-lte1

The Levenshtein distance is infamoulsy known to run in O(n * m) time, n & m being the respective lengths of the considered strings.

But, most of the time, people just want to know whether the Levenshtein distance between two strings is below a given threshold. What's more, especially when targeting the English language, this threshold is often 1 or 2 (1 usually for the very similar Damerau-Levenshtein distance, for the reason explained in this seminal paper).

But people often miss that you can develop a custom implementation of the Levenshtein & Damerau-Levenshtein distance limited to 1 that can be way more performant.

This library exposes such an implementation for the JavaScript language. It runs in O(m) time, m being the length of the shortest string. It also does not need to rely on auxiliary memory.

Installation

The library comes along with its own TypeScript definition files.

npm install levenshtein-lte1

Usage

Note that if the distance between strings exceeds 1, the functions will return Infinity (typical implementation rather return -1 but Infinity is kinda useful with threshold conditions).

Levenshtein distance

var levenshteinLte1 = require('levenshtein-lte1');

levenshteinLte1('book', 'book');
>>> 0

levenshteinLte1('book', 'booc');
>>> 1

levenshteinLte1('abc', 'def');
>>> Infinity

Damerau-Levenshtein

var damerauLevenshteinLte1 = require('levenshtein-lte1/damerau');

damerauLevenshteinLte1('book', 'book');
>>> 0

damerauLevenshteinLte1('book', 'booc');
>>> 1

damerauLevenshteinLte1('abc', 'def');
>>> Infinity

damerauLevenshteinLte1('BONJOUR', 'BNOJOUR');
>>> 1

Both functions also accepts arrays instead of strings if you need to apply them to arbitrary sequences.

levenshteinLte1(
  ['the', 'mouse', 'eats'],
  ['a', 'mouse', 'eats']
);
>>> 1

Benchmark

Benchmark methodology adapted from js-levenshtein by gustf.

I only benchmarked words because it usually does not make sense to test large strings with a threshold of 1.

Disclaimer: this benchmark is deliberately unfair. It only means to demonstrate that this lib is a valid choice ONLY if your use case is to test whether strings have a Levenshtein distance less than or equal to 1.

2000 words, length max=20 min=3 avr=9.5

  145,110 op/s » levenshtein-lte1
   19,183 op/s » talisman-limited
    3,126 op/s » node-levenshtein
    2,557 op/s » js-levenshtein
    2,115 op/s » talisman
    1,801 op/s » levenshtein-edit-distance
    1,840 op/s » leven
    1,619 op/s » fast-levenshtein