Sunday, August 23, 2020

INTRODUCTION TO ANGULAR



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

Installation:
  • Install Node.js and NPM
  • Install REACT from terminal i.e. md prompt
  1. cd <foldername>(where you want to install angular)
    1. npm install -g  @angular/cli (i.e. command line interface)
    2. ng v (for current angular version installed)
    3. ng new <projetname>
    4. cd <projectname>
    5. ng serve

angular
One Framework. Mobile and Desktop



No comments:

Post a Comment

TODO PROJECT IN REACT JS USING ARRAY HOOK, COMPONENT AND SPREAD OPERATOR

 App.jsx import   React , {  useState  }  from   "react" ; import   TodoList   from   "./TodoList" ; const   App  = ()  ...