Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80540 views
1
var http = require('../../');
2
3
http.get({ path : '/doom' }, function (res) {
4
var div = document.getElementById('result');
5
if (!div.style) div.style = {};
6
div.style.color = 'rgb(80,80,80)';
7
8
res.on('data', function (buf) {
9
div.innerHTML += buf;
10
});
11
12
res.on('end', function () {
13
div.style.color = 'black';
14
div.innerHTML += '!';
15
});
16
});
17
18