-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.js
66 lines (56 loc) · 1.58 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
60
61
62
63
64
65
66
(function () {
'use strict';
var express = require('express'),
bodyParser = require('body-parser'),
mongoose = require('mongoose'),
http = require('http'),
cors = require('cors');
var app = express();
app.use(bodyParser.urlencoded({extended: true}));
app.use(bodyParser.json());
app.use(cors());
app.set('port', 3000);
var dbUrl = 'mongodb://localhost/http-angular';
mongoose.connect(dbUrl);
var db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error...'));
db.once('open', function callback() {
console.log('db connection successfully established');
});
// var UserSchema = mongoose.Schema
var UserSchema = mongoose.Schema({
gender: String,
name: {
title: String,
first: String,
last: String
},
email: String
username: String,
dob: String,
phone: String,
picture: {
large: String,
medium: String,
thumbnail: String,
},
});
// var User = mongoose.model
// var data = [
// {"firstName": "Jeff", "lastName": "Winger"},
// {"firstName": "Troy", "lastName": "Barnes"},
// {"firstName": "Britta", "lastName": "Perry"},
// {"firstName": "Abed", "lastName": "Nadir"}
// ];
app.get('/users', function (req, res) {
// User.find({}).exec()
res.status(200).json(data);
});
app.post('/users', function (req, res) {
data.push(req.body);
res.status(200).send(data);
});
http.createServer(app).listen(app.get('port'), function () {
console.log('Express server listening on port ' + app.get('port'));
});
})();