
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.
List all files that have changed or that depend on a file that has changed. This is mainly useful to only run tests on code that has been modified.
List all files that have changed or that depend on a file that has changed. This is mainly useful to only run tests on code that has been modified.
npm i --save-dev diffenator
## List all files in ./test that have been modified with respect to master
npx diffenator HEAD -- test
npx diffenator HEAD -- test | xargs mocha
Suppose that the layout of the project is the following
.
├── a.js
├── b.js
└── test
├── aTest.js
└── bTest.js
Where test/aTest.js depends on a.js and test/bTest.js depends on b.js. If we modify b.js then
# Modify b.js
echo "" >> b.js
# List all files in directory that have changed or that depend in a file that has changed
npx diffenator -- test
> test/bTest.js
FAQs
List all files that have changed or that depend on a file that has changed. This is mainly useful to only run tests on code that has been modified.
The npm package diffenator receives a total of 4 weekly downloads. As such, diffenator popularity was classified as not popular.
We found that diffenator 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.