Sunday, August 16, 2020

REACT PREREQUISITES

Before learning REACT:

  • Basic knowledge of HTML, CSS and JavaScript
  • Basic understanding of ES5/ES6/ES7
  • Basic understanding of npm i.e. Node Package Manager.
ES5/ES6/ES7 refers the ECMA Script programming language. ECMA Script is the standardized name for JavaScript.

npm is the package manager for the Node JavaScript platform. It puts modules in place so that node can find them, and manages dependency conflicts intelligently. Most commonly, it is used to publish, discover, install, and develop node programs. Run npm help to get a list of available commands.

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  = ()  ...