I would like to request /js/app.js from HarpJS server and have it preprocess a folder of coffeescript and javascript. For example, say I have:
/js/module/a.js
/js/module/b.coffee
/js/module/c.coffee
/js/app.coffee
Is there a way to request /js/app.js
such that the response contains the concatenation of /js/module/a.js
, of /js/module/b.js
. and /js/module/c.js
responses?