KO
|
EN
gitlite โ search
Search
#nodejs
#android
#python
#electron
#react
#php
#java
#c
#api
#csharp
#arduino
#sql
gulp-book
โ 95
Open GitHub โ
Gulp: the frontend factory
Download README (.md)
Explore Similar Repositories
datetimepicker
:
๐ Date and Time Picker
lb-controller
:
Load Balancer for Rancher services via ingress controllers backed up by a Load Balancer provider of choice
airbrake-ruby
:
A plain Ruby Airbrake notifier
fishline
:
A powerline prompt framework for the fish-shell built in fish-shell.
CoverTree
:
Cover Tree implementation in C++ for k-Nearest Neighbours and range search
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
gulp-book
?
Download (.md)
# Gulp: the modern frontend factory I'm excited everyday I write front-end code with these amazing tools we now have to build client-side apps with pleasure. I liked JavaScript but typing so many brackets was killing my keyboard, then I discovered [CoffeeScript](http://coffeescript.org). I was desperately trying to rationalize my copy and paste activity for selectors in CSS, but that was before [LESS](http://lesscss.org) saved my life. I got lost every time in the verbose HTML markup of long web pages, and couldn't stand losing time forgetting closing tags, so [Jade](http://jade-lang.com) felt like a spring cleaning to me. All these languages (and others like LiveScript, SCSS, etc.) are (unfortunately?) not natively read by browsers we develop for, adding to our test and release process an extra building step. It's here where tools like [Grunt](http://gruntjs.com) or [Brunch](http://brunch.io) were needed, automating this "compilation". I personally used a lot Brunch as I considered it easier for common tasks in the stack I use, and I really appreciate his usability, and his *out of the box* behaviour. I loved it so much I wrote a [kewl](http://david.nowinsky.net/kewl) skeleton to start prototyping quickly with it. However, when I tried to use always more plugins to achieve more complex tasks, such as marking assets with a checksum, then adding them in a cache manifest file, I realized the limits of these tools, essentially because they're based on configuration, instead of code. And then, I discovered [Gulp](http://gulpjs.com). As developers, we love code. We'd like to know what's happening deep down when we call some obscure function. Gulp get rid of this "black box" approach and proposes a radically different philosophy to create your perfect front-end factory.