
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
levenshtein-edit-distance
Advanced tools
Levenshtein distance (by Vladimir Levenshtein).
This package exposes a string similarity algorithm. That means it gets two strings (typically words), and turns it into the minimum number of single-character edits (insertions, deletions or substitutions) needed to turn one string into the other.
You’re probably dealing with natural language, and know you need this, if you’re here!
This package is ESM only. In Node.js (version 14.14+, 16.0+), install with npm:
npm install levenshtein-edit-distance
In Deno with esm.sh
:
import {levenshteinEditDistance} from 'https://esm.sh/levenshtein-edit-distance@3'
In browsers with esm.sh
:
<script type="module">
import {levenshteinEditDistance} from 'https://esm.sh/levenshtein-edit-distance@3?bundle'
</script>
import {levenshteinEditDistance} from 'levenshtein-edit-distance'
levenshteinEditDistance('levenshtein', 'levenshtein') // => 0
levenshteinEditDistance('sitting', 'kitten') // => 3
levenshteinEditDistance('gumbo', 'gambol') // => 2
levenshteinEditDistance('saturday', 'sunday') // => 3
// Insensitive to order:
levenshteinEditDistance('aarrgh', 'aargh') === levenshtein('aargh', 'aarrgh') // => true
// Sensitive to ASCII casing by default:
levenshteinEditDistance('DwAyNE', 'DUANE') !== levenshtein('dwayne', 'DuAnE') // => true
// Insensitive:
levenshteinEditDistance('DwAyNE', 'DUANE', true) === levenshtein('dwayne', 'DuAnE', true) // => true
This package exports the identifier levenshteinEditDistance
.
There is no default export.
levenshteinEditDistance(value, other[, insensitive])
Levenshtein edit distance.
value
Primary value (string
, required).
other
Other value (string
, required).
insensitive
Compare insensitive to ASCII casing (boolean
, default: false
).
Distance between value
and other
(number
).
Usage: levenshtein-edit-distance [options] word word
Levenshtein edit distance.
Options:
-h, --help output usage information
-v, --version output version number
-i, --insensitive ignore casing
Usage:
# output distance
$ levenshtein-edit-distance sitting kitten
# 3
# output distance from stdin
$ echo "saturday,sunday" | levenshtein-edit-distance
# 3
This package is fully typed with TypeScript. It exports no additional types.
This package is at least compatible with all maintained versions of Node.js. As of now, that is Node.js 14.14+ and 16.0+. It also works in Deno and modern browsers.
levenshtein.c
— C APIlevenshtein
— C CLIlevenshtein-rs
— Rust APIstemmer
— porter stemming algorithmlancaster-stemmer
— lancaster stemming algorithmdouble-metaphone
— double metaphone algorithmsoundex-code
— soundex algorithmdice-coefficient
— sørensen–dice coefficientsyllable
— syllable count of English wordsYes please! See How to Contribute to Open Source.
This package is safe.
FAQs
Levenshtein edit distance
The npm package levenshtein-edit-distance receives a total of 211,244 weekly downloads. As such, levenshtein-edit-distance popularity was classified as popular.
We found that levenshtein-edit-distance demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.