I am following a tutorial to install bootstrap on my rails application. I've been following this tutorial http://www.gotealeaf.com/blog/integrating-rails-and-bootstrap-part-1
Thought I run into this error, when I change my application.css to application.css.sass.
Current ExecJS runtime does't support ES5. Please install node.js.
  (in C:/Users/DanielH/Desktop/RotairApp/RubyDev/rotairapp/app/assets/stylesheets/application.css.sass)
Extracted source (around line #9):
6
7
8
9
10
11
12
   </style>
    <title>Rotair</title>
     <%= stylesheet_link_tag    'application', media: 'all', 'data-turbolinks-track' => true %>
     <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
     <%= csrf_meta_tags %>
   </head>
The application css file now looks like
 @import "bootstrap-sprockets"
 @import "bootstrap"
Do I really need to install node.js?
 
     
     
     
     
    