Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
A cross-platform CLI for outputting text to the command line. Supports escape sequences
A cross-platform CLI for outputting text to the command line (with escape sequences)
Why? Because Windows’ CMD doesn’t support escape sequences, and even a new line is printed differently from Bash. This makes outputting something from npm scripts much more challenging.
To use in your package:
npm install --save-dev echo-cli
To use from the command line:
npm install --global echo-cli
echo-cli
supports all JavaScript escape sequences described on the according MDN page. Feel free to open an issue if you need the Bash escape sequences too.
When passing an escape sequence, wrap the passed text into quotes to prevent Bash from interpreting the sequence on its own.
// In package.json
{
"scripts": {
"build": "echo-cli Building the project... && babel src -d dist",
"test": "echo-cli 'Running the tests...\\nThis usually takes a couple of minutes.' && ava",
}
}
// Or in Webpack config
{
plugins: [
new WebpackShellPlugin({
onBuildEnd: ['copyfiles dist ../archive/dist && echo-cli "\\nCopied the build results"']
})
]
}
# Or in a shell
$ echo-cli "Hello,\nworld!"
Hello,
world
MIT © Ivan Akulov
FAQs
A cross-platform CLI for outputting text to the command line. Supports escape sequences
We found that echo-cli 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.