sign up no thanks node package manager npm private modules npm Enterprise documentation blog npm weekly jobs support sign up or log in glob a little globber If you are a robot, enter text here Glob Match files using the patterns the shell uses, like stars and stuff. This is a glob implementation in JavaScript. It uses the minimatch library to do its matching. Usage var glob = require ( " glob " ) // options is optional glob ( " **/*.js " , options , function ( er , files ) { // files is an array of filenames. // If the `nonull` option is set, and nothing // was found, then files is ["**/*.js"] // er is an error object or null. } ) Glob Primer "Globs" are the patterns you type when you do stuff like ls *.js on the command line, or put build/* in a .gitignore file. Before parsing the path part patterns, braced s...