Understanding the Folder Structure
Learn about the structure of an Angular application.
Folder structure of an Angular application
The node_modules directory
The node_modules directory is primarily meant for build tools. It helps install all the libraries and packages found in the dependencies and dev dependencies in the package.json file.
The src directory
This directory contains all the folders required to build our application. This is where we implement the logic for our application that consists of generating components, services, routing, ...
 Ask