
Product
Introducing Supply Chain Attack Campaigns Tracking in the Socket Dashboard
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.
base-files-process
Advanced tools
Plugin for processing files from a declarative configuration.
Install with npm:
$ npm install base-files-process --save
var files = require('base-files-process');
var expand = require('expand-files');
var Base = require('base');
var pipeline = require('base-pipeline');
var files = require('base-files-process');
var vfs = require('base-fs');
var app = new Base();
app.use(pipeline());
app.use(files());
app.use(vfs());
// register pipeline plugins using the `.plugin` method
app.plugin('foo', function(options) {
return through.obj(function(file, enc, next) {
// do plugin stuff
next(null, file);
});
});
// use `expand-files` to expand a declarative configuration object
config = expand({
cwd: fixtures,
src: '*.txt',
dest: actual
});
// pass the config object to `.process()`
app.process(config)
.on('end', function() {
console.log('done!');
});
You might also be interested in these projects:
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Generate readme and API documentation with verb:
$ npm install verb && npm run docs
Or, if verb is installed globally:
$ verb
Install dev dependencies:
$ npm install -d && npm test
Jon Schlinkert
Copyright © 2016, Jon Schlinkert. Released under the MIT license.
This file was generated by verb, v0.9.0, on May 24, 2016.
FAQs
Plugin for processing files from a declarative configuration.
The npm package base-files-process receives a total of 3 weekly downloads. As such, base-files-process popularity was classified as not popular.
We found that base-files-process demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.

Research
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.

Security News
Node.js 25.4.0 makes require(esm) stable, formalizing CommonJS and ESM compatibility across supported Node versions.