-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-backup.js
More file actions
97 lines (89 loc) · 1.84 KB
/
index-backup.js
File metadata and controls
97 lines (89 loc) · 1.84 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
const express = require('express')
const mongoose = require('mongoose')
const app = express()
const port = 3040
app.use(express.json())
//db configuration
mongoose.connect('mongodb://localhost:27017/nov-notes-app')
.then(() => {
console.log("connected to db")
})
.catch((err) => {
console.log(err)
})
//schema
const Schema = mongoose.Schema
const noteSchema = new Schema ( {
title : {
type : String,
required : true
},
body : {
type : String
}
})
//model
const Note = mongoose.model('Note',noteSchema)
//setup api
app.get('/notes',(req,res) => {
Note.find()
.then((notes) => {
res.json(notes)
})
.catch((err) => {
res.json(err)
})
})
app.post('/notes',(req,res) => {
const body = req.body
const note = new Note(body)
note.save()
.then((note) => {
res.json(note)
})
.catch((err) => {
res.json(err)
})
})
app.get('/notes/:id', (req,res) => {
const id = req.params.id
Note.findById(id)
.then((note) => {
if(note){
res.json(note)
} else {
res.json({})
}
})
.catch((err) => {
res.json(err)
})
})
app.put('/notes/:id', (req,res) => {
const id = req.params.id
const body = req.body
Note.findByIdAndUpdate(id, body, { new: true, runValidators: true})
.then((note) => {
res.json(note)
})
.catch((err) => {
res.json(err)
})
})
app.delete('/notes/:id', (req,res) => {
const id = req.params.id
Note.findByIdAndDelete(id)
.then((note) => {
if(note){
res.json(note)
} else {
res.json({})
}
})
.catch( (err) => {
res.json(err)
})
})
app.listen(port,() => {
console.log('listening on port', port)
})