node/deps/npm/node_modules/fstream-npm
Forrest L Norvell e79ccee168 npm: upgrade to v2.1.18
PR-URL: https://github.com/iojs/io.js/pull/266
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-01-08 23:49:03 +01:00
..
example npm: upgrade to 1.1.41 2012-07-13 12:08:17 -07:00
node_modules/fstream-ignore npm: upgrade to v2.1.18 2015-01-08 23:49:03 +01:00
.npmignore Upgrade npm to 1.1.14 2012-03-28 19:36:44 -07:00
LICENSE npm: Update to v1.4.23 2014-08-19 11:17:36 -04:00
README.md Upgrade npm to 1.1.14 2012-03-28 19:36:44 -07:00
fstream-npm.js npm: Upgrade to v2.1.6 2014-11-05 10:35:43 -08:00
package.json npm: upgrade to v2.1.18 2015-01-08 23:49:03 +01: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))
  })