-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
69 lines (58 loc) · 1.52 KB
/
index.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
const express = require('express');
const app = express();
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const url =
process.env.MONGODB ||
'mongodb://localhost:27017/apiDB';
const port = process.env.PORT || 8080;
const noteSchema = new Schema({
text: String,
priority: String,
createdAt: Date,
updatedAt: Date,
});
noteSchema.virtual('id').get(function () {
return this._id.toHexString();
});
noteSchema.set('toJSON', {
virtuals: true,
});
const Note = mongoose.model('Note', noteSchema);
mongoose.connect(url, { useNewUrlParser: true, useUnifiedTopology: true });
var db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', function () {
console.log('MONGODB CONNECTED');
});
app.use(express.static('build'));
app.use(express.json());
app.post('/notes', function (req, res) {
const note = new Note(req.body);
note.save().then((doc) => {
res.json(doc);
});
});
app.get('/notes', function (req, res) {
Note.find({})
.sort({ updatedAt: 'desc' })
.then((docs) => {
res.json(docs);
});
});
app.put('/notes/:id', function (req, res) {
Note.findOneAndReplace({ _id: req.params.id }, req.body, {
returnDocument: 'after',
}).then((doc) => {
res.json(doc);
});
});
app.delete('/notes/:id', function (req, res) {
Note.findByIdAndDelete({ _id: req.params.id }).then((doc) => {
res.json(doc);
});
});
app.listen(port, function () {
console.log('server started at :', port);
// console.log('mongo URL',url);
});