forked from hemakshis/Basic-MERN-Stack-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
executable file
·53 lines (43 loc) · 1.53 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
42
43
44
45
46
47
48
49
50
51
52
53
const express = require('express');
const mongoose = require('mongoose');
const bodyParser = require('body-parser');
const path = require('path');
require('dotenv').config();
const articles = require('./routes/articlesRoute.js');
const users = require('./routes/usersRoute.js');
const config = require('./config.js');
const MONGODB_URI = config.mongodburi || 'mongodb://localhost/basic-mern-app';
const PORT = process.env.PORT || 5000;
mongoose.connect('mongodb://localhost:27017/basic-mern-app', {
useUnifiedTopology: true,
useNewUrlParser: true,
useCreateIndex: true
});
mongoose.connection.on('connected', () => {
console.log('Connected to MongoDB');
});
mongoose.connection.on('error', (error) => {
console.log(error);
});
let app = express();
// Body Parser Middleware
app.use(bodyParser.urlencoded({extended: false}));
app.use(bodyParser.json());
app.use(express.static(path.join(__dirname, 'client/build')));
app.use((req, res, next) => {
res.header("Access-Control-Allow-Origin", "*");
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, DELETE, GET");
return res.status(200).json({});
}
next();
});
app.use('/api/articles', articles);
app.use('/api/users', users);
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, '/client/build/index.html'));
});
app.listen(PORT, () => {
console.log('Server started on port', PORT);
});