
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
gulp-just-spawn
Advanced tools
Shell runner for gulp - Because there is not enough spawn/exec wrappers on the Internet
Main driver is the fact that sometimes build scripts require just running commnds. This package is about to reduce boilerplate. Nothing fancy.
Promise
to be awialable globallygulp
Promise
supportspawn
, all docs from spawn
is relevantFirst, install gulp-just-spawn
as a development dependency:
npm install --save-dev gulp-just-spawn
Then add use it in your gulpfile, like so (note these are only examples, please check the documentation for your functions for the correct way to use them):
var gulp = require('gulp');
var spawn = require('gulp-just-spawn');
// Run single command
gulp.task('deploy', () => spawn('eb', ['deploy', 'production']));
// Run multiple command sequentually
gulp.task('build:client', () => spawn([
{cmd: 'npm', args: ['install'], options: {cwd: `${__dirname}/client`}},
{cmd: 'npm', args: ['run', 'build'], options: {cwd: `${__dirname}/client`}}
]));
FAQs
Shell runner for gulp - Because there is not enough spawn/exec wrappers on the Internet
We found that gulp-just-spawn 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.