
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
gulp-chokidar
Advanced tools
Deprecated: use gulp-watch instead.
Awesome Gulp Watcher and glob wrapper for chokidar.
npm i gulp-chokidar
For using gulp tasks you need to pass gulp
instance
var gulp = require('gulp'),
watch = require('gulp-chokidar')(gulp);
gulp.task('hello-css');
gulp.task('default', function () {
watch('src/css/**/*.css', 'hello-css');
});
Or you may use watcher without gulp
var watch = require('gulp-chokidar');
watch('src/css/**/*.css', function () {
console.log('update something);
});
Creates watcher that will spy on files that were matched by globs
which can be a
node-globule
string or array of strings.
This task is called, when some events is happens on file-system.
If gulp instance passed with require task
can be function, task string or task array.
Type: Boolean
Default: false
Run task on start watching
all
— any event.ready
— emits on watcher ready.add
— when new file was created.change
— when file was changed.delete
— when file was deleted`.error
— when something happened inside callback, you will get notified.require('gulp-chokidar')('src/css/**/*.css')
.on('change', function () {
console.log('update something);
});
#License
Copyright © 2014 Bogdan Chadkin
FAQs
[DEPRECATED] Awesome Gulp Watcher
The npm package gulp-chokidar receives a total of 8 weekly downloads. As such, gulp-chokidar popularity was classified as not popular.
We found that gulp-chokidar 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.