Compute the Levenshtein distance for string comparison
npm install ld_ld_ is a Node.js package for computing the Levenshtein distance between 2 strings.
Coming soon...
npm install ld
You can run the extremely simple test case by executing node test/test.js STR1 STR2 or use the code below to do the same.
``javascript``
var ld = require('ld');
console.log(ld.computeDistance(process.argv[2], process.argv[3]));