
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
The streaming scaffolding system - Gulp as a replacement for Yeoman
Slush is a tool to be able to use Gulp for project scaffolding.
Slush does not contain anything "out of the box", except the ability to locate installed slush generators
and to run them with liftoff.
To be able to provide functionality like Yeoman, see: Yeoman like behavior below.
Install slush globally with:
npm install -g slush
slush <generator>[:<tasks>] [<args>]
<tasks>: a colon (":") separated list of a task or tasks to run. If not provided the default task in the slushfile is run<args>: any other given arguments (not prefixed with "--" or "-") can be accessed via the gulp.args property from within a slushfileExample:
slush angular:component myNewComponent
Which will run task component in generator slush-angular and gulp.args will be set to ["myNewComponent"].
If run without any arguments, slush will list all installed generators.
slush
To list available tasks within a generator, use the generator name in conjunction with the --tasks parameter.
slush <generator> --tasks
As usual you can use -v or --version to get the current slush version:
slush -v
It can also be used together with a generator name:
slush <generator> -v
You'll then get the version for slush, the gulp version installed in the generator and the version number of the given generator.
A Slush generator is an npm package following the naming convention slush-* and containing a slushfile.js.
Add slushgenerator as a keyword in your package.json.
As when building gulp plugins all slush generators need to have gulp installed as a local dependency.
All slush-* packages should be installed globally (for now) to be found by the slush executable.
Note remember to add gulp plugins (and gulp itself) as ordinary dependencies, instead of devDependencies, when building a slush generator.
slush globallyslush-<name>slushgenerator as package keywordgulp and used gulp plugins for your generator as ordinary dependenciesSlush is just the global excutable to trigger slush generators, under the hood it's still gulp that is run using each slushfile as config file.
Needing help writing slush generators? Check out Gulp's documentation!
A slushfile is basically a gulpfile, but meant to be used to scaffold project structures.
Because a Slush generator may want to use gulp locally for linting, testing and other purposes, in which case it will need to have a gulpfile.
Given a slush generator project structure with a web app project template inside ./templates/app/, a slushfile could be designed like this:
var gulp = require('gulp'),
install = require('gulp-install'),
conflict = require('gulp-conflict'),
template = require('gulp-template'),
inquirer = require('inquirer');
gulp.task('default', function (done) {
inquirer.prompt([
{type: 'input', name: 'name', message: 'Give your app a name', default: gulp.args.join(' ')}, // Get app name from arguments by default
{type: 'confirm', name: 'moveon', message: 'Continue?'}
],
function (answers) {
if (!answers.moveon) {
return done();
}
gulp.src(__dirname + '/templates/app/**') // Note use of __dirname to be relative to generator
.pipe(template(answers)) // Lodash template support
.pipe(conflict('./')) // Confirms overwrites on file conflicts
.pipe(gulp.dest('./')) // Without __dirname here = relative to cwd
.pipe(install()) // Run `bower install` and/or `npm install` if necessary
.on('finish', function () {
done(); // Finished!
});
});
});
Use these packages/plugins:
Anyone can help make this project better!
FAQs
The streaming scaffolding system - Gulp as a replacement for Yeoman
The npm package slush receives a total of 22 weekly downloads. As such, slush popularity was classified as not popular.
We found that slush 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.