
- Angular Tutorial
- Angular - Home
- Angular - Overview
- Angular - Features
- Angular - Advantages & Disadvantages
- Angular Basics
- Angular - Environment setup
- Angular - First Application
- Angular - MVC Architecture
- Angular Components
- Angular - Components
- Angular - Component Lifecycle
- Angular - View Encapsulation
- Angular - Component Interaction
- Angular - Component Styles
- Angular - Nested Components
- Angular - Content projection
- Angular - Dynamic components
- Angular - Elements
- Angular Templates
- Angular - Templates
- Angular - Template statements
- Angular - Template Variables
- Angular - SVG as Templates
- Angular Binding
- Angular - Data Binding
- Angular - Interpolation
- Angular - Event Binding
- Angular - Property Binding
- Angular - Attribute Binding
- Angular - Class Binding
- Angular - Style Binding
- Angular - Two-way Binding
- Angular Directives
- Angular - Directives
- Angular - Attribute Directives
- Angular - Structural Directives
- Angular - Custom Directives
- Angular Pipes
- Angular - Pipes
- Angular - Built-in Pipes
- Angular - Custom Pipes
- Angular Forms
- Angular - Forms
- Angular - Template Driven Forms
- Angular - Reactive Forms
- Angular - Form Validation
- Angular - Dynamic Forms
- Angular Dependency Injection
- Angular - Dependency Injection
- Angular - Injectable Service
- Angular Routing
- Angular - Routing
- Angular - Navigation
- Angular - Routing in SPA
- Angular - Custom Route Matches
- Angular - Router Reference
- Angular HTTP Client programming
- Angular - Services
- Angular - HTTP Client
- Angular - Request
- Angular - Response
- Angular - GET
- Angular - POST
- Angular - PUT
- Angular - DELETE
- Angular - JSONP
- Angular - CRUD Operations Using HTTP
- Angular Modules
- Angular - Introduction to Modules
- Angular - Root Module
- Angular - Feature Module
- Angular - Shared Module
- Angular - Routing Module
- Angular - NgModules
- Angular Animation
- Angular - Animations
- Angular Service Workers & PWA
- Angular - Service Workers & PWA
- Angular Testing
- Angular - Testing Overview
- Angular Design Patterns
- Angular - Design Patterns
- Angular - Lazy Loading
- Angular - Singleton Pattern
- Angular - Observer Pattern
- Angular Libraries
- Angular - Libraries
- Angular - Angular Material
- Angular - PrimeNG
- Angular - RxJS
- Angular Advanced
- Angular - Signals
- Angular - Authentication & Authorization
- Angular - Internationalization
- Angular - Accessibility
- Angular - Web Workers
- Angular - Server Side Rendering
- Angular - Ivy Compiler
- Angular - Building with Bazel
- Angular - Backward Compatibility
- Angular - Reactive Programming
- Angular Tools
- Angular - CLI
- Angular Material UI Elements
- Angular - Paginator
- Angular - Datepicker
- Angular - Select Drop-down
- Angular Miscellaneous
- Angular - Adding Bootstrap
- Angular - Flex Layout
- Angular - Third Party Controls
- Angular - Configuration
- Angular - Displaying Data
- Angular - Displaying JSON Data
- Angular - Decorators & Metadata
- Angular - Basic Example
- Angular - Error Handling
- Angular - Testing & Building a Project
- Angular - Lifecycle Hooks
- Angular - User Input
- Angular - What's New?
- Angular Useful Resources
- Angular - Quick Guide
- Angular - Useful Resources
- Angular - Discussion
Angular - First Application
In this tutorial, we will learn how to create and run our first Angular application on a local machine. We also analyze its project structure. Before we proceed, please ensure that you have set up an Angular development environment on your system. You can refer to our Angular Environment Setup tutorial, where we explain the installation of all the necessary tools required for the Angular development process.
Steps to Create and Run First Angular Application
The following steps are necessary to create and run each Angular application successfully −
Install Angular CLI
Create Angular Application
Start Angular Application
Install Angular CLI
Angular CLI is a command line interface used to maintain Angular applications directly from a command shell. It uses Node and node package manager to install and run JavaScript tools outside the browser.
Use the following command to install Angular CLI −
npm install -g @angular/cli
Let us check whether the Angular is installed in our system and the version of the installed Angular using below command −
ng --version
Here,
ng is the prefix that stands for Angular. It is used to denote Angular-specific directives, components, and modules. It runs in NodeJS environment.
The result will show the details of the Angular version −
Angular CLI: 18.2.11 Node: 22.11.0 Package Manager: npm 10.9.0 OS: win32 x64 Angular: ... Package Version ------------------------------------------------------ @angular-devkit/architect 0.1802.11 (cli-only) @angular-devkit/core 18.2.11 (cli-only) @angular-devkit/schematics 18.2.11 (cli-only) @schematics/angular 18.2.11 (cli-only)
So, Angular is installed in our system and the version is 18.2.11.
Create Angular Application
To create a new Angular application ng new command is used.
ng new application-name
Let us create an Angular application to check our day to day expenses. Give it a name expense-manager. But, first navigate to the folder where you want to create an Angular application using the cd command. Then, use below command to create the new application −
cd /path/to/workspace ng new expense-manager
When you run the above command a new folder with the name expense-manager will be created in the current working directory. Inside this folder, the Angular CLI install all the necessary Angular npm packages and other dependencies.
You will be asked some basic question in order to create new application like type of style sheet, enable SSR and SSG. For style sheet, choose CSS and do not enable SSR and SSG for the time being.
Once the basic questions are answered, a new Angular application will be created under expense-manager folder. Let us move into the our newly created application folder −
cd expense-manager
The initial structure of the application will be −

The important directories of the application are −
src: This directory contains all the source code for your Angular application, including components, services, modules, templates, styles, and assets.
app: It is a sub-folder of src directory. It contains component files.
angular.json: This is the workspace configuration file which means it defines the configuration options for the entire Angular workspace.
node_modules: This directory contains all the npm packages installed as dependencies for the project.
package.json: This file contains metadata about the project and lists the npm dependencies required for the project.
tsconfig.json: It is the TypeScript configuration file that specifies the compiler options for TypeScript files.
public: This file is used to store asset files.
Start Angular Application
To start an Angular application, we use the ng serve CLI command.
ng serve
Here, the above sub command compile and run the Angular application using a local development web server. It will start a development web server and serves the application under port, 4200.
Let us fire up a browser and open http://localhost:4200. The browser will show the application as shown below −

We will change the application and learn how to code an Angular application in the upcoming chapters.