Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucasrmagalhaes/primeiro_mergulho-nextjs
Next.js: Primeiro mergulho no framework
https://github.com/lucasrmagalhaes/primeiro_mergulho-nextjs
alura nextjs react
Last synced: 1 day ago
JSON representation
Next.js: Primeiro mergulho no framework
- Host: GitHub
- URL: https://github.com/lucasrmagalhaes/primeiro_mergulho-nextjs
- Owner: lucasrmagalhaes
- License: mit
- Created: 2022-02-02T01:23:57.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-18T14:09:54.000Z (over 2 years ago)
- Last Synced: 2023-03-03T22:33:00.606Z (over 1 year ago)
- Topics: alura, nextjs, react
- Language: JavaScript
- Homepage: https://primeiro-mergulho-nextjs.vercel.app/
- Size: 3.83 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
**Next.js:** Primeiro mergulho no framework.
**getServerSideProps:** Roda a cada acesso recebido. Em modo DEV, sempre roda. A cada acesso.
**getStaticProps:** Roda somente em build time. Em modo DEV, sempre roda. A cada acesso.Comandos
```
npm install --global yarn
``````
yarn init -y
``````
yarn add next react react-dom
``````
npx gitignore node
``````
npx http-server ./out -c-1
``````
yarn add @fortawesome/fontawesome-svg-core @fortawesome/free-solid-svg-icons @fortawesome/react-fontawesome
```