node/deps/npm/node_modules/fstream-npm
isaacs c8bbd13ea8 Upgrade npm to 1.1.17 2012-04-18 09:36:40 -07:00
..
node_modules/fstream-ignore Upgrade npm to 1.1.17 2012-04-18 09:36:40 -07:00
.npmignore Upgrade npm to 1.1.14 2012-03-28 19:36:44 -07:00
README.md Upgrade npm to 1.1.14 2012-03-28 19:36:44 -07:00
fstream-npm.js Upgrade npm to 1.1.17 2012-04-18 09:36:40 -07:00
package.json Upgrade npm to 1.1.17 2012-04-18 09:36:40 -07:00

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))
  })