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

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

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