adds code


Learn how to install react js in to windows and start using. Here is the three step process: Prerequisite Install NodeJS: https://youtu.be/Ve48J9TsPgE 1, Install Node.js and npm (Node Package Manager) from the official Node.js website. This will give you the tools to run React. 2. Open a command prompt or terminal and use the npx create-react-app my-app command (replace 'my-app' with your desired app name) to create a new React project. 3. Navigate to the new project directory (cd my-app) and run npm start to start the development server and view your React app in the browser.
Previous Post Next Post