
Security News
/Research
Popular node-ipc npm Package Infected with Credential Stealer
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.
Load gulp task just like grunt.loadTasks.
If you want to load plugins automatically, gulp-load-tasks will be a good choice.
Install gulp-load
$ npm install --save gulp-load
Require gulp-load in your gulpfile
var gulp = require('gulp');
require('gulp-load')(gulp);
// load tasks from tasks directory and
// dependencies of start with `gulp-` in package.json
gulp.loadTasks(__dirname);
// run tasks which you loaded
gulp.tasks('default', function() {
gulp.run('your_task');
})
Gulp-load will return a function that is same as gulp.loadTasks.
var loadTasks = require('gulp-load')(gulp);
loadTasks === gulp.loadTasks // return true
LoadTasks can load single file.
gulp.loadTasks('path/to/task.js');
LoadTasks can load specified module.
gulp.loadTasks('path/to/module');
LoadTasks can load by module's name. It will lookup from NODE_PATH and node_modules of current module.
gulp.loadTasks('gulp-concat');
If load a module, it will load task from tasks directory of current module, and if gulp plugins (start with gulp-) exists in dependencies of package.json, then it will load each plugin as a module.
MIT
FAQs
Load gulp task just like grunt.loadTasks.
The npm package gulp-load receives a total of 53 weekly downloads. As such, gulp-load popularity was classified as not popular.
We found that gulp-load 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.

Security News
/Research
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.

Security News
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.