Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
grunt-contrib-watch
Advanced tools
Run predefined tasks whenever watched file patterns are added, changed or deleted.
grunt-contrib-watch is a Grunt plugin that watches files and directories for changes. When changes are detected, it can run predefined tasks, making it useful for automating workflows such as compiling code, running tests, or refreshing a browser.
Watch Files for Changes
This feature allows you to watch JavaScript files for changes and run the 'jshint' task whenever a change is detected. The 'spawn' option is set to false to improve performance.
{
"watch": {
"scripts": {
"files": ["**/*.js"],
"tasks": ["jshint"],
"options": {
"spawn": false
}
}
}
}
Live Reload
This feature enables live reloading of the browser when files change. The 'livereload' option is set to true, which will trigger a browser refresh whenever a watched file changes.
{
"watch": {
"options": {
"livereload": true
},
"scripts": {
"files": ["**/*.js"],
"tasks": ["jshint"]
}
}
}
Custom Event Handling
This feature allows you to specify custom events to watch for, such as 'added' or 'deleted'. In this example, the 'jshint' task will run only when JavaScript files are added or deleted.
{
"watch": {
"scripts": {
"files": ["**/*.js"],
"tasks": ["jshint"],
"options": {
"event": ["added", "deleted"]
}
}
}
}
gulp-watch is a Gulp plugin that provides file watching capabilities similar to grunt-contrib-watch. It allows you to watch files and directories for changes and run Gulp tasks in response. Compared to grunt-contrib-watch, gulp-watch is designed to work within the Gulp ecosystem, which is known for its simplicity and stream-based approach.
chokidar is a highly efficient and flexible file watcher library for Node.js. It provides a rich API for watching files and directories, and it can be used independently or integrated into other build tools. Compared to grunt-contrib-watch, chokidar offers more advanced features and better performance, making it suitable for large projects with complex file-watching needs.
nodemon is a utility that monitors for changes in your source and automatically restarts your Node.js application. While it is primarily used for restarting server applications, it can also be configured to watch for changes in other types of files. Compared to grunt-contrib-watch, nodemon is more focused on server-side development and provides automatic restarts rather than running arbitrary tasks.
Run predefined tasks whenever watched file patterns are added, changed or deleted.
Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-contrib-watch
Then add this line to your project's Gruntfile.js
gruntfile:
grunt.loadNpmTasks('grunt-contrib-watch');
Inside your Gruntfile.js
file, add a section named watch
. This section specifies the files to watch, tasks to run when an event occurs and the options used.
string|array
This defines what file patterns this task will watch. Can be a string or an array of files and/or minimatch patterns.
string|array
This defines which tasks to run when a watched file event occurs.
array
This controls how this task operates and should contain key:value pairs, see options below.
There are a number of options available. Please review the minimatch options here. As well as some additional options as follows:
integer
How long to wait before emitting events in succession for the same filepath and status. For example if your Gruntfile.js
file was changed
, a changed
event will only fire again after the given milliseconds. Default is 500ms.
Example:
watch: {
scripts: {
files: '**/*.js',
tasks: ['jshint'],
options: {
debounceDelay: 250
}
}
}
integer
The interval
is passed to fs.watchFile
. Since interval
is only used by fs.watchFile
and this watcher also uses fs.watch
; it is recommended to ignore this option. Default is 100ms.
// Simple config to run jshint any time a file is added, changed or deleted
grunt.initConfig({
watch: {
files: '**/*',
tasks: ['jshint']
}
});
// Advanced config. Run specific tasks when specific files are added, changed or deleted.
grunt.initConfig({
watch: {
gruntfile: {
files: 'Gruntfile.js',
tasks: ['jshint:gruntfile'],
options: {
nocase: true
}
},
src: {
files: ['lib/*.js', 'css/**/*.scss', '!lib/dontwatch.js'],
tasks: ['default']
},
test: {
files: '<%= jshint.test.src %>',
tasks: ['jshint:test', 'qunit']
}
}
});
FAQs
Run predefined tasks whenever watched file patterns are added, changed or deleted
The npm package grunt-contrib-watch receives a total of 328,864 weekly downloads. As such, grunt-contrib-watch popularity was classified as popular.
We found that grunt-contrib-watch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.