Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80542 views
1
var http = require('../../');
2
3
var n = 100;
4
var opts = { path : '/plusone', method : 'post' };
5
6
var req = http.request(opts, function (res) {
7
var div = document.getElementById('result');
8
div.innerHTML += n.toString() + ' + 1 = ';
9
10
res.on('data', function (buf) {
11
div.innerHTML += buf;
12
});
13
});
14
15
req.write(n);
16
req.end();
17
18