forked from eformat/bluegreen
-
Notifications
You must be signed in to change notification settings - Fork 56
/
requestHandlers.js
38 lines (33 loc) · 1.05 KB
/
requestHandlers.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
/**
* Created by mike.
*/
function start(response) {
console.log("Request handler 'start' was called.");
var body = '<html>'+
'<head>'+
'<meta http-equiv="Content-Type" '+
'content="text/html; charset=UTF-8" />'+
'</head>'+
'<body>version 1'+
'<canvas id="myCanvas" width="578" height="200"></canvas>'+
'<script>'+
'var canvas = document.getElementById("myCanvas");'+
'var context = canvas.getContext("2d");'+
'var centerX = canvas.width / 2;'+
'var centerY = canvas.height / 2;'+
'var radius = 70;'+
'context.beginPath();'+
'context.arc(centerX, centerY, radius, 0, 2 * Math.PI, false);'+
'context.fillStyle = "blue";'+
'context.fill();'+
'context.lineWidth = 5;'+
'context.strokeStyle = "#003300";'+
'context.stroke();'+
'</script>'+
'</body>'+
'</html>';
response.writeHead(200, {"Content-Type": "text/html"});
response.write(body);
response.end();
}
exports.start = start;