Ruby on Rails ExecJS::RuntimeError in Pages#home

I generated a page using a controller. But when I go to the
localhost:3000/pages/home. I got this error: ExecJS::RuntimeError in
Pages#home

How can I fix this? I found a solution here

but I’ve no idea where to find ExecJS’s runtimes.rb file.

I’m using complete package from here: Install Ruby on Rails – Railsinstaller.org -

Any help will be appreciated. thank you.

Here is the full error code:

========================================
ExecJS::RuntimeError in Pages#home

Showing
C:/Users/Anishka/Desktop/test/myfirstapp/app/views/layouts/application.html.erb
where line #6 raised:

(in
C:/Users/Anishka/Desktop/test/myfirstapp/app/assets/javascripts/pages.js.coffee)
Extracted source (around line #6):

3:
4: Myfirstapp
5: <%= stylesheet_link_tag “application”, :media => “all” %>
6: <%= javascript_include_tag “application” %>
7: <%= csrf_meta_tags %>
8:
9:
Rails.root: C:/Users/Anishka/Desktop/test/myfirstapp

Application Trace | Framework Trace | Full Trace
app/views/layouts/application.html.erb:6:in
`_app_views_layouts_application_html_erb__601430158_32305500’
Request

Parameters:

None
Show session dump

Show env dump

Response

Headers:

None

Hi,
add in Gemfile
gem ‘execjs’
gem ‘therubyracer’ run bundle install and check

Regards
Mehdi

Khizer Mehdi wrote in post #1122896:

Hi,
add in Gemfile
gem ‘execjs’
gem ‘therubyracer’ run bundle install and check

Regards
Mehdi

Thanks, problem solved :slight_smile: