Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrbrunelli/api-consume-next
Consumindo API em Node.js do repositório https://github.com/mrbrunelli/api-node-express utilizando a tecnologia Next.js
https://github.com/mrbrunelli/api-consume-next
api api-rest next nextjs node nodejs
Last synced: about 4 hours ago
JSON representation
Consumindo API em Node.js do repositório https://github.com/mrbrunelli/api-node-express utilizando a tecnologia Next.js
- Host: GitHub
- URL: https://github.com/mrbrunelli/api-consume-next
- Owner: mrbrunelli
- Created: 2020-04-29T17:31:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-13T19:36:45.000Z (over 2 years ago)
- Last Synced: 2023-03-07T14:48:23.430Z (over 1 year ago)
- Topics: api, api-rest, next, nextjs, node, nodejs
- Language: JavaScript
- Size: 306 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Como consumir dados da API no Next.js e React.js
## Links para outros repositórios
:anchor: [Link para repositório da API em Node.js](https://github.com/mrbrunelli/api-node-express):anchor: [Link para o respositório do React.js](https://github.com/mrbrunelli/api-consume-react)
## Lista passo a passo
* Para rodar esse repositório é só clocar, e depois de feito, dentro da pasta raíz digitar esse comando:
```bash
# Instalar dependências
npm install
# Rodar projeto em servidor
npm run dev
```## Criando do zero
1. Iniciar criação das dependências
```bash
npm init
```2. Instalar o Next.js e o React.js
```bash
npm install next react react-dom
```3. Adicionar no "scripts" do package.json
```json
"dev": "next",
"build": "next build",
"start": "next start"
```4. Iniciar servidor da aplicação
```bash
npm run dev
```5. Instalar o Axios
```bash
npm install --save axios
```