-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
59 lines (51 loc) · 1.37 KB
/
server.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
var express = require('express');
var app = express();
var mongojs = require('mongojs');
var db = mongojs('contactlist', ['contactlist'])
var bodyParser = require('body-parser');
app.use(express.static(__dirname + "/public"));
app.use(bodyParser.json());
app.get('/contactlist', function (req, res) {
console.log('hiyoo')
db.contactlist.find( function (err, docs) {
console.log(docs);
res.json(docs);
});
});
app.post('/contactlist', function (req, res) {
console.log(req.body);
db.contactlist.insert(req.body, function (err, docs) {
res.json(docs);
});
});
app.delete('/contactlist/:id', function (req, res) {
var id = req.params.id;
console.log(id);
db.contactlist.remove({ _id: mongojs.ObjectId(id) }, function (err, docs) {
res.json(docs);
});
});
app.get('/contactlist/:id', function (req, res) {
var id = req.params.id;
console.log(id);
db.contactlist.findOne({ _id: mongojs.ObjectId(id) }, function (err, docs) {
res.json(docs);
});
});
app.put('/contactlist/:id', function (req, res) {
var id = req.params.id;
console.log(req.body.name);
db.contactlist.findAndModify(
{
query: {_id: mongojs.ObjectId(id)},
update: { $set: {name: req.body.name, email: req.body.email, number: req.body.number } },
new: true
},
function (err, docs) {
res.json(docs);
}
);
});
app.listen(3000, function () {
console.log("localhost:3000")
});