From the course: Learning CoffeeScript

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Setting up a project with Gulp.js

Setting up a project with Gulp.js - CoffeeScript Tutorial

From the course: Learning CoffeeScript

Start my 1-month free trial

Setting up a project with Gulp.js

In this movie, I'm going to walk you through setting up a gulp.js work flow. And not just for processing coffee script, but handling a pretty traditional work flow system. We'll get started by installing and setting up our project. The first thing we're going to need is just a folder for our files, so I'm going to call this one coffee script. And I'll put it on the desktop. In here, I'm going to create another folder. And I'll call it components. Components is usually where I place things that need to be processed by something like Gulp.js. So inside that folder I'm going to create another folder called coffee, for my coffee script files. And as well as lib folder. This is where I place any additional libraries that I'm going to need with my project. And also a SASS folder just in case I want to process some SASS files as well as a scripts folder this is where other JavaScript would go. So I'll back up out of that folder, I'll back up out of this folder and in the same folder as…

Contents