each-file
v1.1.0
Published
Loop over file buffers or streams
Downloads
12
Readme
each-file
Loop over file buffers or streams.
Example
var eachFile = require("each-file");
eachFile('*.js', function withFile(file, cb) {
file.path // The file path
file.base // Base path based on glob
file.relative // Relative file path from base
file.contents // The file contents
cb(null);
}, function onDone() {
// completed iterating
});
Installation
npm install each-file
Tests
npm test
NPM scripts
npm run cover
This runs the tests with code coveragenpm run lint
This will run the linter on your codenpm test
This will run the tests.npm run trace
This will run your tests in tracing mode.npm run travis
This is run by travis.CI to run your testsnpm run view-cover
This will show code coverage in a browser
Contributors
- Matt Morgan