-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
53 lines (45 loc) · 1.31 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
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("I received a GET request");
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, doc){
res.json(doc);
});
});
app.delete('/contactlist/:id', function(req,res){
var id = req.params.id;
console.log(id);
db.contactlist.remove({_id: mongojs.ObjectId(id)}, function(err,doc){
res.json(doc);
});
});
app.get('/contactlist/:id', function(req,res){
var id = req.params.id;
console.log(id);
db.contactlist.findOne({_id: mongojs.ObjectId(id)}, function(err, doc){
res.json(doc);
});
});
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,doc){
res.json(doc);
});
});
app.listen(3000);
console.log("Server running on port 3000!");