Gathering detailed insights and metrics for @parcel/watcher-linux-x64-glibc
Gathering detailed insights and metrics for @parcel/watcher-linux-x64-glibc
Gathering detailed insights and metrics for @parcel/watcher-linux-x64-glibc
Gathering detailed insights and metrics for @parcel/watcher-linux-x64-glibc
@parcel/watcher-linux-arm64-glibc
A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.
@parcel/watcher-linux-arm-glibc
A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.
@parcel/watcher-linux-x64-musl
A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.
@parcel/watcher-win32-x64
A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.
👀 A native C++ Node module for querying and subscribing to filesystem events
npm install @parcel/watcher-linux-x64-glibc
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
664 Stars
162 Commits
46 Forks
24 Watching
13 Branches
17 Contributors
Updated on 27 Nov 2024
C++ (59.44%)
JavaScript (36.37%)
C (1.99%)
Python (1.45%)
Makefile (0.75%)
Cumulative downloads
Total Downloads
Last day
3.4%
992,728
Compared to previous day
Last week
13.3%
5,045,916
Compared to previous week
Last month
72%
19,089,298
Compared to previous month
Last year
654.5%
89,880,166
Compared to previous year
No dependencies detected.
A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.
git checkout
or npm install
).1const watcher = require('@parcel/watcher'); 2const path = require('path'); 3 4// Subscribe to events 5let subscription = await watcher.subscribe(process.cwd(), (err, events) => { 6 console.log(events); 7}); 8 9// later on... 10await subscription.unsubscribe(); 11 12// Get events since some saved snapshot in the past 13let snapshotPath = path.join(process.cwd(), 'snapshot.txt'); 14let events = await watcher.getEventsSince(process.cwd(), snapshotPath); 15 16// Save a snapshot for later 17await watcher.writeSnapshot(process.cwd(), snapshotPath);
@parcel/watcher
supports subscribing to realtime notifications of changes in a directory. It works recursively, so changes in sub-directories will also be emitted.
Events are throttled and coalesced for performance during large changes like git checkout
or npm install
, and a single notification will be emitted with all of the events at the end.
Only one notification will be emitted per file. For example, if a file was both created and updated since the last event, you'll get only a create
event. If a file is both created and deleted, you will not be notifed of that file. Renames cause two events: a delete
for the old name, and a create
for the new name.
1let subscription = await watcher.subscribe(process.cwd(), (err, events) => { 2 console.log(events); 3});
Events have two properties:
type
- the event type: create
, update
, or delete
.path
- the absolute path to the file or directory.To unsubscribe from change notifications, call the unsubscribe
method on the returned subscription object.
1await subscription.unsubscribe();
@parcel/watcher
has the following watcher backends, listed in priority order:
You can specify the exact backend you wish to use by passing the backend
option. If that backend is not available on the current platform, the default backend will be used instead. See below for the list of backend names that can be passed to the options.
@parcel/watcher
also supports querying for historical changes made in a directory, even when your program is not running. This makes it easy to invalidate a cache and re-build only the files that have changed, for example. It can be significantly faster than traversing the entire filesystem to determine what files changed, depending on the platform.
In order to query for historical changes, you first need a previous snapshot to compare to. This can be saved to a file with the writeSnapshot
function, e.g. just before your program exits.
1await watcher.writeSnapshot(dirPath, snapshotPath);
When your program starts up, you can query for changes that have occurred since that snapshot using the getEventsSince
function.
1let events = await watcher.getEventsSince(dirPath, snapshotPath);
The events returned are exactly the same as the events that would be passed to the subscribe
callback (see above).
@parcel/watcher
has the following watcher backends, listed in priority order:
The FSEvents (macOS) and Watchman backends are significantly more performant than the brute force backends used by default on Linux and Windows, for example returning results in miliseconds instead of seconds for large directory trees. This is because a background daemon monitoring filesystem changes on those platforms allows us to query cached data rather than traversing the filesystem manually (brute force).
macOS has good performance with FSEvents by default. For the best performance on other platforms, install Watchman and it will be used by @parcel/watcher
automatically.
You can specify the exact backend you wish to use by passing the backend
option. If that backend is not available on the current platform, the default backend will be used instead. See below for the list of backend names that can be passed to the options.
All of the APIs in @parcel/watcher
support the following options, which are passed as an object as the last function argument.
ignore
- an array of paths or glob patterns to ignore. uses is-glob
to distinguish paths from globs. glob patterns are parsed with micromatch
(see features).
backend
- the name of an explicitly chosen backend to use. Allowed options are "fs-events"
, "watchman"
, "inotify"
, "kqueue"
, "windows"
, or "brute-force"
(only for querying). If the specified backend is not available on the current platform, the default backend will be used instead.The @parcel/watcher-wasm
package can be used in place of @parcel/watcher
on unsupported platforms. It relies on the Node fs
module, so in non-Node environments such as browsers, an fs
polyfill will be needed.
Note: the WASM implementation is significantly less efficient than the native implementations because it must crawl the file system to watch each directory individually. Use the native @parcel/watcher
package wherever possible.
1import {subscribe} from '@parcel/watcher-wasm'; 2 3// Use the module as documented above. 4subscribe(/* ... */);
MIT
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
11 commit(s) and 4 issue activity found in the last 90 days -- score normalized to 10
Reason
license file detected
Details
Reason
binaries present in source code
Details
Reason
7 existing vulnerabilities detected
Details
Reason
Found 6/30 approved changesets -- score normalized to 2
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More