
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
node.js wrapper for the redo build system. For declaring dependencies in JavaScript .do files.
npm install redo
Redo itself is packaged under bin and exported, so
npm install -g redo
makes the redo-* commands available to the system. This is not necessary for the library to work, but it does mean you don't have to type ./node_modules/.bin/redo. Which is nice.
See the redo docs for an overview of the build system itself.
#!/usr/bin/env node
var redo = require('redo');
var fs = require('fs');
redo.ifchange(process.argv[2] + '.lower', function() {
process.stdout.write(
fs.readFileSync(process.argv[2] + '.lower', 'utf8').toUpperCase()
);
});
It's a bit nicer in Livescript:
#!/usr/bin/env lsc
require! [redo, fs, LiveScript]
<- redo.ifchange process.argv.2 + '.ls'
fs.read-file-sync process.argv[2] + '.ls', \utf8
|> LiveScript.compile
|> process.stdout.write
GPL v3. © 2014 Matt Brennan
FAQs
js interface to https://github.com/apenwarr/redo
The npm package redo receives a total of 10 weekly downloads. As such, redo popularity was classified as not popular.
We found that redo 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.