mirror of
https://github.com/nodejs/node.git
synced 2024-11-22 07:37:56 +01:00
10 lines
122 B
JavaScript
10 lines
122 B
JavaScript
|
|
||
|
TCP.connect ({
|
||
|
host: "google.com",
|
||
|
port: 80,
|
||
|
connected: function () {
|
||
|
log("connected to google.com");
|
||
|
}
|
||
|
});
|
||
|
|