пятница, 25 августа 2017 г.

Node.js Net Socket Client request

var net = require('net');

var options = {
    host: 'google.com',
    port: 80
}

var client = net.connect(options, function () {
    console.log('client connected');
    client.end(
        'GET / HTTP/1.0\r\n' +
        'Host: google.com\r\n' +
        '\r\n'
    );
});

client.on('data', function (chunk) {
    console.log(chunk.toString());
});


client.on('end', function () {
    console.log('client disconnected');
});

client.on('error', function (error) {
    console.log(error);
});

client.on('timeout', function () {
    console.log('Timeout');
});


Комментариев нет:

Отправить комментарий