UNPKG
isock
Version:
latest (2.5.11)
2.5.11
2.5.10
2.5.9
2.5.8
2.5.7
2.5.6
2.0.1
2.0.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.0
Web -> Non-Web connectionusing Socket.io
isock
/
test
/
other-tests
/
client-test.js
10 lines
•
199 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
isocks
({
server
:
"localhost"
,
port
:
24681
},
function
(
conn
){
console
.
log
(
"Ready"
); conn.
on_data
(
function
(
data
){
console
.
log
(
"got"
,data); }); conn.
send
(
"hi"
); });