JavaScript Wildcard

Open-source JavaScript projects categorized as Wildcard

Top 5 JavaScript Wildcard Projects

  1. micromatch

    Highly optimized wildcard and glob matching library. Faster, drop-in replacement to minimatch and multimatch. Used by square, webpack, babel core, yarn, jest, ract-native, taro, bulma, browser-sync, stylelint, nyc, ava, and many others! Follow micromatch's author: https://github.com/jonschlinkert

    Project mention: Problem with CVEs on OSS Projects | news.ycombinator.com | 2024-08-23

    Probably best to link to specific comment: https://github.com/micromatch/micromatch/issues/264#issuecom...

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. fast-glob

    :rocket: It's a very fast and efficient glob library for Node.js

  4. wild-wild-path

    🤠 Object property paths with wildcards and regexps 🌵

  5. fuzzball.js

    Easy to use and powerful fuzzy string matching, port of fuzzywuzzy.

    Project mention: Unlocking Advanced RAG: Citations and Attributions | dev.to | 2024-01-29

    import { ratio, } from 'fuzzball'; import { SequenceMatcher } from 'difflib'; // modified from: https://github.com/nol13/fuzzball.js/blob/773b82991f2bcacc950b413615802aa953193423/fuzzball.js#L942 function partial_ratio(str1: string, str2: string) { if (str1.length <= str2.length) { var shorter = str1 var longer = str2 } else { var shorter = str2 var longer = str1 } var m = new SequenceMatcher(null, shorter, longer); var blocks = m.getMatchingBlocks(); let bestScore: number = 0; let bestMatch: string | null = null let bestStartIdx: number = -1 for (var b = 0; b < blocks.length; b++) { var long_start = (blocks[b][1] - blocks[b][0]) > 0 ? (blocks[b][1] - blocks[b][0]) : 0; var long_end = long_start + shorter.length; var long_substr = longer.substring(long_start,long_end); var r = ratio(shorter,long_substr); if (r > bestScore) { bestScore = r; bestMatch = long_substr; bestStartIdx = long_start; } if (r > 99.5) { break; } } return { bestMatch, bestScore, bestStartIdx, } }

  6. wild-wild-utils

    🤠 Functional utilities using object property paths with wildcards and regexps 🌵

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

JavaScript Wildcard discussion

Log in or Post with

Index

What are some of the best open-source Wildcard projects in JavaScript? This list will help you:

# Project Stars
1 micromatch 2,832
2 fast-glob 2,594
3 wild-wild-path 723
4 fuzzball.js 521
5 wild-wild-utils 37

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com