Skip to content

Commit 69c22f0

Browse files
janiceilenephated
authored andcommitted
Docs: Update watch() documentation
1 parent ebb9818 commit 69c22f0

File tree

1 file changed

+92
-64
lines changed

1 file changed

+92
-64
lines changed

docs/api/watch.md

+92-64
Original file line numberDiff line numberDiff line change
@@ -5,105 +5,133 @@ hide_title: true
55
sidebar_label: watch()
66
-->
77

8-
# `gulp.watch(globs[, opts][, fn])`
8+
# watch()
99

10-
Takes a path string, an array of path strings, a [glob][node-glob] string or an array of [glob][node-glob] strings as `globs` to watch on the filesystem. Also optionally takes `options` to configure the watcher and a `fn` to execute when a file changes.
10+
Allows watching globs and running a task when a change occurs. Tasks are handled uniformly with the rest of the task system.
1111

12-
Returns an instance of [`chokidar`][chokidar].
12+
## Usage
1313

1414
```js
15-
gulp.watch('js/**/*.js', gulp.parallel('concat', 'uglify'));
15+
const { watch } = require('gulp');
16+
17+
watch(['input/*.js', '!input/something.js'], function(cb) {
18+
// body omitted
19+
cb();
20+
});
1621
```
1722

18-
In the example, `gulp.watch` runs the function returned by `gulp.parallel` each
19-
time a file with the `js` extension in `js/` is updated.
23+
## Signature
24+
25+
```js
26+
watch(globs, [options], [task])
27+
```
2028

21-
## globs
22-
Type: `String` or `Array`
29+
### Parameters
2330

24-
A path string, an array of path strings, a [glob][node-glob] string or an array of [glob][node-glob] strings that indicate which files to watch for changes.
31+
| parameter | type | note |
32+
|:--------------:|:-----:|--------|
33+
| globs <br> **(required)** | string <br> array | [Globs][globs-concepts] to watch on the file system. |
34+
| options | object | Detailed in [Options][options-section] below. |
35+
| task | function <br> string | A [task function][tasks-concepts] or composed task - generated by `series()` and `parallel()`. |
2536

26-
## opts
27-
Type: `Object`
37+
### Returns
2838

29-
* `delay` (milliseconds, default: `200`). The delay to wait before triggering the fn. Useful for waiting on many changes before doing the work on changed files, e.g. find-and-replace on many files.
30-
* `queue` (boolean, default: `true`). Whether or not a file change should queue the fn execution if the fn is already running. Useful for a long running fn.
31-
* `ignoreInitial` (boolean, default: `true`). If set to `false` the `fn` is called during [chokidar][chokidar] instantiation as it discovers the file paths. Useful if it is desirable to trigger the `fn` during startup. __Passed through to [chokidar][chokidar], but defaulted to `true` instead of `false`.__
39+
An instance of [chokidar][chokidar-instance-section] for fine-grained control over your watch setup.
3240

33-
Options that are passed to [`chokidar`][chokidar].
41+
### Errors
3442

35-
Commonly used options:
43+
When a non-string or array with any non-strings is passed as `globs`, throws an error with the message, "Non-string provided as watch path".
3644

37-
* `ignored` ([anymatch](https://github.com/es128/anymatch)-compatible definition).
38-
Defines files/paths to be excluded from being watched.
39-
* `usePolling` (boolean, default: `false`). When `true` uses a watch method backed
40-
by stat polling. Usually necessary when watching files on a network mount or on a
41-
VMs file system.
42-
* `cwd` (path string). The base directory from which watch paths are to be
43-
derived. Paths emitted with events will be relative to this.
44-
* `alwaysStat` (boolean, default: `false`). If relying upon the
45-
[`fs.Stats`][fs stats] object
46-
that may get passed as a second argument with `add`, `addDir`, and `change` events
47-
when available, set this to `true` to ensure it is provided with every event. May
48-
have a slight performance penalty.
45+
When a string or array is passed as `task`, throws an error with the message, "watch task has to be a function (optionally generated by using gulp.parallel or gulp.series)".
4946

50-
Read about the full set of options in [`chokidar`'s README][chokidar].
47+
### Options
5148

52-
## fn
53-
Type: `Function`
5449

55-
If the `fn` is passed, it will be called when the watcher emits a `change`, `add` or `unlink` event. It is automatically debounced with a default delay of 200 milliseconds and subsequent calls will be queued and called upon completion. These defaults can be changed using the `options`.
50+
| name | type | default | note |
51+
|:-------:|:------:|-----------|--------|
52+
| ignoreInitial | boolean | true | If false, the task is called during instantiation as file paths are discovered. Use to trigger the task during startup. <br> **Note:** This option is passed to [chokidar][chokidar-external] but is defaulted to `true` instead of `false`. |
53+
| delay | number | 200 | The millisecond delay between a file change and task execution. Allows for waiting on many changes before executing a task, e.g. find-and-replace on many files. |
54+
| queue | boolean | true | When true and the task is already running, any file changes will queue a single task execution. Keeps long running tasks from overlapping. |
55+
| events | string <br> array | [ 'add', <br> 'change', <br> 'unlink' ] | The events being watched to trigger task execution. Can be `'add'`, `'addDir'`, `'change'`, `'unlink'`, `'unlinkDir'`, `'ready'`, and/or `'error'`. Additionally `'all'` is available, which represents all events other than `'ready'` and `'error'`. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
56+
| persistent | boolean | true | If false, the watcher will not keep the Node process running. Disabling this option is not recommended. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
57+
| ignored | array <br> string <br> RegExp <br> function | | Defines globs to be ignored. If a function is provided, it will be called twice per path - once with just the path, then with the path and the `fs.Stats` object of that file. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
58+
| followSymlinks | boolean | true | When true, changes to both symbolic links and the linked files trigger events. If false, only changes to the symbolic links trigger events. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
59+
| cwd | string | | The directory that will be combined with any relative path to form an absolute path. Is ignored for absolute paths. Use to avoid combining `globs` with `path.join()`. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
60+
| disableGlobbing | boolean | false | If true, all `globs` are treated as literal path names, even if they have special characters. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
61+
| usePolling | boolean | false | When false, the watcher will use `fs.watch()` (or [fsevents][fsevents-external] on Mac) for watching. If true, use `fs.watchFile()` polling instead - needed for successfully watching files over a network or other non-standard situations. Overrides the `useFsEvents` default. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
62+
| interval | number | 100 | Combine with `usePolling: true`. Interval of file system polling. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
63+
| binaryInterval | number | 300 | Combine with `usePolling: true`. Interval of file system polling for binary files. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
64+
| useFsEvents | boolean | true | When true, uses fsevents for watching if available. If explicitly set to true, supersedes the `usePolling` option. If set to false, automatically sets `usePolling` to true. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
65+
| alwaysStat | boolean | false | If true, always calls `fs.stat()` on changed files - will slow down file watcher. The `fs.Stat` object is only available if you are using the chokidar instance directly. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
66+
| depth | number | | Indicates how many nested levels of directories will be watched. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
67+
| awaitWriteFinish | boolean | false | Do not use this option, use `delay` instead. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
68+
| ignorePermissionErrors | boolean | false | Set to true to watch files that don't have read permissions. Then, if watching fails due to EPERM or EACCES errors, they will be skipped silently. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
69+
| atomic | number | 100 | Only active if `useFsEvents` and `usePolling` are false. Automatically filters out artifacts that occur from "atomic writes" by some editors. If a file is re-added within the specified milliseconds of being deleted, a change event - instead of unlink then add - will be emitted. <br> _This option is passed directly to [chokidar][chokidar-external]._ |
5670

57-
The `fn` is passed a single argument, `callback`, which is a function that must be called when work in the `fn` is complete. Instead of calling the `callback` function, [async completion][async-completion] can be signalled by:
58-
* Returning a `Stream` or `EventEmitter`
59-
* Returning a `Child Process`
60-
* Returning a `Promise`
61-
* Returning an `Observable`
71+
## Chokidar instance
6272

63-
Once async completion is signalled, if another run is queued, it will be executed.
73+
The `watch()` method returns the underlying instance of [chokidar][chokidar-external], providing fine-grained control over your watch setup. Most commonly used to register individual event handlers that provide the `path` or `stats` of the changed files.
6474

65-
`gulp.watch` returns a wrapped [chokidar] FSWatcher object. Listeners can also be set directly for any of [chokidar]'s events, such as `addDir`, `unlinkDir`, and `error`. You must set listeners directly to get
66-
access to chokidar's callback parameters, such as `path`.
75+
**When using the chokidar instance directly, you will not have access to the task system integrations, including async completion, queueing, and delay.**
6776

6877
```js
69-
var watcher = gulp.watch('js/**/*.js', gulp.parallel('concat', 'uglify'));
78+
const { watch } = require('gulp');
79+
80+
const watcher = watch(['input/*.js']);
81+
7082
watcher.on('change', function(path, stats) {
71-
console.log('File ' + path + ' was changed');
83+
console.log(`File ${path} was changed`);
84+
});
85+
86+
watcher.on('add', function(path, stats) {
87+
console.log(`File ${path} was added`);
7288
});
7389

74-
watcher.on('unlink', function(path) {
75-
console.log('File ' + path + ' was removed');
90+
watcher.on('unlink', function(path, stats) {
91+
console.log(`File ${path} was removed`);
7692
});
93+
94+
watcher.close();
7795
```
7896

79-
### path
80-
Type: `String`
8197

82-
Path to the file. If `opts.cwd` is set, `path` is relative to it.
98+
`watcher.on(eventName, eventHandler)`
99+
100+
Registers `eventHandler` functions to be called when the specified event occurs.
101+
102+
| parameter | type | note |
103+
|:--------------:|:-----:|--------|
104+
| eventName | string | The events that may be watched are `'add'`, `'addDir'`, `'change'`, `'unlink'`, `'unlinkDir'`, `'ready'`, `'error'`, or `'all'`. |
105+
| eventHandler | function | Function to be called when the specified event occurs. Arguments detailed in the table below. |
83106

84-
### stats
85-
Type: `Object`
107+
| argument | type | note |
108+
|:-------------:|:-----:|--------|
109+
| path | string | The path of the file that changed. If the `cwd` option was set, the path will be made relative by removing the `cwd`. |
110+
| stats | object | An [fs.Stat][fs-stats-concepts] object, but could be `undefined`. If the `alwaysStat` option was set to `true`, `stats` will always be provided. |
86111

87-
[File stats][fs stats] object when available.
88-
Setting the `alwaysStat` option to `true` will ensure that a file stat object will be
89-
provided.
112+
`watcher.close()`
90113

91-
## watcher methods
114+
Shuts down the file watcher. Once shut down, no more events will be emitted.
92115

93-
### watcher.close()
116+
`watcher.add(globs)`
94117

95-
Shuts down the file watcher.
118+
Adds additional globs to an already-running watcher instance.
96119

97-
### watcher.add(glob)
120+
| parameter | type | note |
121+
|:-------------:|:-----:|--------|
122+
| globs | string <br> array | The additional globs to be watched. |
98123

99-
Watch additional glob (or array of globs) with an already-running watcher instance.
124+
`watcher.unwatch(globs)`
100125

101-
### watcher.unwatch(glob)
126+
Removes globs that are being watched, while the watcher continues with the remaining paths.
102127

103-
Stop watching a glob (or array of globs) while leaving the watcher running and
104-
emitting events for the remaining paths it is watching.
128+
| parameter | type | note |
129+
|:-------------:|:-----:|--------|
130+
| globs | string <br> array | The globs to be removed. |
105131

106-
[chokidar]: https://github.com/paulmillr/chokidar
107-
[node-glob]: https://github.com/isaacs/node-glob
108-
[fs stats]: https://nodejs.org/api/fs.html#fs_class_fs_stats
109-
[async-completion]: https://github.com/gulpjs/async-done#completion-and-error-resolution
132+
[chokidar-instance-section]: #chokidar-instance
133+
[tasks-concepts]: concepts.md#tasks
134+
[globs-concepts]: concepts.md#globs
135+
[fs-stats-concepts]: concepts.md#file-system-stats
136+
[chokidar-external]: https://github.com/paulmillr/chokidar
137+
[fsevents-external]: https://github.com/strongloop/fsevents

0 commit comments

Comments
 (0)