9 ms·
If you build those simple 1-file-testservers with node, simply write them in coffee and then start them like "coffee myserver.coffee". If it's more elaborated,
by xsltuser2010 16y ago
If you build those simple 1-file-testservers with node, simply write them in coffee and then start them like "coffee myserver.coffee".
If it's more elaborated, you might want to set up some kind of build process and then use the generated js files.
You could use a simple Makefile and compile your coffee files with coffee -c -b.
- krmmalik 16y agoI'll try that. Thanks!
- xsltuser2010 16y agoOh, i forgot: You can add the --watch switch and get your scripts compiled on save.