A simple CRUD application built with Node.js, Express, and MySQL.
- View all users
- Add new user
- Edit user
- Delete user
- Node.js
- Express.js
- MySQL
- EJS (Template Engine)
- Faker.js (for generating fake data)
git clone https://github.com/VTharakaRam/sql-express-crud.gitnpm installDB_HOST=localhost
DB_USER=root
DB_NAME=delta_app
DB_PASSWORD=your_password
nodemon index.jshttp://localhost:1010
CREATE TABLE user (
id VARCHAR(50) PRIMARY KEY,
username VARCHAR(50),
email VARCHAR(50),
password VARCHAR(50)
);Tharaka Ram