-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
64 lines (53 loc) · 1.56 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
var express = require("express");
var app = express();
var cfenv = require("cfenv");
var bodyParser = require('body-parser')
// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }))
// parse application/json
app.use(bodyParser.json())
/* Endpoint to greet and add a new visitor to database.
* Send a POST request to localhost:3000/api/visitors with body
* {
* "name": "Bob"
* }
*/
app.post("/api/visitors", function (request, response) {
var userName = request.body.name;
var doc = { "name" : userName };
if(!mydb) {
console.log("No database.");
response.send(doc);
return;
}
insertOne[vendor](doc, response);
});
/**
* Endpoint to get a JSON array of all the visitors in the database
* REST API example:
* <code>
* GET http://localhost:3000/api/visitors
* </code>
*
* Response:
* [ "Bob", "Jane" ]
* @return An array of all the visitor names
*/
app.get("/api/visitors", function (request, response) {
response.json("{'names':'hello'}");
return;
});
// load local VCAP configuration and service credentials
var vcapLocal;
try {
vcapLocal = require('./vcap-local.json');
console.log("Loaded local VCAP", vcapLocal);
} catch (e) { }
const appEnvOpts = vcapLocal ? { vcap: vcapLocal} : {}
const appEnv = cfenv.getAppEnv(appEnvOpts);
//serve static file (index.html, images, css)
app.use(express.static(__dirname + '/views/HelloQuantum'));
var port = process.env.PORT || 3000
app.listen(port, function() {
console.log("To view your app, open this link in your browser: http://localhost:" + port);
});