Day 13 : Angular directories

In previous blog we learn the installation of angular cli... Now we are going to learn the configuration files or folder structure in angular... We develop application or project in angular workspace. Workspace contains files for multiple projects or we can say that it allows us to organize our big applications into small and multiple projects. When we run > ng new project_name command , the angular cli install all necessary angular npm packages and dependencies in a root folder project_name with new workspace. By default, ng new creates a simple web application that is ready to run and can be easily modified. Workspace configuration files : The workspace contains the workspace configuration file where the configuration files act as a root level application and subfolders act as a root level application source and test files. 1) e2e : ...