brunogroth / angular-course

Learning Angular with TypeScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Angular Learning

Installation pre-requisites

Node 16

Installing the Angular CLI

With the following command the angular-cli will be installed globally in your machine:

npm install -g @angular/cli

cd angular-course
npm install

To Run the Development Backend Server

In order to be able to provide realistic examples, we will need in our playground a small REST API backend server. We can start the sample application backend with the following command:

npm run server

This is a small Node REST API server.

To run the Development UI Server

To run the frontend part of our code, we will use the Angular CLI:

npm start

The application is visible at port 4200: http://localhost:4200

About

Learning Angular with TypeScript


Languages

Language:TypeScript 74.5%Language:JavaScript 9.5%Language:CSS 9.1%Language:HTML 6.9%