KingPixil / wade
- пятница, 21 июля 2017 г. в 03:13:24
🌊 Blazing fast, 1kb search for Javascript
Blazing fast, 1kb search
NPM
npm install wade
CDN
<script src="https://unpkg.com/wade"></script>
Initialize with strings in the form of an array
const search = Wade(["Apple", "Orange", "Lemon", "Tomato"]);
Now you can search for a substring within the array, and Wade will return the index of it.
search("App");
/*
[{
index: 0,
score: 1
}]
*/
Combined with libraries like Moon, you can create a simple real-time search.
To save data as an object, use Wade.save
on your search function, and then use these later when initializing Wade.
For example:
// Create the initial search function
const search = Wade(["Apple", "Orange", "Lemon", "Tomato"]);
const instance = Wade.save(search);
// Save `instance` somewhere...
Later, you can get the same search function without having Wade recreate an index every time by doing:
// Retrieve `instance`, then
const search = Wade(instance);
Wade uses a pipeline to preprocess data and search queries. By default, this pipeline will:
A pipeline consists of different functions that process a string and modify it in some way, and return the string.
You can easily modify the pipeline as it is available in Wade.pipeline
, for example:
// Don't preprocess at all
Wade.pipeline = [];
// Add custom processor to remove periods
Wade.pipeline.push(function(str) {
return str.replace(/\./g, "");
});
All functions will be executed in the order of the pipeline (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:
Wade.config.stopWords = [/* array of stop words */];
The punctuation regular expression used to remove punctuation can be configured with:
Wade.config.punctuationRE = /[.!]/g; // should contain punctuation to remove
The algorithm behind the search is fairly simple. First, a trie data structure is generated off of the data. When performing a search, the following happens:
Licensed under the MIT License by Kabir Shah