Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 555 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 555 Bytes

Simple CRUD Node.js & MySQL

This is a very basic example of CRUD in Node.js n mySQL.

Installation

*for newbies : Clone or download zip to your machine then hit this :

npm install

Configuration (database)

app.js

    host: 'localhost',
    user: 'root', // mysql username
    password : 'root', // mysql password
    port : 3306, //port mysql
    database:'nodejs'	 // mysql database name

You're gonna need to create a DB named 'nodejs'

NOTES

This repo use Express 4.x.

Open your Browser

And type: localhost:5000