-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
48 lines (34 loc) · 1.11 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
var express = require('express');
var http = require('http');
var app = express();
// Set the folder with the static ressources (index.html, *.css, ...)
app.use(express.static('public'));
app.get('/population', function (request, response) {
// Get population on http://www.7billionandme.org/services/population.php
var options = {
host: 'www.7billionandme.org',
port: 80,
path: '/services/population.php'
};
// Get the content of the url with http.request (curl like)
var req = http.request(options, function(res) {
var data;
res.setEncoding('utf8');
res.on('data', function (chunk) {
// retrieve the data from url
data = chunk;
});
res.on('end',function() {
// Remove , from the data and cast to int
var population = parseInt(data.replace(/,/g,''),10);
var json = { 'timestamp' : new Date().getTime()/1000 , 'population' : population };
// Send json with response.json (set the correct mime-type header ...)
response.json(json);
});
});
req.on('error', function(e) {
console.log('Problem with request: ' + e.message);
});
req.end();
});
app.listen(8000);