TEST

very simple hello world Angular 7.x tutorial. Where you create an angular app from scratch

...
Raphaël ParréePublished on

Overview

Updated 2021-10-11 for Angular 12.x (original post on 2016-06-01, then updated yearly)

We will create a simple angular application. It will be a simple "hello world"-style application so you can focus on the infrastructure and the absolute basics of the angular framework.

We will be using the result from the blog article on webpack. That result is also available from github

Starting point

If you have not completed the webpack then go ahead and clone the solution of that tutorial:

$ git clone https://github.com/edc4it/webpack-intro-tutorial hellow
$ cd hellow

Next let's install the necessary libraries using npm.

$ npm install

This puts you right at the end of the aforementioned blog article.

Then remove all the contents** of the src folder as we will be building a new application from scratch.

$ rm  src/*