blob: 115b0bf77f851938269b3af317ca9c722b55b556 (
plain)
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
|
"use strict";
// handling imports
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
const PORT = 7777;
// set the public folder to public acess and added a body parser
app.use(express.static('public'));
app.use(bodyParser.urlencoded({extended: true}));
// set the view engine to ejs
app.set('view engine', 'ejs');
// routes management
const home = require("./routes/home");
const info = require("./routes/info");
const search = require("./routes/search");
const visit = require("./routes/visit");
app.get('/', home);
app.get('/info', info);
app.get('/visit', visit);
app.post('/search', search);
// app start
app.listen(PORT);
|