-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
69 lines (58 loc) · 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* eslint-disable import/order */
/* eslint-disable import/no-extraneous-dependencies */
//Imported all the modules from express
const express = require('express');
const morgan = require('morgan');
const mongoose = require('mongoose');
const dotenv = require('dotenv');
const AppError = require('./utils/appError');
const globalErrorHandler = require('./controllers/errorController');
const rateLimit = require('express-rate-limit');
const helmet = require('helmet');
const app = express();
//Connecting mongoose
dotenv.config({ path: './config.env' });
app.use(helmet());
const limiter = rateLimit({
max: 100,
windowMs: 60 * 60 * 1000,
message: 'Too many request from this IP!!',
});
app.use('/api', limiter);
app.use(express.json({ limit: '10kb' }));
//Replacing the real password with the DATABASE PASSWORD
const DB = process.env.DATABASE.replace(
'<password>',
process.env.DATABASE_PASSWORD,
);
//This is used for avoiding the deprecation
// Copy the whole code, when creating new project
mongoose.set('strictQuery', false);
mongoose
.connect(DB, {
useNewUrlParser: true,
useUnifiedTopology: true, // Add this line for MongoDB version 3.6 and later
})
.then(() => {
// eslint-disable-next-line no-console
console.log('DB Connection Successful');
});
const tourRouter = require('./routes/tourRoutes');
const userRouter = require('./routes/userRoutes');
//1) MIDDLEWARE
app.use(morgan('dev'));
app.use(express.json());
// this is used to access the static files in the directory
app.use(express.static(`${__dirname}/public`));
app.use((req, res, next) => {
req.requestTime = new Date().toISOString();
next();
});
// Routes
app.use('/api/v1/tours', tourRouter);
app.use('/api/v1/users', userRouter);
app.all('*', (req, res, next) => {
next(new AppError(`Can't find ${req.originalUrl} on this server!`, 404));
});
app.use(globalErrorHandler);
module.exports = app;