Giter Site home page Giter Site logo

trie's Introduction

Trie

Blazing fast <1kb search

Build Status

Installation

NPM

npm install @metacorp/trie

CDN

<script src="https://unpkg.com/@metacorp/trie"></script>

Usage

Initialize Trie with an array of data.

const trie = new Trie(['Apple', 'Lemon', 'Orange', 'Tomato'])

Now you can search for a query within the data, and Trie will return results.

trie.search('App')
/*
['Apple']
*/

Or add word to the data.

trie.addWord('Kiwi')

About

This repo is heavily inspired from Wade. It's a simpler version of it without the ability to score the results, but is therefore significantly faster, and allow to add word after initialisation.

Trie comes in two implementations of prefix tree.

Version 1:

  • bundle size: 1.55kb(min) - 757b(gzip)
  • init speed: 12.24 Ops/sec
  • search speed: 79,000 Ops/sec

Version 2:

  • bundle size: 1.94kb(min) - 831b(gzip)
  • init speed: 3.07 Ops/sec
  • search speed: 94,000 Ops/sec

Check jsperf here:

And bundle size: here

Processors

Trie uses a set of processors to preprocess data and search queries. By default, these will:

  • Make everything lowercase
  • Remove punctuation
  • Remove stop words

A process consists of different functions that process a string and modify it in some way, and return the transformed string.

You can easily modify the processors as they are available in Trie.config.processors, for example:

// Don't preprocess at all
Trie.config.processors = []

// Add custom processor to remove periods
Trie.config.processors.push(function(str) {
  return str.replace(/\./g, '')
})

All functions will be executed in the order of the array (0-n) and they will be used on each document in the data.

The stop words can be configured to include any words you like, and you can access the array of stop words by using:

Trie.config.stopWords = [/* array of stop words */]

The punctuation regular expression used to remove punctuation can be configured with:

Trie.config.punctuationRE = /[.!]/g // should contain punctuation to remove

License

Licensed under the MIT License

Copyright (c) Meta [email protected]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.