| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This library is no longer maintananced (Reason). Bugs are not be fixed (even if they are trivial or essential).
We suggest to use other library or to make a fork.
Python-CoffeeScript is a bridge to the JS CoffeeScript compiler.
>>> import coffeescript
>>> print(coffeescript.compile('add = (a, b) -> a + b'))
(function() {
var add;
add = function(a, b) {
return a + b;
};
}).call(this);
$ pip install CoffeeScript
or
$ easy_install CoffeeScript
The latest version of coffeescript.js (the script for browser <script type="text/coffeescript"> tags) can be download from http://coffeescript.org/v2/browser-compiler/coffeescript.js
Released under the MIT license. See LICENSE for details.
| Back | FazBrowse Home | New Git URL |