Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on Apr 28, 2024 via pnpm

gulp-load-plugins 2.0.8

Automatically load any gulp plugins in your package.json
Package summary
Share
0
issues
2
licenses
30
MIT
4
ISC
Package created
18 Jan 2014
Version published
29 Aug 2022
Maintainers
2
Total deps
34
Direct deps
7
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
30 Packages, Including:
array-unique@0.3.2
braces@3.0.2
detect-file@1.0.0
expand-tilde@2.0.2
fancy-log@2.0.0
fill-range@7.0.1
findup-sync@5.0.0
function-bind@1.1.2
global-modules@1.0.0
global-prefix@1.0.2
glogg@2.2.0
gulp-load-plugins@2.0.8
gulplog@2.2.0
has-gulplog@1.0.0
hasown@2.0.2
homedir-polyfill@1.0.3
is-core-module@2.13.1
is-extglob@2.1.1
is-glob@4.0.3
is-number@7.0.0
is-windows@1.0.2
micromatch@4.0.5
parse-passwd@1.0.0
path-parse@1.0.7
picomatch@2.3.1
resolve-dir@1.0.1
resolve@1.22.8
sparkles@2.1.0
supports-preserve-symlinks-flag@1.0.0
to-regex-range@5.0.1

ISC License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
hold-liable
Must
include-copyright
include-license
4 Packages, Including:
color-support@1.1.3
ini@1.3.8
isexe@2.0.0
which@1.3.1
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

7
All Dependencies CSV
β“˜ This is a list of gulp-load-plugins 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
array-unique0.3.22.72 kBMIT
prod
fancy-log2.0.02.64 kBMIT
prod
findup-sync5.0.02.87 kBMIT
prod
gulplog2.2.06.48 kBMIT
prod
has-gulplog1.0.01.83 kBMIT
prod
micromatch4.0.514.09 kBMIT
prod
resolve1.22.826.69 kBMIT
prod

Visualizations

Frequently Asked Questions

What does gulp-load-plugins do?

"gulp-load-plugins" is a valuable tool that automatically loads any gulp plugins listed in your package.json file. The plugin grabs these dependencies and binds them to an object of your choice, streamlining your workflow by saving you from manually having to require each plugin. With the "gulp-load-plugins" package, you can centralize your project's dependencies and simplify your gulpfile.js.

How do you use gulp-load-plugins?

To use "gulp-load-plugins", you first need to install it via npm or Yarn. For npm, use the command npm install --save-dev gulp-load-plugins and for Yarn, use yarn add -D gulp-load-plugins.

Once installed, require "gulp-load-plugins" in your Gulpfile.js. Here is a basic example:

const gulp = require('gulp');
const gulpLoadPlugins = require('gulp-load-plugins');
const plugins = gulpLoadPlugins();

Or in an even shorter format:

const gulp = require('gulp');
const plugins = require('gulp-load-plugins')();

Assuming you have certain gulp plugins like gulp-jshint or gulp-concat in your package.json, they will be loaded and can be accessed as following:

plugins.jshint = require('gulp-jshint');
plugins.concat = require('gulp-concat');

Instead of using require('gulp-plugin') each time, you can simply use plugins.plugin().

"gulp-load-plugins" is highly customizable and supports a wide range of options such as DEBUG, pattern, scope, lazy loading, renaming, and more. You can look at the plugin's documentation to understand and tune these options according to your project's needs.

Where are the gulp-load-plugins docs?

The comprehensive documentation for "gulp-load-plugins" can be found on the package's GitHub page: https://github.com/jackfranklin/gulp-load-plugins. The readme section provides detailed information about installation, usage, options, and provides a list of the package's version updates. The examples in the documentation are practical and easy to follow, allowing developers to quickly comprehend and implement the plugin in their projects.