I started to learn React and made a test project.
Here is a memo of how to start a React new project.
*OS: MacOS, Editor: VSCode
*Node.js, npm have been installed.
Create empty folder in Finder.
Open VSCode and Open the folder.
Change directory and open the folder in terminal.
Create a new project.
create-react-app test
"test" would be an app name.
- After finishing creating app, change directory and start an app as is an instruction in terminal.
cd appName
npm start
It'd be a success if the start page shows up.
Top comments (0)