Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dunghenry/rest_api_express_mariadb
REST API using Express vs MariaDB
https://github.com/dunghenry/rest_api_express_mariadb
expressjs mariadb nodemon rest-api
Last synced: 20 days ago
JSON representation
REST API using Express vs MariaDB
- Host: GitHub
- URL: https://github.com/dunghenry/rest_api_express_mariadb
- Owner: dunghenry
- Created: 2022-06-30T17:17:17.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-01T20:24:00.000Z (over 2 years ago)
- Last Synced: 2024-11-26T03:19:35.057Z (3 months ago)
- Topics: expressjs, mariadb, nodemon, rest-api
- Language: JavaScript
- Homepage:
- Size: 50.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### REST API use Express.js and MariaDB
### Usage
### GET USERS (GET)
```js
http://localhost:4000/api/user
```
###
### GET USER (GET)```js
http://localhost:4000/api/user/id
```
###
### CREATE USER (POST)
```js
http://localhost:4000/api/user
```
###
### UPDATE USER (PUT)```js
http://localhost:4000/api/user/id
```
###
### DELETE USER (DELETE)```js
http://localhost:4000/api/user/id
```