Skip to content

Creating a basic CRUD (Create, Read, Update, Delete) application with Node.js and MySQL, just download it and run by npm start command to test this application

Notifications You must be signed in to change notification settings

tutsmake/Node-js-CRUD-Operation-with-MySQL-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

A CRUD application (Create, Read, Update, Delete) using Node.js, Express, MySQL & EJS Templating Engine.

Here are the steps to use it:

  1. Download it
  2. Extract it
  3. Create Database and table
  4. Connect Node js Crud app with mysql database by editing lib/db.js
  5. Start Application Server by running npm start
  6. Open browser and type http://127.0.0.1:3000/customers

Sql Query to create Database:

CREATE TABLE customers ( id INT PRIMARY KEY AUTO_INCREMENT, name VARCHAR(255) NOT NULL, email VARCHAR(255) NOT NULL );

Read detailed guide = Node.js Express CRUD Example with MySQL

About

Creating a basic CRUD (Create, Read, Update, Delete) application with Node.js and MySQL, just download it and run by npm start command to test this application

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published