2.
概要
中学生が見たウェブソケット
ウェブソケットちょー簡単じゃんw
§
¦
§
¤
var ws = new WebSocket ( "ws://localhost:8080/echo" ) ;
ws . onmessage = f u n c t i o n ( e ) {
console . log ( e . data ) ;
};
¥
¤
var WebSocketServer = r e q u i r e ( 'ws' ) . Server
, wss
= new WebSocketServer ( { port : 8080}) ;
wss . on ( 'connection' , f u n c t i o n ( ws ) {
ws . on ( 'message' , f u n c t i o n ( message ) {
console . log ( 'received: %s' , message ) ;
}) ;
ws . send ( 'something' ) ;
}) ;
¦
¥
Daniel Perez
ウェブソケットの仕組み
2013年12月12日
2 / 16
3.
概要
中学生が見たウェブソケット
ウェブソケットちょー簡単じゃんw
§
¦
§
¤
var ws = new WebSocket ( "ws://localhost:8080/echo" ) ;
ws . onmessage = f u n c t i o n ( e ) {
console . log ( e . data ) ;
};
¥
¤
var WebSocketServer = r e q u i r e ( 'ws' ) . Server
, wss
= new WebSocketServer ( { port : 8080}) ;
wss . on ( 'connection' , f u n c t i o n ( ws ) {
ws . on ( 'message' , f u n c t i o n ( message ) {
console . log ( 'received: %s' , message ) ;
}) ;
ws . send ( 'something' ) ;
}) ;
¦
¥
できた!!(^o^)
Daniel Perez
ウェブソケットの仕組み
2013年12月12日
2 / 16
4.
概要
kwsk
The WebSocket Protocol
RFC6455
Daniel Perez
ウェブソケットの仕組み
2013年12月12日
3 / 16
Clipping is a handy way to collect and organize the most important slides from a presentation. You can keep your great finds in clipboards organized around topics.
Be the first to comment