summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/npm-registry-fetch/node_modules/socks/examples/connect.js
blob: 528ad4d4160017801fa4054653565946440c93a7 (plain)
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
var Socks = require('../index.js');

var options = {
    proxy: {
        ipaddress: "31.193.133.9",
        port: 1081,
        type: 5  // (4 or 5)
    },

    target: {
        host: "173.194.33.103", // (google.com)
        port: 80
    }
};

Socks.createConnection(options, function (err, socket, info) {
    if (err)
        console.log(err);
    else {
        console.log("Connected");

        socket.on('data', function (data) {
            // do something with incoming data
        });

        // Please remember that sockets need to be resumed before any data will come in.
        socket.resume();

        // We can do whatever we want with the socket now.
    }
});