node.js, socket.ioをInstallしてWebSocketを試す(Sample実行編)
前回node.jsとsocket.ioのInstallまで成功したので今回は実際にSampleを動かしてみる。
Sample sourceは~/node_modules/socket.io/example/にある。この中にあるserver.jsは8080 portを使うように書かれているので、Firewallの設定を忘れずに行っておく。
起動してみる。
# cd ~/node_modules/socket.io/example/
# node server.js
これでClientから
http://192.168.0.xxx:8080/
で接続すると次のような画面が起動するはず。
複数のBrowserでAccessするとchatっぽくなっているのを確認できる。
そのうちWordpressと連携したApplicationを開発したいと模索中。
node.jsでhttp sessionを共有するsocket.ioのテストを書く
< Related Posts >