/nodejs-mysql-crud

Node.js, Express & MySQL: Simple Add, Edit, Delete, View (CRUD)

Primary LanguageJavaScriptMIT LicenseMIT

Node.js, Express & MySQL: Simple Add, Edit, Delete, View (CRUD)

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

Blog: Node.js, Express & MySQL: Simple Add, Edit, Delete, View (CRUD)

Creating database and table

create database test;

use test;

CREATE TABLE users (
id int(11) NOT NULL auto_increment,
name varchar(100) NOT NULL,
age int(3) NOT NULL,
email varchar(100) NOT NULL,
PRIMARY KEY (id)
);