Skip to content

appleton/grunt-coffee-server

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
bin
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

grunt-coffee-server

A handy development server which auto compiles CoffeeScript. Just request /path/to/filename.js and the server will return it if it exists otherwise it will look for /path/to/filename.coffee and return the compiled output.

Getting Started

Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-coffee-server

Then add this line to your project's grunt.js gruntfile:

grunt.loadNpmTasks('grunt-coffee-server');

Run the server from the command line:

grunt coffee-server

Documentation

Configuration

This task takes two optional configuration options:

grunt.initConfig({
  server: {
    port: 1337, // defaults to 3000 if not set
    base: './public' // defaults to ./ if not set
  }
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.

Release History

0.1.1 - Fixes an issue with serving static files.

License

Copyright (c) 2012 Andy Appleton Licensed under the MIT license.

About

A handy development server which auto compiles CoffeeScript.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published