Tutorial Intro
Let's discover Weetle in less than 5 minutes.
Getting Started
Get started by creating a react app.
npx create-react-app <your-website-name>
You can type this command into Command Prompt, Powershell, Terminal, or any other integrated terminal of your code editor.
Start your site
Run the development server:
cd <your-website-name>
npm run start
The cd command changes the directory you're working with. In order to work with your newly created react site, you'll need to navigate the terminal there.
The npm run start command builds your website locally and serves it through a development server, ready for you to view at http://localhost:3000/.