https://github.com/asadiahmad/simple-signup-nodejs
Simple signup webpage with Nodejs for InternetEngineering Course
https://github.com/asadiahmad/simple-signup-nodejs
ajax api form jquery nodejs signup
Last synced: 6 months ago
JSON representation
Simple signup webpage with Nodejs for InternetEngineering Course
- Host: GitHub
- URL: https://github.com/asadiahmad/simple-signup-nodejs
- Owner: AsadiAhmad
- License: mit
- Created: 2024-01-28T08:46:26.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-06T09:14:46.000Z (over 1 year ago)
- Last Synced: 2024-02-07T09:25:47.688Z (over 1 year ago)
- Topics: ajax, api, form, jquery, nodejs, signup
- Language: JavaScript
- Homepage:
- Size: 263 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### 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