I created a new project using rails 3.1.0.rc4 on my local machine but when i try to start the server I get: Could not find a JavaScript runtime. See here for a list of available runtimes. (ExecJS::RuntimeUnavailable)

Note: This is not about Heroku.

link|improve this question

80% accept rate
feedback

3 Answers

up vote 34 down vote accepted

Assuming you are using Ubuntu, installing nodejs will solve the problem. Atleast, it did for me.

link|improve this answer
5  
for me too. sudo apt-get install nodejs. – Hertzel Guinness Dec 9 '11 at 3:34
+1 me as well. Thanks. – Tomaszewski Dec 19 '11 at 3:04
1  
I now recommend this as the route to take. See above. – Michael Durrant Dec 29 '11 at 2:13
thanks. that was a really easy-to-handle way to resolve :) – urobo Feb 26 at 18:20
'sudo apt-get install nodejs' didn't work for me. This tutorial on installing node.js on ubuntu works for me. – Mei Apr 4 at 20:33
feedback

Note from Michael 12/28/2011 - I have changed my accept from this (rubytheracer) to above (nodejs) as therubyracer has code size issues. Heroku now strongly discourage it. It will 'work' but may have size/performance issues.

If you add a runtime, such as therubyracer to your Gemfile and run bundle then try and start the server it should work.

gem 'therubyracer'

A javascript runtime is required for compiling coffeescript and also for uglifier.

Update, 12/12/2011: Some folks found issues with rubytheracer (I think it was mostly code size). They found execjs (or nodejs) worked just as well (if not better) and were much smaller.

n.b. Coffeescript became a standard for 3.1+

link|improve this answer
3  
It is also used for compressing JavaScript with UglifyJS. Note that the recommended way of doing these tasks is to do them in development with rake assets:precompile and then add assets to your repository; Rails 3.1 won't actually require a JavaScript runtime in production at the time of release. – whitequark Aug 17 '11 at 11:48
1  
I've marked this as the answer. It was a bit hairy as this didn't fix it right away and I was also trying new apps with 3.0.9 and 3.0.4 but got (different) errors with them. Finally I did a new app again - and also got rails rc5 with it and added the rubytheracer and did a bunlde update and finally I can get the server up and running. Thanks Gazier! – Michael Durrant Aug 17 '11 at 12:35
btw The standard rails app that gets created does use uglifier which also requires this I believe. – Michael Durrant Aug 17 '11 at 12:39
1  
I think a good practice could be put it in the gemfile under the development group , something like group :development do gem 'therubyracer' end – eveevans Oct 31 '11 at 22:11
feedback

I had this issue on a Windows machine and installing node.js was the solution that finally worked for me. This came after trying multiple other routes including trying to get 'therubyracer' working. Though the github for node.js suggests that installation on windows is still unstable, the website at http://nodejs.org/ had a Windows installer which worked perfectly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.