grunt-coffee-server

0.1.1 • Public • Published

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.

Package Sidebar

Install

npm i grunt-coffee-server

Weekly Downloads

0

Version

0.1.1

License

none

Last publish

Collaborators

  • appltn