
Security News
GitHub Actions Supply Chain Attack Puts Thousands of Projects at Risk
A compromised GitHub Action exposed secrets in CI/CD logs, putting thousands of projects at risk and forcing developers to urgently secure their workflows.
gulp-remote-src
Advanced tools
Remote gulp.src
.
Install package with NPM and add it to your development dependencies:
npm install --save-dev gulp-remote-src
var gulp = require('gulp');
var uglify = require('gulp-uglify');
var remoteSrc = require('gulp-remote-src');
gulp.task('remote', function() {
remoteSrc(['app.js', 'jquery.js'], {
base: 'http://myapps.com/assets/',
})
.pipe(uglify())
.pipe(gulp.dest('./dist/'));
})
base
Url base.
buffer
(default is true)
Pipe out files as buffer or as stream. Note that some plugins does not support streaming.
First release.
Fix streaming pipe.
Add tests for streaming pipe.
v0.2.0 (2014-07-01)
Fix streaming pipe.
Add tests for streaming pipe.
FAQs
Remote gulp.src
The npm package gulp-remote-src receives a total of 1,437 weekly downloads. As such, gulp-remote-src popularity was classified as popular.
We found that gulp-remote-src 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
A compromised GitHub Action exposed secrets in CI/CD logs, putting thousands of projects at risk and forcing developers to urgently secure their workflows.
Research
Security News
A malicious Maven package typosquatting a popular library is secretly stealing OAuth credentials on the 15th of each month, putting Java developers at risk.
Security News
Socket and Seal Security collaborate to fix a critical npm overrides bug, resolving a three-year security issue in the JavaScript ecosystem's most popular package manager.