Difference between revisions of "React 2"
Adelo Vieira (talk | contribs) |
Adelo Vieira (talk | contribs) |
||
Line 12: | Line 12: | ||
sudo apt install -y npm | sudo apt install -y npm | ||
sudo npm install -g create-react-app | sudo npm install -g create-react-app | ||
+ | sudo npm install -g create-next-app # Next.js es el primer frameworks propuesto en la documentacion | ||
node -v | node -v | ||
npm -v | npm -v | ||
create-react-app -V # Capital V | create-react-app -V # Capital V | ||
+ | create-next-app -V | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 27: | Line 29: | ||
<syntaxhighlight lang="shell"> | <syntaxhighlight lang="shell"> | ||
+ | npx create-react-app name_project # React without a framework | ||
npx create-next-app name_project # Next.js es el primer frameworks propuesto en la documentacion | npx create-next-app name_project # Next.js es el primer frameworks propuesto en la documentacion | ||
− | |||
</syntaxhighlight> | </syntaxhighlight> | ||
<br /> | <br /> |
Revision as of 20:52, 17 April 2023
https://www.udemy.com/course/react-redux/
Install React:
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
sudo npm install -g create-react-app
sudo npm install -g create-next-app # Next.js es el primer frameworks propuesto en la documentacion
node -v
npm -v
create-react-app -V # Capital V
create-next-app -V
Start a New React Project - Official documentation:
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.
Can I use React without a framework?
You can definitely use React without a framework—that’s how you’d use React for a part of your page. However, if you’re building a new app or a site fully with React, we recommend using a framework.
Here’s why... https://react.dev/learn/start-a-new-react-project
npx create-react-app name_project # React without a framework
npx create-next-app name_project # Next.js es el primer frameworks propuesto en la documentacion