-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
35 lines (27 loc) · 851 Bytes
/
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
const express = require('express')
const bodyParser = require('body-parser')
const cors = require('cors')
const app = express()
const mongoose = require('mongoose')
const TodoRoutes = require('./api/routes/Todo')
app.use(cors())
mongoose.connect('mongodb://127.0.0.1:27018/todolist',
{useNewUrlParser:false, useUnifiedTopology:true})
app.use(bodyParser.urlencoded({extended:false}))
app.use(bodyParser.json())
// app.use((req,res,next)=>{
// res.header('Access-Control-Allow-Origin', '*')
// res.header('Access-Control-Allow-Header', '*')
// if(req.method === 'OPTIONS'){
// res.header('Access-Control-Allow-Methods', '*')
// return res.status(200).json()
// }
// next()
// })
app.use('/todo', TodoRoutes)
app.use((req,res,next)=>{
res.status(404).json({
msg:'not found'
})
})
app.listen(9000)