1.0.3 • Published 9 years ago

aspax-coffee-handler v1.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

What's this?

NPM version Dependency Status License Downloads

A plugin that enables ASPAX to handle CoffeeScript files.

Installation

Type this in the folder where you're running ASPAX:

npm install aspax-coffee-handler

If you're running ASPAX in a Node.js application root folder, consider using the --save-dev option to avoid deploying this plugin to your production environment:

npm install aspax-coffee-handler --save-dev

Usage

Simply add .coffee source files in aspax.yml:

app.js:
  - lib.js
  - script-1.coffee|bare
  - script-2.coffee

Available flags

  • bare: compile without the top-level function safety wrapper - see more here.

    Basically, this:

      $ -> console.log 'hi!'

    ...compiles to this with the bare flag:

      $(function() {
        return console.log("hi!");
      });

    ...and to this without the flag:

      (function() {
        $(function() {
          return console.log("hi!");
        });
      }).call(this);

Endorsing the author

If you find this piece of software useful, please tweet about ASPAX and endorse me on LinkedIn:

Ionut-Cristian Florescu on LinkedIn

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

0.8.1

9 years ago

0.8.0

9 years ago

0.7.9

9 years ago

0.7.8

9 years ago

0.7.7

10 years ago

0.7.6

10 years ago

0.7.5

10 years ago

0.7.4

10 years ago

0.7.3

10 years ago

0.7.2

10 years ago

0.7.1

10 years ago

0.7.0

10 years ago

0.6.9

10 years ago

0.6.8

10 years ago

0.6.7

10 years ago

0.6.6

10 years ago

0.6.5

10 years ago

0.6.4

10 years ago

0.6.3

10 years ago

0.6.2

10 years ago

0.6.1

10 years ago

0.6.0

10 years ago