I have a node.js app written in CoffeeScript.
I'm wondering what is needed in order to host the app on Heroku.
Thanks
|
I have a node.js app written in CoffeeScript. I'm wondering what is needed in order to host the app on Heroku. Thanks |
||||
|
Due to the updates with Heroku, it now allows for an To be honest the best way would be to compile it before hand using
Then in the inital app, write it in javascript and call the
and in
I'm not sure if this would work, or if that's even the proper syntax for that function. https://github.com/jashkenas/coffee-script/blob/master/lib/coffee-script.js#L24 If you're asking about doing it in ruby, here's this: Walkthrough on how to use coffeescript in rails on Heroku: http://drnicwilliams.com/2010/03/15/using-coffeescript-in-rails-and-even-on-heroku/ It suggests using bistro_car ( https://github.com/jnicklas/bistro_car )
and adding it to your Rails
If I find something else or another way to natively run Here are a couple more examples, but they all seem to be using ruby vs node.js as well: http://forrst.com/posts/Doing_CoffeeScript_on_Heroku_a_Ruby_gem-OBk http://www.tangiblecolors.com/first-steps-with-coffeescript-and-how-to-use Hope this helps a little bit. |
|||||
|
|
Michael Blume is right and you don't need any extra code to run CoffeeScript node apps on heroku. This is how I did it: Add the
Then modify the entry for your node app in the
To test if this will work on Heroku, you can try it on localhost using the foreman gem:
Then try a push to heroku and you will see something like this in the dependency installation:
Not sure if there are issues with that procedure but the method described above seems like overkill to me since you're messing up your code for runtime environment stuff. Hope this helps somebody :) |
|||||||||||||||||
|
|
I was able to get along fine by just including coffeescript in my dependencies and then putting 'coffee index.coffee' in my Procfile There's a startup cost to compiling each time your server boots, but other than that you should be fine. |
|||
|
|
|
I got it working by including coffee-script in my package.json and adding node_modules/coffee-script/bin to my Heroku PATH |
|||
|
|
|
I googled around but it seems unclear. Here's the heroku guide, which doesn't mention coffeescript. http://devcenter.heroku.com/articles/node-js I think you can just run |
|||
|
|
|
There is a great walk-through of deploying a node.js app on Heroku here: |
|||||
|
therubyracerto your Gemfile and you should be set. – Trevor Burnham Jun 15 '11 at 15:06