Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
gulp-shell
Advanced tools
A handy command line interface for gulp
npm install --save-dev gulp-shell
var gulp = require('gulp')
var shell = require('gulp-shell')
gulp.task('example', function () {
return gulp.src('*.js', {read: false})
.pipe(shell([
'echo <%= f(file.path) %>',
'ls -l <%= file.path %>'
], {
templateData: {
f: function (s) {
return s.replace(/$/, '.bak')
}
}
}))
})
If you just want to execute a series of commands only once, starting the stream with gulp.src('')
should do the trick.
Or you can use this shorthand:
gulp.task('shorthand', shell.task([
'echo hello',
'echo world'
]))
You can find more examples in the gulpfile of this project.
type: Array
or String
A command can be a template which can be interpolated by some file info (e.g. file.path
).
type: String
default: Command `<%= command %>` failed with exit code <%= error.code %>
You can add a custom error message for when the command fails.
This can be a template which can be interpolated with the current command
, some file info (e.g. file.path
) and some error info (e.g. error.code
).
type: Boolean
default: false
By default, it will emit an error
event when the command finishes unsuccessfully.
type: Boolean
default: false
By default, it will print the command output.
type: String
default: process.cwd()
Sets the current working directory for the command.
type: Object
The data that can be accessed in template.
type: Number
default: 16MB(16 * 1024 * 1024)
You won't need to set this option unless you encounter a "stdout maxBuffer exceeded" error.
type: Object
By default, all the commands will be executed in an environment with all the variables in process.env
and PATH
prepended by ./node_modules/.bin
(allowing you to run executables in your Node's dependencies).
You can override any environment variables with this option.
For example, setting it to {PATH: process.env.PATH}
will reset the PATH
if the default one brings your some troubles.
FAQs
A handy command line interface for gulp
We found that gulp-shell 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.