0.0.1 • Published 7 months ago

fast-string-similarity v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Fast String Similarity

3x faster that JS implementation.

Building

To compile the extension for the first time, run

$ npm i
$ npm run configure
$ npm run build

All subsequent builds only need npm run build

You can confirm everything built correctly by running the test suite.

Working With the Extension Locally

After building:

$ node
> var fsc = require('fast-string-similarity')
undefined
> fsc.computeStringSimilarity("the quick brown fox", "the quick not brown fox")
0.8484848484848485

To run tests:

$ npm test
0.0.1

7 months ago