Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/protechz/axios-project
https://github.com/protechz/axios-project
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/protechz/axios-project
- Owner: ProTechZ
- Created: 2023-08-18T08:59:31.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-08-19T02:04:14.000Z (about 1 year ago)
- Last Synced: 2023-08-19T02:59:22.243Z (about 1 year ago)
- Language: TypeScript
- Size: 280 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Axios Project
---This project was a way for me to play around with the Axios.js library and use its HTTP request methods.
The request methods I have used are the GET, POST, PUT, PATCH and DELETE methods. I have also done simultaneous GET requests to demonstrate how to make more than one request at the same time.
## Home Page
![image](https://github.com/ProTechZ/Axios-Project/assets/96871120/906971c7-6464-4477-b57d-e1de05cd2879)## Example of request (GET)
![image](https://github.com/ProTechZ/Axios-Project/assets/96871120/4e98a455-8995-4fff-9625-539a2078f761)---
## HTTP methods used in this project
**GET** = *retrieve the data from a specified api*
**POST** = *create a new entry in the data from a specified api*
**PUT** = *override an entry in the data from a specified api*
**PATCH** = *update an entry in the data from a specified api*
**DELETE** = *delete an entry in the data from a specified api*