AB
Size: a a a
AB
O
s
TS
O
s
O
VZ
s
BY
TS
TS
TS
TS
TS
DT
DT
Mm
TS
app.post('/notes', (req, res) => {
const note = { text: req.body.body, title: req.body.title };
db.collection('notes').insert(note, (err, result) => {
res.send(result.ops[0]);
});
});