Skip to content

puls/fuzzy_file_finder.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

fuzzy_file_finder.js

fuzzy_file_finder.js is an almost direct JavaScript port of Jamis Buck's Ruby FuzzyFileFinder.

FEATURES:

  • Quickly search directory trees for files
  • Simple highlighting of matches to discover how a pattern matched

SYNOPSIS:

In a nutshell:

var finder = require('fuzzy_file_finder');
finder(".", "app/blogcon", function (match) {
  console.log(Math.floor(match.score * 10000) + ' ' + match.path);
});

See FuzzyFileFinder for more documentation, and links to further information.

INSTALL:

  • npm install fuzzy_file_finder

About

A JavaScript/node.js implementation of Jamis Buck's fuzzy_file_finder

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published