An open API service indexing awesome lists of open source software.

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

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