From the course: Ember.js Essential Training

Unlock this course with a free trial

Join today to access over 22,400 courses taught by industry experts.

Install Node.js, npm, and Ember.js

Install Node.js, npm, and Ember.js - Ember.js Tutorial

From the course: Ember.js Essential Training

Install Node.js, npm, and Ember.js

- [Instructor] Before we install Ember.js, we need to first install our dependencies, Node.js and npm. I'm here on the ember.js guide. It provides us information on installing Ember. To begin with, we need to first install Node.js. To do so, we're going to go to nodejs.org. On the homepage, you should see a download for the LTS version for your particular operating system. We'll click Download, and we'll run the package that it provides. At this point, we now have Node.js installed. What we can do at this point is we can go over to our terminal application. We can verify that we have Node installed by running the command node -v. This should print out the current version of Node installed on your computer. At this point, we can now install npm. To do so, we run the command npm install npm -g. You may get this type of Error. You may get a permission denied, unlink message. In that case, you need to rerun the command using sudo. Now npm should be installed. We can verify npm as…

Contents