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
base: './public'
}
});
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.