
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Fuzzr is an incredibly fast fuzzy searcher compiled for browser use. This library is written in rust and utilizes the popular skim algorithm used in the skim command line search. The algorithm is provided by the fuzzy-matcher crate by lotabout. I merely provided the wasm bindings.
const Fuzzr = (await import('fuzzr')).Fuzzr
const collection = [
{ name: 'Apple' },
{ name: 'Orange' },
{ name: 'Pineapple' },
{ name: 'Pear' }
]
const fuzzr = new Fuzzr(collection, {
surroundMatchesWith: ['<strong>', '</strong>'],
// only necessary when not passing a collection of Strings:
toString: ({ name }) => name,
})
fuzzr.search('Ale')
/*
[
{
item: { name: 'Apple' },
score: 42,
formatted: '<strong>A</strong>pp<strong>le</strong>'
},
{
item: { name: 'Pineapple' },
score: 42,
formatted: 'Pine<strong>a</strong>pp<strong>le</strong>'
}
]
*/
Results are ordered in descending order by score. If the score is equal, the order of the elements in the collection is preserved.
FAQs
An incredibly fast fuzzy search utilizing rust compiled to wasm
We found that fuzzr demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.