-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
96 lines (67 loc) · 2.85 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
FilterCoffee
============
FilterCoffee is a simple WSG middleware for compiling CoffeeScript to JavaScript
on the fly. It is intended for use in the development of WSGI applicatons, but
for deployed applications you should use some other strategy for delivering your
compiled CoffeeScript (e.g., write a script to compile all your CoffeeScripts to
JavaScript).
FilterCoffee caches the compiled CoffeeScripts in memory but will recompile
scripts when they are modified. A CoffeeScript compilation error results in the
request returning a ``500`` error containing the CoffeeScript error message in
the body. Error messages are also output to the ``wsgi.error`` stream so that
they will show up in your console or in your servers error log.
Installation
------------
FilterCoffee depends on CoffeeScript and in turn node.js. CoffeeScript expects
the ``coffee`` command to be available on the current PATH. See the installation
instructions for CoffeeScript for more information:
http://coffeescript.org/#installation
There are a number of different ways to install CoffeeFilter:
Using PIP
~~~~~~~~~
This is the preferred method. Run::
pip install filtercoffee
For an Individual Applicaiton
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Copy ``filtercoffee.py`` into an appropriate place in your WSGI applications
code.
System Wide from Downloaded Source
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Run::
python setup.py install
Basic Usage
-----------
You can wrap your WSGI application in the FilterCoffee middleware like so
(assuming that the variable ``app`` contains your WSGI application and the
variable ``debug`` is only set when the application is in development mode::
if debug:
import filtercoffee
app = filtercoffee.FilterCoffee(
app,
static_dir='/path/to/static/files')
FilterCoffee will now intercept any request that ends in ``.js`` and check if a
corresponding ``.coffee`` file exists. If a ``.coffee`` file exists it will be
compiled and the comiled output will be returned in the response (the compiled
output is also cached such that recompilation only occurs if the ``.coffee``
file changes). If no ``.coffee`` file exists, the original application is called
to handle the request.
Advanced Usage
--------------
FilterCoffee has flexible support for deciding what it should consider a Coffee-
or JavaScript. Check the arguments to FilterCoffee's ``__init__`` method.
Related Software
----------------
http://github.com/dsc/coffeecup
Uses the ``coffee`` command's ``watch`` option to recompile files and leaves
the resulting JavaScript files in the file system. This is in contrast with
FilterCoffee which does its own caching and does not leave .js files in the
filesystem.
Changelog
=========
0.3 Feb 01, 2012
* Include README in source distribution
0.2 Jan 25, 2012
* Documentation Updates
* PyPI
0.1 Jan 17, 2012
* Initial release