Skip to content

This is a NodeJS project. I created this project in my workshop to demonstrate CRUD operation using NodeJS and MySQL

Notifications You must be signed in to change notification settings

sayedazharsabri/NodeJS-MySQL-User-Registration

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

userRegistrationSQL

This is a NodeJS project. I created this project in my workshop to demonstrate CRUD operation using NodeJS and MySQL

Video Link: https://www.youtube.com/channel/UC0WKTSptW8OoMePQjGAubBQ?sub_confirmation=1

Playlist: NodeJS Workshops[Hindi]

Please create db "workshop"

#Use below query to create table CREATE TABLE workshop.users ( id INT(11) NOT NULL AUTO_INCREMENT , name VARCHAR(255) NOT NULL , email VARCHAR(255) NOT NULL , password VARCHAR(255) NOT NULL , remark VARCHAR(255), PRIMARY KEY(id) );

I used XAMPP PHPMyAdmin panel, you may use any other,

#After clone please run

npm install

#it help, in installing dependencies

In this project you will find

  • app.js
  • node express server
  • body parser
  • routers
  • controllers
  • model
  • util
  • databse connection details ( in proper development we naver keep configuration and credential details in file, here I just started the workshop so its for practice purpose)
  • in sql folder, there is a file with CRUD query examples

About

This is a NodeJS project. I created this project in my workshop to demonstrate CRUD operation using NodeJS and MySQL

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published