Angular

Angular is a platform and framework for building single-page client applications using HTML and TypeScript. It implements core and optional functionality as a set of TypeScript libraries that you can import into your applications.

Create Angular App

Angular

Create a new Angular application

ng new my-app

Angular Development Server

Angular

Start the Angular development server

ng serve

Angular Build

Angular

Build the Angular application for production

ng build --prod

Angular Generate Component

Angular

Generate a new component

ng generate component my-component

Angular Generate Service

Angular

Generate a new service

ng generate service my-service

Angular Generate Module

Angular

Generate a new module

ng generate module my-module

Angular Generate Pipe

Angular

Generate a new pipe

ng generate pipe my-pipe

Angular Generate Directive

Angular

Generate a new directive

ng generate directive my-directive

Angular Test

Angular

Run unit tests

ng test

Angular Lint

Angular

Run linting

ng lint

Angular Update

Angular

Update Angular packages

ng update

Angular E2E Test

Angular

Run end-to-end tests

ng e2e