Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 639 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 639 Bytes

Simple-Signup-Nodejs

install xampp and run Apache and MySQL

Create table in data base

CREATE TABLE `user` (
  `id` int(11) NOT NULL,
  `username` varchar(255) DEFAULT NULL,
  `lastname` varchar(255) DEFAULT NULL,
  `gender` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

run this command:

  1. for npm libraries
    • npm install body-parser
    • npm install express
    • npm install mysql
    • npm install path
  2. for running server
    • node app.js

Webpage