To create appplication / project
To create project, we should use below command. ng new < project name >
ng new test
When you enter and execute command in CMD. You will ask to choose routing and what kind of css you want to use in the project.
? Would you like to add Angular routing? (y/N) : Y
CSS
> SCSS [ https://sass-lang.com/documentation/syntax#scss ]
Sass [ https://sass-lang.com/documentation/syntax#the-indented-syntax ]
Less [ http://lesscss.org
When you complete, the result will look like below,
Project Structure
When ng new test command completes its execution, the new folder created under where you enter ng new test command. The new folder will have name of the project name you entered. Inside the "test" folder, the folder structure you will have like below,
Don't worry about looking this folder structure. We can understand what we need to understand and which files are needed to start out project. In upcoming section, we will explore the angular in deep.