

Gulp.js
49 likes
A toolkit to automate & enhance your workflow. Leverage gulp and the flexibility of JavaScript to automate slow, repetitive workflows and compose them into efficient build pipelines.
Cost / License
- Free
- Open Source (MIT)
Application type
Platforms
- Node.JS
- Self-Hosted
Features
Gulp.js News & Activities
Highlights All activities
Recent News
No news, maybe you know any news worth sharing?
Share a News TipRecent activities
Gulp.js information
Featured in Lists
Master List of all Apps and Software I use for both work and personal life.
List by Jimmy Briggs with 416 apps, updated
A list with 807 apps by AmileyaRyver without a description.
List by AmileyaRyver with 807 apps, updated
Here is a non-exhaustive list of the tools I use for developing websites.
List by Paul with 12 apps, updated




Comments and Reviews
For me, Gulp is much better than Grunt. Simple watch + less + aftoprefixer + minify task on 3-4 files ran about 2.2 seconds on grunt, and almost instantly on gulp (when file is changed and recompiled on-fly) Major problem of grunt is every time it spawns new process and reloads entire config. Yes, you can optimize gruntfile, but it's still much worse than keep it in memory like gulp does. And you can set not to spawn grunt process for certain task, but it will stop entire watch task on errors. There are no gulp-plumber alterative for grunt (tell me if i'm wrong). When you rebuild entire project, it's not big issue, but if you watch for certain files and livereload - big latency between file changes and completion of rebuilding single file is problem. Also, gulp uses pipes, so each file processing can be done in memory, only final result written on disk. This gives additional performance, 'cause disk operations are slow.