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: 4 months 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 (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-07-01T20:24:00.000Z (about 3 years ago)
- Last Synced: 2025-01-25T19:28:44.433Z (6 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
```