https://github.com/arikato111/learn-api-with-nodejs
express with mysql on nodejs
https://github.com/arikato111/learn-api-with-nodejs
express mysql nodejs
Last synced: 3 months ago
JSON representation
express with mysql on nodejs
- Host: GitHub
- URL: https://github.com/arikato111/learn-api-with-nodejs
- Owner: Arikato111
- License: mit
- Created: 2022-05-23T13:08:12.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-27T17:07:08.000Z (over 2 years ago)
- Last Synced: 2025-01-17T20:22:12.865Z (5 months ago)
- Topics: express, mysql, nodejs
- Language: JavaScript
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Express + MySQL
try to use MySQL with Nodejs
## Get started
- Clone this repository
- Create `.env` like `.env.example` enter your MySQL -- $!important$ --
- `npm install`
- `npm run dev`## Inside it
- express
- dotenv
- mysql
- nodemon# Database [ MySQL ]
Table name: **usr**
| Field | Type | Key | Extra |
| ----- | ---- | --- | ---- |
| id | int(10) | PRI | auto_incroment |
|email| varchar (50) | | |
|fname| varchar (50) |
| password | varchar (50) |