Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.
Note that this plugin has not yet been released, and only works with the latest bleeding-edge, in-development version of grunt. See the When will I be able to use in-development feature 'X'? FAQ entry for more information.
grunt-contrib-watch@0.1.x
is compatible with grunt >= 0.3.x
grunt-contrib-watch@0.2.x
will be compatible with grunt >= 0.4.x
If you haven't used grunt before, be sure to check out the Getting Started guide.
From the same directory as your project's Gruntfile and package.json, install this plugin with the following command:
npm install grunt-contrib-watch --save-dev
Once that's done, add this line to your project's Gruntfile:
grunt.loadNpmTasks('grunt-contrib-watch');
If the plugin has been installed correctly, running grunt --help
at the command line should list the newly-installed plugin's task or tasks. In addition, the plugin should be listed in package.json as a devDependency
, which ensures that it will be installed whenever the npm install
command is run.
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.
There are a number of options available. Please review the minimatch options here. As well as some additional options as follows:
Type: String|Array
This defines what file patterns this task will watch. Can be a string or an array of files and/or minimatch patterns.
Type: String|Array
This defines which tasks to run when a watched file event occurs.
Type: boolean
Default: false
As files are modified this watch task will spawn tasks in child processes. The default behavior will only spawn a new child process per target when the previous process has finished. Set the interrupt
option to true to terminate the previous process and spawn a new one upon later changes.
Example:
watch: {
scripts: {
files: '**/*.js',
tasks: ['jshint'],
options: {
interrupt: true
}
}
}
Type: Integer
Default: 500
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.
Example:
watch: {
scripts: {
files: '**/*.js',
tasks: ['jshint'],
options: {
debounceDelay: 250
}
}
}
Type: Integer
Default: 100
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.
Type: false|'new'|'old'
Default: false
Node.js has two file watching methods: 'old' (fs.watchFile
) which uses stat polling and 'new' (fs.watch
) which attempts to use the system's built-in watch mechanism. By default, this watch task uses both methods and which ever method responds first will be used for subsequent events.
There may be some setups where you would need to force a specific watch method, such as on networked file system. Set options.forceWatchMethod: 'old'
to specifically use the old watch method, fs.watchFile
.
// 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']
}
}
});
-- Task submitted by Kyle Robinson Young.
Generated on Mon Nov 19 2012 12:58:44.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.