React JS - CodingTute https://codingtute.com/category/react-js/ Learn to code in an easier way Sun, 01 May 2022 07:59:21 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.3 https://codingtute.com/wp-content/uploads/2021/06/cropped-codingtute_favicon-32x32.png React JS - CodingTute https://codingtute.com/category/react-js/ 32 32 187525380 React Developer Roadmap https://codingtute.com/react-developer-roadmap/ Sun, 10 Oct 2021 06:43:26 +0000 https://codingtute.com/?p=2753 React Developer Roadmap will help to guide a well-structured learning path to the beginner frontend or React developers and also provides a basic overview of React ecosystem. Happy learning 🙂

The post React Developer Roadmap appeared first on CodingTute.

]]>
React Developer Roadmap will help to guide a well-structured learning path to the beginner frontend or React developers and also provides a basic overview of React ecosystem.

React Developer Roadmap
React Developer Roadmap

Follow us on Facebook, YouTube, Instagram, and Twitter for more exciting content and the latest updates.

Happy learning 🙂

The post React Developer Roadmap appeared first on CodingTute.

]]>
2753
Create a New React App https://codingtute.com/create-a-new-react-app/ Sun, 03 Jan 2021 07:46:19 +0000 https://codingtute.com/?p=2491 In this article, you will learn how to create React Js app and run it. To create a react js application make sure you installed Node.js and have an updated version of npm. Open terminal/command prompt Navigate to the path where we need to create a react application. Now run the following commands Note: npx ... Read more

The post Create a New React App appeared first on CodingTute.

]]>
In this article, you will learn how to create React Js app and run it. To create a react js application make sure you installed Node.js and have an updated version of npm.

  1. Open terminal/command prompt
  2. Navigate to the path where we need to create a react application.
  3. Now run the following commands
npx create-react-app my-app
cd my-app

Note: npx commands supports only npm version >=5.2

If you are using npm version <5.2 then you need to run the following commands

npm install -g create-react-app
create-react-app my-app
cd my-app

In the above commands my-app represents your react application name, you can use any name in place of my-app.

By running the above commands you have created a new react application. To run your react application, run the below command.

npm start

Below you can find complete video tutorial.

That’s all about creating a new react application.

The post Create a New React App appeared first on CodingTute.

]]>
2491