-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
45 lines (35 loc) · 1.12 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
const express = require('express');
const bodyParser = require('body-parser');
const HttpStatus = require('http-status-codes')
const cors = require('cors')
const mongoose = require('mongoose')
const user = require('./routes/user');
const signin = require('./routes/signin');
const signup = require('./routes/signup');
const house = require('./routes/house')
const search = require('./routes/search')
require('dotenv').config()
mongoose.connection.openUri(process.env.DATABAS);
mongoose.Promise = global.Promise;
mongoose.connection.once('open', () => {
console.log('mongoose connection success');
}).on('error', (error) => {
console.log('connection error', error);
})
const app = express();
app.use(cors())
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use('/api/users', user);
app.use('/api/signin', signin)
app.use('/api/signup', signup)
app.use('/api/houses', house)
app.use('/api/search', search)
// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handler
module.exports = app;