Skip to content

chiraggmodi/single-crud-nodejs-mysql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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