You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
isaacs 54a4c639e9 npm: Upgrade to 1.1.61 12 years ago
..
example npm: upgrade to 1.1.41 12 years ago
node_modules/fstream-ignore npm: upgrade to 1.1.41 12 years ago
.npmignore Upgrade npm to 1.1.14 13 years ago
LICENCE Do not gitignore npm's node_modules 13 years ago
README.md Upgrade npm to 1.1.14 13 years ago
fstream-npm.js npm: Upgrade to 1.1.61 12 years ago
package.json npm: Upgrade to 1.1.61 12 years ago

README.md

fstream-npm

This is an fstream DirReader class that will read a directory and filter things according to the semantics of what goes in an npm package.

For example:

// This will print out all the files that would be included
// by 'npm publish' or 'npm install' of this directory.

var FN = require("fstream-npm")
FN({ path: "./" })
  .on("child", function (e) {
    console.error(e.path.substr(e.root.path.length + 1))
  })