From the course: Angular: Animations

Unlock the full course today

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

Creating a new project

Creating a new project - Angular Tutorial

From the course: Angular: Animations

Start my 1-month free trial

Creating a new project

- [Instructor] Before we do anything else, we must create a new Angular project to animate within. We will leverage the newly installed Angular CLI to create a fresh project for the lessons that follow. The first thing we want to do is change our install directory. This will create a new project folder once we're in there. So, I'm going to change my directory to my exercise files, but you can of course use whatever you like. Now once we're actually in the directory we want to create our project in, we're going to use the command ng, which is the Angular CLI invocation, and we'll tell it we want a new project with the keyword new. And that project will be called AngularAnimation. And hit enter. Here the CLI is going through and creating the directory structure for our project and installing the packages we'll need for tooling, via node package manager. If your installation seems to be taking a while, this is normal, because it has to pull down a lot of packages from the internet. So…

Contents