-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
executable file
·45 lines (38 loc) · 1.16 KB
/
server.js
File metadata and controls
executable file
·45 lines (38 loc) · 1.16 KB
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
// Dependencies
const express = require('express');
const morgan = require('morgan');
const mongoose = require('mongoose');
const bodyParser = require('body-parser');
const dotenv = require('dotenv');
// Creating app
const app = express();
// Env variables
dotenv.config({verbose: true});
// connect to mongodb
mongoose.connect('mongodb://localhost/authentication', (err) => {
if (err) throw err;
});
// Dealing with cors
app.use((req, res, next) => {
res.header("Access-Control-Allow-Origin", "*"); // "*" for public access and www.example.com for specific uses
res.header(
"Access-Control-Allow-Headers",
"Origin, X-Requested-With, Content-Type, Accept, Authorization"
);
if (req.method === 'OPTIONS') {
res.header('Access-Control-Allow-Methods', 'PUT, POST, PATCH, DELETE, GET');
return res.status(200).json({});
}
next();
});
// Express middleware
app.use(morgan('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: false}));
app.use('/', require('./routes/register'));
// Declearing Port
const port = process.env.PORT || 3000;
// Starting Port
app.listen(port, () => {
console.log('App is running on port ' + port);
});