Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Exactly like fs.watch, but with sub-directory support. When an instance of DeepWatch
is registered on a directory, it scans all of that directories sub-directories and applies watchers to them as well. It also keeps track of newly added or removed directories after the watching has begun.
Note: A recursive option for fs.watch
is currently supported (for OS X only) in a beta version of node (v0.11.9). Supported platforms will use the recursive option, all other platorms will use this library's original implementation.
Return a new DeepWatch instance.
cwd
String - the root directory to start watching from
options
Object - see below for options details
exclude
: Array - a list of directory names to ignore. Events on those directories, their sud-directories, or any files within are not reported. (default: [])ignoreDotDirectories
: Boolean - whether to ignore directories beginning with a .
(default: true)callback
Function - a callback to be invoked on each file systen event. The callback is invoked with the following arguments (event, filename)
and the DeepWatch instance as its this
context.
Start listening for file system events.
Stop listening for events and remove any associated watchers.
var DeepWatch = require('deep-watch')
var dw = new DeepWatch('.', function(event, filename) {
if (filename == 'foo/bar/index.html') this.stop()
})
dw.start()
mkdir -p new-directory/new-sub-directory
. The reason is that the sub-directory is created before the callback for the creation of the parent directory is invoked.FAQs
Exactly like fs.watch, but with sub-directory support.
The npm package deep-watch receives a total of 1 weekly downloads. As such, deep-watch popularity was classified as not popular.
We found that deep-watch 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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.