
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.
build-notifier
Advanced tools
Reads your build output from stdin, pipes it straight to stdout and notifies
you if the build passed or failed once an EOF is received.
It notifies you via node-notifier.
npm install --save-dev build-notifier
Use with JSCS:
jscs lib/**.js test/**.js | node_modules/.bin/notify -t JSCS
or with JSHint:
jshint lib/**.js test/**.js | node_modules/.bin/notify -t JSHint
or even better, in the scripts section of your package.json:
{
"scripts" : {
"jscs": "jscs lib/**.js test/**.js | notify -t JSCS",
"prehint": "npm -s run jscs",
"hint": "jshint lib/**.js test/**.js | notify -t JSHint",
"pretest": "npm -s run hint",
"test": "your favorite test tool"
}
}
FAQs
Notifications for your different build steps
The npm package build-notifier receives a total of 18 weekly downloads. As such, build-notifier popularity was classified as not popular.
We found that build-notifier 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.