Top "Gulp" questions

Gulp is a JavaScript build system, Node.

Locally installed gulp not running in command line?

I am new to nodejs and gulp stuff. I working on a nodejs project in which I have to run …

node.js command-line gulp package.json
Javascript: get package.json data in gulpfile.js

Not a gulp-specific question per-se, but how would one get info from the package.json file within the gulpfile.js; …

javascript gulp
How to save a stream into multiple destinations with Gulp.js?

const gulp = require('gulp'); const $ = require('gulp-load-plugins')(); const source = require('vinyl-source-stream'); const browserify = require('browserify'); gulp.task('build', () => browserify(…

javascript node.js browserify gulp
Using the original URL, not proxy, with browser-sync

Recently switched from Grunt.js to Gulp.js as multiple people told me how much better and faster it wa (…

proxy localhost gulp browser-sync
How to uglify output with Browserify in Gulp?

I tried to uglify output of Browserify in Gulp, but it doesn't work. gulpfile.js var browserify = require('browserify'); var …

javascript node.js gulp browserify uglifyjs
browser-sync does not refresh page after changes with Gulp

I'm new to Gulp and I wanted to make use of its automatic scss compiling and browser sync. But I …

sass gulp browser-sync
How to run a task ONLY on modified file with Gulp watch

I have the current gulp task which I use in a gulpfile. Path are from a config.json and everything …

gulp gulp-watch
Gulp.js - Use path from gulp.src() in gulp.dest()

Trying to create a gulp task that will pipe a bunch of files from different folders through LESS and then …

gulp less.js gulp-less
Gulp browser-sync - redirect API request via proxy

I'm trying to redirect my API requests like this with gulp and browser-sync: gulp.task('browser-sync', function () { var files = [ '../…

api proxy gulp middleware browser-sync
ES6 import module with Gulp

I am trying to import my ES6 module into a file and running Gulp to concat and minify the file. …

javascript gulp gulp-babel