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:
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
No comments:
Post a Comment