
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.
@cypress/watch-preprocessor
Advanced tools
A simple Cypress preprocessor for watching files. Will not change the files at all, but watches for a file to be saved and notifies Cypress to re-run.
Note that while this is a "preprocessor," it does not transpile or bundle your files at all. It only watches them. They are served to the browser as-is. The browser must support any JavaScript features you use or your tests will not be able to run. If you wish to use more advanced JavaScript features that need to be transpiled, use the default preprocessor or the webpack preprocessor, which transpile, bundle, and watch your spec files.
Requires Node version 6.5.0 or above.
npm install --save-dev @cypress/watch-preprocessor
In your project's plugins file:
const watch = require('@cypress/watch-preprocessor')
module.exports = (on) => {
on('file:preprocessor', watch())
}
Run all tests once:
npm test
Run tests in watch mode:
npm run test-watch
This project is licensed under the terms of the MIT license.
FAQs
Simple Cypress preprocessor for watching files
The npm package @cypress/watch-preprocessor receives a total of 306 weekly downloads. As such, @cypress/watch-preprocessor popularity was classified as not popular.
We found that @cypress/watch-preprocessor 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.