Skip to main content

ReactJS Installation

If we want to run ReactJS, we need to install the latest version of node

NodeJS Installation

  • nodejs is a javascript runtime, what run the javascript code without using a browswer.
  • nodejs developed by - google
  • Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.
  • Firefox - Spider Monkey JS Engine
  • Edge - Chakra JS Engine

Download NodeJS - https://nodejs.org/en/download/current

Let's Create React App

  • cmd command - npx create-react-app appname
  • move to app folder cd appname
  • start the app npm start

npx - is stands for node package execute, help us to execute node package with installation

create-react-app is a command line tool that help use to create a react app