|
|
| (33 intermediate revisions by the same user not shown) |
| Line 1: |
Line 1: |
| − | https://www.udemy.com/course/react-redux/
| |
| | | | |
| − | '''Install React:'''
| |
| − |
| |
| − | Install Node.js and npm:
| |
| − | <syntaxhighlight lang="shell">
| |
| − | # Add the Node.js repository:
| |
| − | curl -sL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
| |
| − |
| |
| − | sudo apt install -y nodejs
| |
| − | sudo apt install -y npm
| |
| − | sudo npm install -g create-react-app
| |
| − |
| |
| − | node -v
| |
| − | npm -v
| |
| − | create-react-app -V # Capital V
| |
| − | </syntaxhighlight>
| |
| − |
| |
| − |
| |
| − | <br />
| |
| − | '''Start a New React Project official documentation''': https://react.dev/learn/start-a-new-react-project <br />
| |
| − | <span style="color:blue">If you want to build a new app or a new website fully with React, we recommend picking one of the React-powered frameworks popular in the community.</span>
| |