Install and Create React App

When you want to start with a new programming technology we can find many difficulties when starting Our first application.

In this tutorial it is aimed at programmers who want Start exploring React.

Creating React App does not have the function of backend logic, which does is build a flow for the frontend.

Create React App

To Create React Application we must have installed in the machine Node version higher or equal at 8.10 and npm greater than or equal to version 5.6.

To create the project we can choose the following commands:

  • npm

npm init react-app my-app

  • npx

npx create-react-app my-app

  • Yarn

yarn create react-app my-app

Related Posts:

  1. CSV to Sql
  2. Sql Server Linked Server
When executing the command, a directory called my-app is created within the directory, the following structure will be generated:


To open the installation folder, execute the following command:

cd my-app
Share:

No comments:

Post a Comment

Popular Posts

Categories

Recent Posts