An open API service indexing awesome lists of open source software.

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

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
```