Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
transform-runner
Advanced tools
Accepts a set of files, applies transformations to them and returns JSON output which can be converted into a package.
Accepts a set of files, applies transformations to them and returns JSON output which can be converted into a package.
var runner = require('transform-runner');
var runner = runTasks({
// new API
tasks: function(filename, done) {
return false; // return true if you queue'd tasks
},
log: Minilog('runner'),
include: [ '/home/foo/index.js' ],
exclude: [
// /^.+(?!\.js).{3}$/i,
'/home/foo/node_modules',
],
jobs: require('os').cpus().length * 2,
log: {
info: function() {},
log: console.log.bind(console),
error: console.error.bind(console)
}
}, function(err, files) {
if (onDone) {
onDone(err, files, runner);
}
});
runner.on('parse-error', function(err) {
console.log('error', err);
});
runner.on('file', function(filename) {
console.log('file', filename);
});
runner.on('hit', function(filename) {
console.log('hit', filename);
});
runner.on('miss', function(filename) {
console.log('miss', filename);
});
runner.on('file-done', function(filename, item) {
console.log('file-done', filename, item);
});
opts
:
exclude
: a function which takes a single parameter (the full file path) and returns true if the file should be excludedignore
: a function which takes a single parameter (the full file path) and returns true if the file should be ignoredtasks(file, done)
: a function; the done function should be called with err
and the full path to the result of the task execution when donecache
: an object with the following methods:
get(file)
: takes a single parameter (the full file path) and returns either an object containing the cached metadata, or false if there is no cached valueset(file, key, value)
log
: an object that looks like the console
API, with the following methods:
.info()
: log a debug message (works both in the browser and in Node, unlike .debug).log()
: log a informational message.error()
: log a error messageUnlike most build systems, transform-runner
does not use node-glob
because it is slow on moderately-sized trees.
All path specifications are resolved as follows:
.
or /
are resolved against the file system. Relative paths are resolved based on the base path.--include-regexp
, --exclude-regexp
and --ignore-regexp
values are parsed as regular expressions using new RegExp
. They should be quoted if passed in through the command line to avoid the shell from expanding special characters.FAQs
Accepts a set of files, applies transformations to them and returns JSON output which can be converted into a package.
We found that transform-runner 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.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.