
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.
nova-watcher
Advanced tools
As many of you may be aware, each custom nova component has it's own node environment.
This can be lovely if you're producing components to share and never touch again.
However it can be a massive pain if you're actively developing a application and reguarlly changing components to fulfil your requirements.
This package simply adds a function to your webpack.mix.js and autoloads in your components so you can use live building etc from a single root watch process.
To install simply npm i nova-watcher to your root package.json
Then import the library, and attach it to your mix instance e.g
const mix = require('mix');
const novaWatcher = require('nova-watcher');
/*
* All your mix stuff here.
*/
new novaWatcher(mix); // Create a new instance of nova-watcher and bind your mix instance.
The webpack mix config it uses is the vanilla laravel-nova config as below
.mix
.js('/js/field.js', 'dist/js')
.sass('/sass/field.scss', 'dist/css')
.webpackConfig({
resolve: {
symlinks: false
}
});
If you need more advance ones, feel free to modify the code as much as you want.
FAQs
A basic watcher for Laravel Nova components
The npm package nova-watcher receives a total of 5 weekly downloads. As such, nova-watcher popularity was classified as not popular.
We found that nova-watcher 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.