https://github.com/leoziondev/discover-api
Working with API's
https://github.com/leoziondev/discover-api
axios express fetch-api nodejs
Last synced: 2 months ago
JSON representation
Working with API's
- Host: GitHub
- URL: https://github.com/leoziondev/discover-api
- Owner: leoziondev
- Created: 2022-07-22T01:10:12.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-22T07:16:32.000Z (almost 4 years ago)
- Last Synced: 2026-01-03T22:48:26.083Z (6 months ago)
- Topics: axios, express, fetch-api, nodejs
- Language: JavaScript
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Working with API's
__Discover Bootcamp by Rocketseat__
Learn more about:
* NodeJS
* Express
* Create server
* Routes GET|POST|PUT|DELETE
* Insomnia
* Backend API's
* Parameters in requests
* Consuming API with NodeJS
* API frontend with fetch
* API frontend with axios
### How to use this project
* `clone` this project, enter the folder and run `npm install`
* start server with `npm start`
* port api `http://localhost:3000/api`
* start index.html with LiveServer intro folders `fetch-front` or `axios-front`
### Installations used in this project
Express
```
npm i express
```
Axios
```
npm i axios
```
Cors
```
npm i cors
```
Nodemon
```
npm i nodemon -D
```