CoffeeScript 1.0.0
A bridge to the JS CoffeeScript compiler
Latest Version: 1.0.2
CoffeeScript
============
Python CoffeeScript is a bridge to the JS CoffeeScript compiler.
A short example:
>>> import coffeescript
>>> coffeescript.compile('add = (a, b) -> a + b')
'(function() {\n var add;\n\n add = function(a, b) {\n return a + b;\n };\
n\n}).call(this);\n'
>>> print(coffeescript.compile('add = (a, b) -> a + b'))
(function() {
var add;
add = function(a, b) {
return a + b;
};
}).call(this);
# Installation
$ pip install CoffeeScript
or
$ easy_install CoffeeScript
#coffee-script.js
The latest version of coffee-script.js (the script for browser <script type="text/coffeescript"> tags)
can be download from http://jashkenas.github.com/coffee-script/
# GitHub
https://github.com/doloopwhile/Python-CoffeeScript
# License
Copyright (c) 2011 Omoto Kenji.
Released under the MIT license. See `LICENSE` for details.
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| CoffeeScript-1.0.0.zip (md5) | Source | 2011-12-28 | 42KB | 353 | |
- Author: Omoto Kenji
- Home Page: https://github.com/doloopwhile/Python-CoffeeScript
- License: MIT License
-
Categories
- Development Status :: 5 - Production/Stable
- Intended Audience :: Developers
- License :: OSI Approved :: MIT License
- Natural Language :: English
- Programming Language :: JavaScript
- Programming Language :: Python
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.2
- Package Index Owner: doloopwhile
- DOAP record: CoffeeScript-1.0.0.xml
