Skip to main content

angular 8 environment configuration, setup and create a new project

Angular 8 environment and project setup

hey, everyone, this is engineer Brijesh Kumar and today we teach you angular 8 environment setup and project creation.

  1. Node installation
  2. Angular 8 CLI installation
  3. Creating an Angular 8 project
Read Also:

FLUTTER MULTIPLE IMAGE UPLOAD INTO FIRESTORE

 angular 8 environment configuration, setup and create a new project node
 angular 8 environment configuration, setup and create a new project node
1. Node Installation:-
goto Node official website and download Node package and install locally or follow the link and install. here you get various variants and os support download link choose right after install.
and check after installation completion version code type command node --version, npm --version.

2.Angular 8 CLI installation:-
goto the angular.io site and install the latest CLI version 8.3.3 or more latest or type the command in terminal npm install -g @angular/cli, after installation complete check the angular 8 CLI version type the command ng --version after that you see the images like below, that, means you install successfully angular latest version and cli.


Read Also:

FLUTTER GRIDVIEW WITH DYNAMIC STREAMBUILDER, FIRESTORE GET DATA AND BIND THE GRIDVIEW

angular 8 environment configuration, setup and create a new project CLI
angular 8 environment configuration, setup and create a new project CLI
3. Creating an Angular 8 Project:-
if you wish to create the angular project that good goto the terminal or vs code if otherwise  install vs code follows the link and type the command ng new 'your project name without space ', after that select styling with CSS or what is you want then wait few minutes project created successfully with lib NPM, run or start project type the command ng serve -o, after running you show your project Angular 8 look link this.
angular 8 environment configuration, setup and create a new project
angular 8 environment configuration, setup and create a new project
thank you.

Comments

  1. The only downside is its availability; even with VPNs, you won't in a position to|be succesful of|have the ability to} access this website. Ever since people noticed that online casinos could assist them earn money with out shifting, many people have began half in} these video games. However, with the increase of their recognition, many scams have also entered. Since these are online web sites, scamming people just isn't a big problem. On the other hand, many on line casino video games are boring; people favor 더킹카지노 half in} something entertaining that provides lots of money. While casinos scrutinize gamers in each other space of the on line casino, poker gamers get more leeway as a result of|as a outcome of} casinos don’t have as much money at stake.

    ReplyDelete

Post a Comment

Popular posts from this blog

Christmas is a Christian holiday Worshiping the birth of Jesus Christ

Hey, the guy’s Merry Christmas. As you know, every year Christmas is celebrated. So today we will talk about Christmas. Christmas is a Christian holiday Worshiping the birth of Jesus Christ Read Also: CAA and NRC final bill report and Internet service shutdown in 17 cities in u.p. About Christmas: Christmas is a Christian holiday worshiping the birth of Jesus Christ , who is believed to be the son of God. The festival of Christmas, which is celebrated on 25 December every year, The Christmas festival is celebrated on 25 December. On this day people feed each other cakes instead of sweets and greet the festival. Taking the form of Santa Claus, the person distributes toffees, gifts, etc. to the children. And children become little Santa Claus and do drama and distribution chocolate. There is also a tradition of giving sweets, chocolates, greeting cards, Christmas trees, decorative items, etc. to family members, friends, relatives and neighbors.

Flutter web file image picker and upload firebase storage

 Flutter web file image picker and upload Firebase storage In this post i am showing full coding of flutter web image picker to upload data in storage fully working code . import   'dart:html' ;     selectImageFile(context) async { try { InputElement input = FileUploadInputElement()..accept = 'image/*'; input.click(); setState(() { isLoading = true; }); input.onChange.listen((event) async { var file = input.files.first; var reader = FileReader(); reader.readAsDataUrl(file); reader.onLoadEnd.listen((event1) async { print('loading end'); var ref = storage.ref('complaints').child(basename(file.name)); firebase_storage.SettableMetadata metadata = firebase_storage.SettableMetadata( customMetadata: <String, String>{"uid": user.uid}, ); firebase_storage.UploadTask uploadTask = ref.putBlob(file, metadata); uploadTask.asStream().listen((event) { setState(() { isLoading = true; progress = event.bytesTransferred.toDouble() / e