-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
executable file
·41 lines (35 loc) · 1.15 KB
/
app.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
const express = require("express");
const path = require("path");
const bodyParser = require("body-parser");
const cors = require("cors");
const mongoose = require("mongoose");
const config = require('./config/database');
const app = express();
var PORT = process.env.PORT || 8080;
var contactMessage = require("./routes/contact-message");
// Connect To Database
mongoose.connect(config.database);
// On Connection
mongoose.connection.on('connected', () => {
console.log('Connected to database '+config.database);
});
// On Error
mongoose.connection.on('error', (err) => {
console.log('Database error: '+err);
});
//CORS middleware
app.use(cors());
//body-parser middleware
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
//Set Static Folder
app.use(express.static(path.join(__dirname, 'public')));
app.use(contactMessage);
//When the users request to any route, we will pass the controler to our Agular app
app.use('*', function (req, res) {
res.sendFile(path.join(__dirname, 'public/index.html'));
})
//start server
app.listen(PORT, () => {
console.log("server started on port"+PORT);
})