Difference between revisions of "React 2"

From Sinfronteras
Jump to: navigation, search
Line 4: Line 4:
  
 
Install Node.js and npm:
 
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 -
  
# Add the Node.js repository:
+
sudo apt install -y nodejs
curl -sL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
+
sudo apt install -y npm
  
sudo apt install -y nodejs
+
node -v
 +
npm -v
 +
</syntaxhighlight>
  
sudo apt install -y npm
 
  
node -v
+
<br />
npm -v
+
'''Start a New React Project official documentation''': https://react.dev/learn/start-a-new-react-project

Revision as of 19:10, 17 April 2023

https://www.udemy.com/course/react-redux/

Install Recat:

Install Node.js and npm:

 
# 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

node -v
npm -v



Start a New React Project official documentation: https://react.dev/learn/start-a-new-react-project