About Me
I'm a self taught programmer. I taught computer programming to high school students at in Cleveland, OH. I attended Le Wagon Coding Boot camp and COVID-19 hit during my big job hunt. I'm now trying my hardest to learn React so I can make a living building beautiful websites.
React Quick Start
(Note this is for Linux)
Installing
Download and install Nodejs
Download and install nvm (Use LTS)
Make sure you also install yarn.
Create React App
In your terminal navigate to the parent directory of where you want to start your new project. If you use
yarn create
skip step 4.
> npx create-react-app ‘project_name’
or> yarn create react-app ‘project_name’
navigate to the project
> cd ‘project_name’
Install SCSS (optional)
> yarn add node-sass
for routing install react-router-dom (optional, skip if you used
yarn create
in step 1)
> yarn add react-router-dom
Start the server
> yarn start
… and you're ready to go...
Top comments (0)