https://github.com/jacobbubu/generator-gulp-coffee
  
  
    A yeoman generator to generate a boilerplate project for gulp and coffee-script development 
    https://github.com/jacobbubu/generator-gulp-coffee
  
        Last synced: 8 months ago 
        JSON representation
    
A yeoman generator to generate a boilerplate project for gulp and coffee-script development
- Host: GitHub
- URL: https://github.com/jacobbubu/generator-gulp-coffee
- Owner: jacobbubu
- Created: 2015-12-23T14:44:29.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-18T02:17:51.000Z (almost 10 years ago)
- Last Synced: 2025-02-09T09:16:32.012Z (9 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
- 
            Metadata Files:
            - Readme: README.md
 
Awesome Lists containing this project
README
          # generator-gulp-coffee
Generator a minimum gulp and coffee-script project with [Yeoman](http://yeoman.io).
## Getting Started
Not every new computer comes with a [Yeoman](http://yeoman.io) pre-installed. You only have to install it once.
```bash
$ npm install -g yo
```
### Yeoman Generators
To install generator-gulp-coffee from npm, run:
```bash
$ npm install -g generator-gulp-coffee
```
And then, create a directory to put you gulp project in:
```bash
$ mkdir your-coffee-proj && cd $_
```
After that, initiate the generator:
```bash
$ yo gulp-coffee
```
This step takes time to install all dependencies that your project needs.
Finally, run `npm start` to start your development server and see the demo project.
Any `.coffee` files changed in `./src` will trigger a compilation process and the '.js' files will be written to `./lib` folder.