string-hunt
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

Full Text Search Algorithm


Text search algorithm for searching through a list of JSON objects

$  yarn add string-hunt

Usage

const search  = require('string-hunt')

const data = [
    {
        name : "Cedrick",
        age : 20
    },
    {
        name : "Marrick",
        age :  10
    }
]

(() => {
    const results = search(data.map(datum => JSON.stringify(datum)), 'rick0')
    console.log(results.length)    // 2
})()

Contributing

Contributors are welcomed, you can contribute by opening an issue or making a pull request (which is better 😀).

Maintainers

It is maintained by @pacifiquem and @regisrex

Licence

This project is under MIT Licence

Package Sidebar

Install

npm i string-hunt

Weekly Downloads

1

Version

1.1.0

License

MIT

Unpacked Size

16.8 kB

Total Files

27

Last publish

Collaborators

  • murangwapacifique
  • ndzhwr