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.
npm-watch is a utility that allows you to run scripts in response to file changes. It is particularly useful for automating tasks such as building, testing, or linting your code whenever you make changes.
Watch and Run Scripts
This feature allows you to watch specific files or directories and run a script when changes are detected. In this example, the 'build' script will run whenever a JavaScript file in the 'src' directory changes.
{
"scripts": {
"build": "webpack",
"watch": "npm-watch"
},
"watch": {
"build": {
"patterns": ["src/**/*.js"],
"extensions": "js"
}
}
}
Custom Watch Patterns
You can specify custom patterns to watch multiple directories or file types. In this example, the 'test' script will run whenever a JavaScript file in either the 'test' or 'src' directories changes.
{
"scripts": {
"test": "mocha",
"watch": "npm-watch"
},
"watch": {
"test": {
"patterns": ["test/**/*.js", "src/**/*.js"],
"extensions": "js"
}
}
}
Run Multiple Scripts
You can configure npm-watch to run multiple scripts based on different file changes. In this example, both 'lint' and 'build' scripts are set to run when JavaScript files in the 'src' directory change.
{
"scripts": {
"lint": "eslint .",
"build": "webpack",
"watch": "npm-watch"
},
"watch": {
"lint": {
"patterns": ["src/**/*.js"],
"extensions": "js"
},
"build": {
"patterns": ["src/**/*.js"],
"extensions": "js"
}
}
}
Nodemon is a utility that monitors for any changes in your source and automatically restarts your server. It is more focused on server-side applications and is widely used for Node.js development. Unlike npm-watch, which can run any npm script, nodemon is primarily used for restarting Node.js applications.
Chokidar is a highly efficient file watcher that can be used to watch file changes and trigger custom actions. It provides a more low-level API compared to npm-watch, allowing for more granular control over file watching and event handling.
The 'watch' package is a simple utility for watching changes in files or directories and executing commands. It is similar to npm-watch but offers fewer configuration options and is more lightweight.
Run scripts from package.json when files change.
Install it:
npm install npm-watch
Add a top-level "watch"
config to your package.json
and a "watch" script to
your "scripts"
:
{
"watch": {
"test": "{src,test}/*.js"
},
"scripts": {
"test": "tape test/*.js",
"watch": "npm-watch"
}
}
The keys of the "watch"
config should match the names of your "scripts"
, and
the values should be a glob pattern or array of glob patterns to watch.
If you need to watch files with extensions other than those that nodemon
watches by default (.js
, .coffee
, .litcoffee
), you can set the value to an object with patterns
and extensions
keys. You can also add an ignore
key (a list or a string) to ignore specific files. Finally, you can add a quiet
flag to hide the script name in any output on stdout or stderr, or you can use the inherit
flag to preserve the original's process stdout or stderr.
The
quiet
flag was changed from astring
to aboolean
in0.1.5
. Backwards compatability will be kept for two patch versions.
{
"watch": {
"test": {
"patterns": ["src", "test"],
"extensions": "js,jsx",
"ignore": "src/vendor/external.min.js",
"quiet": true
}
},
"scripts": {
"test": "tape test/*.js"
}
}
Start the watcher with npm run watch
in a terminal, then edit some files:
mkdir src test
npm run watch &
cat <<EOF > test/test-sum.js
var test = require('tape')
test('sum module', function (t) {
var sum = require('../src/sum.js')
t.ok(sum(1, 2), 3, "Sums appear correct")
t.end()
})
EOF
(Feel free to use the editor of your choice, cat
just makes for easy demos)
You should see that your tests ran automatically, and failed because src/sum.js
is missing. Let's fix that:
cat <<EOF > src/sum.js
module.exports = function (a, b) {
return 1
}
EOF
Our tests will run again, and this time they almost work. Let's fix sum.js
:
cat <<EOF > src/sum.js
module.exports = function (a, b) {
return a + b
}
EOF
Tests run perfectly, ship it to the enterprise!
This module does very little but run nodemon
for you, all
credit for the reliable file watching and process restarting should go to there.
MIT
FAQs
run scripts from package.json when files change
The npm package npm-watch receives a total of 198,767 weekly downloads. As such, npm-watch popularity was classified as popular.
We found that npm-watch demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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.