From the course: Angular: Creating and Hosting a Full-Stack Site

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Set up an Angular project

Set up an Angular project

From the course: Angular: Creating and Hosting a Full-Stack Site

Start my 1-month free trial

Set up an Angular project

- [Instructor] Now that we know a little bit more about Angular and some of its benefits let's get started creating an Angular front end for our own project. Now, there are a few steps to doing this, but overall it's a fairly straightforward process. The first thing we're going to do is open up a terminal and I'm using VS Code and VS Code's built in terminal here and inside that terminal, we're going to run the command npm install -g @angular/cli and hit enter and you may need to put the sudo keyword before this command if you get something about permissions like I am here and now we have what's called the Angular CLI installed globally on our computer and what this means is that we can use commands such as ng to perform Angular related tasks, such as creating new projects. So what we're going to do is change directories into the directory that we want to create our actual project into and once we're there, we're…

Contents