Learn Angular 4.0 In 10 Days - Day One

HyperText Markup Language (HTML) was invented in 1990 by Tim Berners-Lee—a famous physicist and computer scientist—while he was working at CERN, the European Organization for Nuclear Research. He was motivated to discover a better solution to share the information among researchers of the institution in a very quick and easy way. To support that, he also created the HyperText Transfer Protocol (HTTP) and its first server, giving rise to the World Wide Web (WWW).

At that time, HTML was used just to create static documents with hyperlinks, allowing the navigation between them. However, in 1993, with the creation of Common Gateway Interface (CGI), it became possible to demonstrate or develop dynamic content generated by server-side applications. One of the first languages used for this purpose was Perl, followed by other languages such as Java, PHP, Ruby, and Python. However, the technology kept moving forward, at first with technologies such as Flash and Silverlight, which provided an amazing user experience through the use of plugins. At the same time, the new versions of JavaScript, HTML, and CSS had been growing in popularity really fast, transforming the future of the Web by achieving a high level of user experience without using any proprietary plugin.
 
AngularJS is a part of this new generation of libraries and frameworks that came to support the development of more productive, flexible, maintainable, and testable web applications.

What is Angular?

Basically, Angular is an open source, JavaScript-based web application development framework. Definition of Angular as put by its official documentation is as follows,

“AngularJS is a structural framework for dynamic web applications. It lets you use HTML as your template language and lets you extend HTML's syntax to express your application components clearly and succinctly. Its data binding and dependency injection eliminate much of the code you currently have to write. And, it all happens within the browser, making it an ideal partner with any server technology.”

It was originally developed in 2009 by Misko Hevery and Adam Abrons. It is now maintained by Google. Angular JS supports JavaScript MVC (MVVM) frameworks.

The most common question before starting AngularJS is what is AngularJS? In common words, it is - 

  • A MVC Structured Framework
  • A Single Page Application Framework
  • A Client Side Templating
  • A Language where the written code can be easily tested by unit testing
Now, the above key features of AngularJS contain the main concept of innovations of Angular. The main idea behind Angular is the separation between HTML manipulation and JavaScript logic in the web pages so that the HTML page and JS logic can be developed simultaneously. It always give us faster productivity from a developer's point of view. Also, Angular provides us a structured JavaScript framework which can perform unit testing easily. 

General Features of AngularJS

The most important and remarkable general features of AngularJS are,

  1. Angular JS is a efficient framework that can help developer to develop Rich Internet Applications (RIA).
  2. Angular JS provides developer an options to write client side application using Javascript using a clean Model View Controller (MVC) mechanism.
  3. Code or Applications written in Angular JS are cross browser compatible. Angular JS framework automatically handles javascript code suitable for each browser.
  4. AngularJS is open source, completely free, and used by thousands of developers around the world. It is licensed under the Apache license version 2.0.
  5.  ngularJS is a framework to build large scale, high performance, and easy-to-maintain web applications.
Why Angular is known as a Framework

Before exploring AngularJS in depth, let us consider exactly what is AngularJS? What do we mean by a “framework,” and why would we want to use one? The dictionary definition tells us that a framework is “an essential supporting structure.” That sums up Angular very nicely, although Angular is much more than that. Angular is a large and helpful community, an ecosystem in which you can find new tools and utilities, an ingenious way of solving common problems, and, for many, a new and refreshing way of thinking about application structure and design. We could, if we wanted to make life harder for ourselves, write our own framework.

Realistically, however, for most of us, this just isn’t possible. It almost goes without saying that you need the support of some kind of framework, and that this framework almost certainly should be something other than your own undocumented (or less than well understood) ideas and thoughts on how things should be done. A good framework, such as AngularJS, is already well tested and well understood by others. Keep in mind that one day others may inherit your code, be on your team, or otherwise need to benefit from the structure and support a framework provides.

The use of frameworks isn’t uncommon; many programmers from all environment of coding rely on them. Business application developers use frameworks, such as the Microsoft Entity Framework, to ease their pain and speed up development when building database-related applications. For example, Java programmers use the LibGDX framework to help them create games. I hope I have explained the need for a framework and, more specifically, the fact that AngularJS is a great choice.

Architecture Concept

It's been a long time since the famous Model-View-Controller (MVC) pattern provided by Microsoft Corporation started to gain popularity in the software development industry and became one of the legends of the enterprise architecture design. Basically, the model represents the knowledge that the view is responsible for presenting, while the controller mediates the relationship between model and view. After a lot of discussions about which architectural pattern needed to follow by the Angular JS framework, its authors declared that from now on, AngularJS would adopt Model-View-Whatever (MVW). Regardless of the name, the most important benefit is that the framework provides a clear separation of the concerns between the application layers, providing modularity, flexibility, and testability.

In terms of concepts, a typical AngularJS application consists primarily of a view, model, and controller, but there are other important components, such as services, directives, and filters. The view, also called template, is entirely written in HTML, which provides a great opportunity to see web designers and JavaScript developers working side by side. It also takes advantage of the directives mechanism, which is a type of extension of the HTML vocabulary that brings the ability to perform programming language tasks such as iterating over an array or even evaluating an expression conditionally.

Behind the view, there is the component. At first, the component contains all the business logic implementation used by the view. However, as the application grows, it becomes really important to perform some refactoring activities, such as moving the code from the controller component to other components (for example, services) in order to keep the cohesion high.

The connection between the view and the controller is done by a shared object called model. It is located between them and is used to exchange information related to the model. The model is a simple Plain-Old-JavaScript-Object (POJO). It looks very clear and easy to understand, bringing simplicity to the development by not requiring any special syntax to be created.

Advantages of Angular JS

AngularJS, commonly referred to as Angular, is an open-source web application framework maintained by Google and a community of individual developers and corporations to address many of the challenges encountered in developing single-page applications. The library works by first reading the HTML page, which has embedded into it additional custom tag attributes. Those attributes are interpreted as directives telling Angular to bind input or output parts of the page to a model that is represented by standard JavaScript variables. The values of those JavaScript variables can be manually set within the code, or retrieved from static or dynamic JSON resources.

The main advantages of the Angular JS are,

  • No need to use observable functions; Angular analyzes the page DOM and builds the bindings based on the Angular-specific element attributes. That requires less writing, the code is cleaner, easier to understand and less error prone.
  • Angular modifies the page DOM directly instead of adding inner HTML code. That is faster.
  • Data binding occurs not on each control or value change (no change listeners) but at particular points of the JavaScript code execution. That dramatically improves performance as a single bulk Model/View update replaces hundreds of cascading data change events.
  • Quite a number of different ways to do the same things, thus accommodating to particular development styles and tasks.
  • Extended features such as dependency injection, routing, animations, view orchestration, and more.
  • Supported by IntelliJ IDEA and Visual Studio .NET IDEs.
  • Supported by Google and a great development community.
  • AngularJS is more intuitive as it makes use of HTML as a declarative language. Moreover, it is less brittle for reorganizing.
  • AngularJS is a comprehensive solution for rapid front-end development. It does not need any other plugins or frameworks. Moreover, there are a range of other features that include Restful actions, data building, dependency injection, enterprise-level testing, etc.
  • AngularJS is unit testing ready, and that is one of its most compelling advantages.
What’s New in Angular 4 In Compare Angular JS?

Angular 2.0 was of officially announced at the ng-conference in October, 2014. This version won’t be a complex major update, rather a rewrite of the entire framework and will include breaking changes. The final version of Angular 2 was introduced by Google June 2016 and Later in March 2017, Google introduced another new version of Angular JS which is called Angular 4. Angular 4 or angular is a TypeScript-based open-source front-end web application platform led by the Angular Team at Google. Angular is a complete rewrite from the same team that built AngularJS. But let me tell you that Angular is completely different from AngularJS. Let us understand the differences between Angular and AngularJS:

  • The architectural framework of an Angular application is different from AngularJS. The main building blocks for Angular are modules, components, templates, metadata, data binding, directives, services and dependency injection.
  • Angular was a complete rewrite of AngularJS.
  • Angular does not have a concept of “scope” or controllers instead, it uses a hierarchy of components as its main architectural concept.
  • Angular has a simpler expression syntax, focusing on “[ ]” for property binding, and “( )” for event binding
  • Mobile development – Desktop development is much easier when mobile performance issues are handled first. Thus, Angular first handles mobile development. The new Angular version will be focused on the development of mobile apps. The rationale is that it’s easier to handle the desktop aspect of things, once the
  • Modularity – Angular follows modularity. Similar functionalities are kept together in same modules. This gives Angular a lighter & faster core. Various modules from previous version of Angular Js has been removed from Angular’s Core for better performance.
  • Angular 2 will target ES6.0 and almost all modern browsers. Building for those browsers means that various hacks and workarounds that make angular harder to develop can be eliminated along developer to focus on code related to their business domain.
Now, let us talk about Angular 4. Angular community has introduced some significant changes to Angular 4 and therefore, the major version number has been changed from 2 to 4 (skipping 3). The reason behind directly jumping to Angular 4 and skipping the version 3 was that the router package was in version 3.x, so instead of putting everything to 3.0 and the router to 4.0, the team chose to upgrade the versions of all the ng - modules to 4.0.

The following points introduced in Angular 4.0,

  • TypeScript 2.1+ Required
    TypeScript 2.1 and 2.2 have brought really nice features you should check out. Angular 4 now supports them (and you will soon be able to activate the new strictNullChecks TypeScript option for example).

  • ModuleID Removed
    They have added a new SystemJS plugin which dynamically converts "component-relative" paths in templateUrl and styleUrls to "absolute paths" for you.
  • Ahead of Time Compilation
    View Engine: As we know, in AoT mode, Angular compiles your templates during the build, and generates JS code whereas in case of Just in Time mode, this compilation is done at runtime. Now, AoT has several advantages, like we will get to know that our templates is incorrect at build time instead of having to wait at runtime, and the application starts faster (as the code generation is already done). The downside of AoT that people were facing was that the generated JS is generally bigger than the uncompiled HTML templates. So, in the vast majority of applications, the package is in fact bigger with AoT. The team worked quite hard to implement a new View Engine, that produces less code when you use the Ahead of Time compilation. The results are quite impressive on large apps, while still conserving the same performances.

  • Animations
    Angular Team have segregated animation package from @angular/core as a separate and dedication package. Therefore, if you don’t use animations, this extra code will not end up in your production bundles.

  • Template is now ng-template
    The template tag is now deprecated, which mean you should use the ng-template tag instead. It still works though. Now Angular has its own template tag called ng-template. You will have a warning if you use the deprecated template somewhere when you update to Angular 4, so it will be easy to spot them.
What is TypeScript?

As per the previous discussion, it is clear that Angular 2 or 4 version is totally developed on the basis of Typescript where as previous version of AngularJs is depends on Javascript or JQuery library. Actually TypeScript is a super set scripting language of Javascript. So before going to discuss about typescript, first we need to kwno what is TypeScript? As per the google, the definition of typescript is

“TypeScript is a free and open-source programming language developed and maintained by Microsoft. It is a strict syntactical superset of JavaScript, and adds optional static typing to the language. Anders Hejlsberg, lead architect of C# and creator of Delphi and Turbo Pascal, has worked on the development of TypeScript.”

It encourages software developers to more declarative style of programming like interfaces and static typing, offers modules and classes, and most importantly, integrates relatively well with popular JavaScript libraries and code. It totally follows the OOPS concept. Or we can say TypeScript is a transpiler. Many software developers will get very confused about Transpiler. It may be compiler but actually it is a transpiler. If you do not know about transpiler, then learn ahead. Actually transpiler means it basically converts one language into another language.

How to Install Typescript?

So, before going to start Angular 4.0, we first need to know how to install typescript tool. For installing typescript, we first need to install NodeJs. The Latest version of NodeJS can be downloaded from the below urls,

https://nodejs.org/en/

For installing TypeScript we can download the latest version of typescript either by using command line argument using node js or if we use Visual Studio then we can directly download it from Nuget Package Manager.

Command Line for Install Typescript ,

npm install -g typescript

Or from Visual Studio

 

In the previous section, we will discuss about how to set the environment of an angular 4 projects using visual studio. Also we will develop our first program in Angular 4. Before going to start the program, lets’ discuss about the project configuration.

Angular Js 4.0 project always contains 3 major configuration files. They are,

  • tsconfig.json
  • package.json
  • system.config.js
tsconfig.json

The existence of a tsconfig.json file in a project directory indicates that the directory is the root of a TypeScript project. The tsconfig.json file specifies the root files and the compiler options required to compile the project. A project is compiled in one of the following ways

  • By invoking tsc with no input files, in which case the compiler searches for the tsconfig.json file starting in the current directory and continuing up the parent directory chain.
  • By invoking tsc with no input files and a --project (or just -p) command line option that specifies the path of a directory containing a tsconfig.json file, or a path to a valid .json file containing the configurations.
When input files are specified on the command line, tsconfig.json files are ignored. 

Sample of tsconfig.json

  1. {  
  2.   "compileOnSave": true,  
  3.   "compilerOptions": {  
  4.     "target": "es5",  
  5.     "module": "commonjs",  
  6.     "moduleResolution": "node",  
  7.     "sourceMap": true,  
  8.     "emitDecoratorMetadata": true,  
  9.     "experimentalDecorators": true,  
  10.     "removeComments": false,  
  11.     "noImplicitAny": false,     
  12.     "declaration": false,  
  13.     "typeRoots": [  
  14.       "node_modules/@types"  
  15.     ],  
  16.     "lib": [  
  17.       "es2017",  
  18.       "dom"  
  19.     ]  
  20.   }  

The "compilerOptions" property can be omitted, in which case the compiler’s defaults are used. For full list of supported Compiler Options, please visit the below links - 

https://www.typescriptlang.org/docs/handbook/tsconfig-json.html

By default all visible “@types” packages are included in your compilation. Packages in node_modules/@types of any enclosing folder are considered visible; specifically, that means packages within ./node_modules/@types/,../node_modules/@types/, ../../node_modules/@types/, and so on.

package.json

This document is all you need to know about what's required in your package.json file. It must be actual JSON, not just a JavaScript object literal. A lot of the behavior described in this document is affected by the config settings described in npm-config.

name
The most important things in your package.json are the name and version fields. Those are actually required, and your package won't install without them. The name and version together form an identifier that is assumed to be completely unique. Changes to the package should come along with changes to the version. Some rules related to name attribute

  • The name must be less than or equal to 214 characters. This includes the scope for scoped packages.
  • The name can't start with a dot or an underscore.
  • New packages must not have uppercase letters in the name.
  • The name ends up being part of a URL, an argument on the command line, and a folder name. Therefore, the name can't contain any non-URL-safe characters.

version
The most important things in your package.json are the name and version fields. Those are actually required, and your package won't install without them. The name and version together form an identifier that is assumed to be completely unique. Changes to the package should come along with changes to the version.

description
Put a description in it. It's a string. This helps people discover your package, as it's listed in npm search

keywords
Put keywords in it. It's an array of strings. This helps people discover your package as it's listed in npm search

homepage
The url to the project homepage

license
You should specify a license for your package so that people know how they are permitted to use it, and any restrictions you're placing on it.

People fields : authors, contributors
The "author" is one person. "contributors" is an array of people. A "person" is an object with a "name" field and optionally "url" and "email".

files
The optional "files" field is an array of file patterns that describes the entries to be included when your package is installed as a dependency. If the files array is omitted, everything except automatically-excluded files will be included in your publish. If you name a folder in the array, then it will also include the files inside that folder (unless they would be ignored by another rule in this section.).

directories
The CommonJS Packages spec details a few ways that you can indicate the structure of your package using a directories object. If you look at npm's package.json, you'll see that it has directories for doc, lib, and man.

system.config.js

system.config.js is the one which allows to load modules(node modules) compiled using the TypeScript compiler.map refers to the name of modules to JS file that contains the JavaScript code. It allows to configure SystemJS to load modules compiled using the TypeScript compiler. For anonymous modules (one module per JS file), it allows to map the name of modules to JS files that actually contains the module JavaScript code

Now, we are going to develop our first program in AngularJs2. Now open the Visual Studio 2015 and do the following steps. 

Click on File -> New -> Projects and in the New Project window, Search TypeScript Project as mentioned in the below image.

 

A blank project file has been created.

Click on Project -> Add File and Select file Type TypeScript JSON Configuration File for create blank tsconfig.js file and then add the below code within the file,

 
  1. {  
  2.   "compileOnSave": true,  
  3.   "compilerOptions": {  
  4.     "target": "es5",  
  5.     "module": "commonjs",  
  6.     "moduleResolution": "node",  
  7.     "sourceMap": true,  
  8.     "emitDecoratorMetadata": true,  
  9.     "experimentalDecorators": true,  
  10.     "removeComments": false,  
  11.     "noImplicitAny": false,  
  12.     "declaration": false,  
  13.     "noStrictGenericChecks": true,  
  14.     "typeRoots": [  
  15.       "node_modules/@types"  
  16.     ],  
  17.     "lib": [  
  18.       "es2017",  
  19.       "dom"  
  20.     ]  
  21.   }  
  22. }  
 Now Click on Project --> Add New Item and Select file Type NPM Configuration File for package.json file and the below code in the file.
 
 
  1.   "name": "angular4-article",  
  2.   "version": "1.0.0",  
  3.   "description": "Angular 4 article projects",  
  4.   "scripts": {  
  5.     "build": "tsc -p src/",  
  6.     "build:watch": "tsc -p src/ -w",  
  7.     "build:e2e": "tsc -p e2e/",  
  8.     "serve": "lite-server -c=bs-config.json",  
  9.     "serve:e2e": "lite-server -c=bs-config.e2e.json",  
  10.     "prestart": "npm run build",  
  11.     "start": "concurrently \"npm run build:watch\" \"npm run serve\"",  
  12.     "pree2e": "npm run build:e2e",  
  13.     "e2e": "concurrently \"npm run serve:e2e\" \"npm run protractor\" --kill-others --success first",  
  14.     "preprotractor": "webdriver-manager update",  
  15.     "protractor": "protractor protractor.config.js",  
  16.     "pretest": "npm run build",  
  17.     "test": "concurrently \"npm run build:watch\" \"karma start karma.conf.js\"",  
  18.     "pretest:once": "npm run build",  
  19.     "test:once": "karma start karma.conf.js --single-run",  
  20.     "lint": "tslint ./src/**/*.ts -t verbose"  
  21.   },  
  22.   "keywords": [],  
  23.   "author": "Debasis",  
  24.   "license": "MIT",  
  25.   "dependencies": {  
  26.     "@angular/common": "~4.3.4",  
  27.     "@angular/compiler": "~4.3.4",  
  28.     "@angular/core": "~4.3.4",  
  29.     "@angular/forms": "~4.3.4",  
  30.     "@angular/http": "~4.3.4",  
  31.     "@angular/platform-browser": "~4.3.4",  
  32.     "@angular/platform-browser-dynamic": "~4.3.4",  
  33.     "@angular/router": "~4.3.4",  
  34.     "@angular/animations": "~4.3.4",  
  35.     "angular-in-memory-web-api": "~0.3.0",  
  36.     "systemjs": "0.19.40",  
  37.     "core-js": "^2.4.1",  
  38.     "rxjs": "5.0.1",  
  39.     "zone.js": "^0.8.4"  
  40.   },  
  41.   "devDependencies": {  
  42.     "concurrently": "^3.2.0",  
  43.     "lite-server": "^2.2.2",  
  44.     "typescript": "~2.1.0",  
  45.     "canonical-path": "0.0.2",  
  46.     "tslint": "^3.15.1",  
  47.     "lodash": "^4.16.4",  
  48.     "jasmine-core": "~2.4.1",  
  49.     "karma": "^1.3.0",  
  50.     "karma-chrome-launcher": "^2.0.0",  
  51.     "karma-cli": "^1.0.1",  
  52.     "karma-jasmine": "^1.0.2",  
  53.     "karma-jasmine-html-reporter": "^0.2.2",  
  54.     "protractor": "~4.0.14",  
  55.     "rimraf": "^2.5.4",  
  56.     "@types/node": "^6.0.46",  
  57.     "@types/jasmine": "2.5.36"  
  58.   },  
  59.   "repository": {}  
  60. }  
 Click on Project -> Add New Item and Select file Type Javascript File with file name systemjs.config.js and the below code.
 
 
  1. /**  
  2.  * System configuration for Angular samples  
  3.  * Adjust as necessary for your application needs.  
  4.  */  
  5. (function (global) {  
  6.     System.config({  
  7.         paths: {  
  8.             // paths serve as alias  
  9.             'npm:': 'node_modules/'  
  10.         },  
  11.         // map tells the System loader where to look for things  
  12.         map: {  
  13.             // our app is within the app folder  
  14.             'app': '.',  
  15.   
  16.             // angular bundles  
  17.             '@angular/animations': 'npm:@angular/animations/bundles/animations.umd.js',  
  18.             '@angular/animations/browser': 'npm:@angular/animations/bundles/animations-browser.umd.js',  
  19.             '@angular/core': 'npm:@angular/core/bundles/core.umd.js',  
  20.             '@angular/common': 'npm:@angular/common/bundles/common.umd.js',  
  21.             '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',  
  22.             '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',  
  23.             '@angular/platform-browser/animations': 'npm:@angular/platform-browser/bundles/platform-browser-animations.umd.js',  
  24.             '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',  
  25.             '@angular/http': 'npm:@angular/http/bundles/http.umd.js',  
  26.             '@angular/router': 'npm:@angular/router/bundles/router.umd.js',  
  27.             '@angular/router/upgrade': 'npm:@angular/router/bundles/router-upgrade.umd.js',  
  28.             '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',  
  29.             '@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',  
  30.             '@angular/upgrade/static': 'npm:@angular/upgrade/bundles/upgrade-static.umd.js',  
  31.   
  32.             // other libraries  
  33.             'rxjs': 'npm:rxjs',  
  34.             'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js'  
  35.         },  
  36.         // packages tells the System loader how to load when no filename and/or no extension  
  37.         packages: {  
  38.             app: {  
  39.                 main: './main.js',  
  40.                 defaultExtension: 'js'  
  41.             },  
  42.             rxjs: {  
  43.                 defaultExtension: 'js'  
  44.             }  
  45.         }  
  46.     });  
  47. })(this);  
Now, open the package.json file location in the command prompt and execute the below command to load the required modules and supported files which are mentioned in the package.json file.

npm install
 
This command installs or downloads the required packages from Angular 4.0 domain as mentioned in the package.json files.
 
Now, add a TypeScript file named main.ts and the below code.
  1. import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';  
  2. import { ArticleModule } from './app.article.module';  
  3.   
  4. platformBrowserDynamic().bootstrapModule(ArticleModule);  
Here, the Import keyword is used to include the browser module into the program.

Now, add another TypeScript file named app.article.module.ts. 
  1. import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core';  
  2. import { APP_BASE_HREF } from '@angular/common';  
  3. import { BrowserModule } from '@angular/platform-browser';  
  4. import { FormsModule } from "@angular/forms";  
  5. import { HttpModule } from '@angular/http';  
  6. import { RouterModule } from '@angular/router';  
  7.   
  8. import { HomeComponent } from './SampleCode/app.component.home';  
  9.   
  10. @NgModule({  
  11.     imports: [BrowserModule, FormsModule, HttpModule],  
  12.     declarations: [HomeComponent],  
  13.     bootstrap: [HomeComponent],  
  14.     schemas: [NO_ERRORS_SCHEMA]  
  15. })  
  16.   
  17. export class ArticleModule { }  
Here, @NgModule is the module annotations. I will discuss in detail about this in the next article.

Now, add another TS file named app.component.home.ts and add the below code.
  1. import { Component } from "@angular/core";  
  2.   
  3. @Component({  
  4.     moduleId :module.id,  
  5.     selector: "home",  
  6.     template: "<strong>Welcome To Angular 4 Series</strong> "  
  7. })  
  8.   
  9. export class HomeComponent {  
  10.     constructor() {  
  11.     }  
  12. }  
Here, @Component is the component annotation which defines a component which contains a selector property. Basically selector property tells the browser which component needs to load.

Now, add an HTML file named index.html and write down the below code.
  1. <!DOCTYPE html>  
  2. <html lang="en">  
  3. <head>  
  4.     <!--<base href="/">-->  
  5.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
  6.     <meta charset="utf-8">  
  7.     <title>Angular 4 - Console</title>  
  8.     <meta name="viewport" content="width=device-width, initial-scale=1.0">  
  9.     <meta name="description" content="">  
  10.     <meta name="keywords" content="">  
  11.     <meta name="author" content="">  
  12.   
  13.     <link href="resource/css/bootstrap.min.css" rel="stylesheet">  
  14.     <link rel="stylesheet" href="resource/css/font-awesome.min.css">  
  15.     <link rel="stylesheet" href="resource/css/jquery-ui.css">  
  16.     <link href="resource/css/style.css" rel="stylesheet">  
  17.     <link rel="shortcut icon" href="img/favicon/favicon.ico">  
  18. </head>  
  19. <body>      
  20.     <div class="content">  
  21.         <home></home>  
  22.     </div>  
  23.     <footer>  
  24.         <div class="container">  
  25.             <div class="row">  
  26.                 <div class="col-md-12">  
  27.                     <p class="copy">Copyright © 2017-2018 | <a href="http://www.c-sharpcorner.com/members/debasis-saha">Debasis Saha</a> </p>  
  28.                 </div>  
  29.             </div>  
  30.         </div>  
  31.     </footer>  
  32.     <script src="resource/js/jquery.js"></script>  
  33.     <script src="resource/js/bootstrap.min.js"></script>  
  34.     <script src="resource/js/jquery-ui.min.js"></script>  
  35.     <script src="resource/js/jquery.slimscroll.min.js"></script>  
  36.     <script src="resource/js/custom.js"></script>  
  37.   
  38.     <script src="node_modules/core-js/client/shim.min.js"></script>  
  39.     <script src="node_modules/zone.js/dist/zone.js"></script>  
  40.     <script src="node_modules/systemjs/dist/system.src.js"></script>  
  41.     <script src="systemjs.config.js"></script>  
  42.     <script>  
  43.         System.import('main.js').catch(function (err) { console.error(err); });  
  44.     </script>  
  45.   
  46.     <!-- Set the base href, demo only! In your app: <base href="/"> -->  
  47.     <script>document.write('<base href="' + document.location + '" />');</script>  
  48. </body>  
  49. </html>  
Now, build and run the program and see the output. 
 


                                                                                           Read Part 2 of this article here >> 


Similar Articles