-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
49 lines (37 loc) · 1.09 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
const express = require("express")
const app = express();
const mysql = require("mysql");
const bodyParser = require("body-parser");
const cookieParser = require("cookie-parser");
const port = 3000;
//db connection
const connection = mysql.createConnection({
host: "localhost",
user: "root",
password: "naim12345",
database: "test",
port: 3306
});
connection.connect(function(err) {
console.log("Connection established");
if (err) {
console.error("error connecting: " + err.stack);
return;
}
console.log("connected as id " + connection.threadId);
});
//listen to port
app.listen(3000, () => {
console.log(`Server is running on port ${port}`);
});
//setting up the environment
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
app.use(cookieParser());
//making our db accessible to our router
app.use((req, res, next) => {
req.connection = connection;
next();
});
app.use("/customer", rotes);
module.exports = app;