2016-02-26 17 views
6

Ben örnek sohbet socket.io çok basit olması ve sunucu tarafı kod şu şekildedir:Bir ws istemcisinden socket.io ile nasıl bağlanır?

https://github.com/js-demos/socketio-chat-demo/blob/master/index.js

var express = require('express'); 
var app = express(); 
var http = require('http').Server(app); 
var io = require('socket.io')(http); 

app.use(express.static('public')); 

io.on('connection', function(socket){ 
    socket.on('chat message', function(msg){ 
    io.emit('chat message', msg); 
    }); 
}); 

http.listen(3000, function(){ 
    console.log('listening on *:3000'); 
}); 

bağlamak için kod io soketi kullanan istemci tarafı ve iyi çalışıyor:

https://github.com/js-demos/socketio-chat-demo/blob/master/public%2Findex.html

<script> 
    var socket = io(); 
    $('form').submit(function(){ 
    socket.emit('chat message', $('#m').val()); 
    $('#m').val(''); 
    return false; 
    }); 
    socket.on('chat message', function(msg){ 
    $('#messages').append($('<li>').text(msg)); 
    }); 
</script> 

Ama t bağlamak için başka WebSocket istemcisini kullanmak isteyen o sunucu, wscat derler:

npm install -g wscat 
wscat ws://localhost:3000 

Ama bu hata ile, bağlanamıyor:

error: Error: socket hang up 

benim url ws://localhost:3000 yanlış mı? Nasıl çalıştırılır?

Not: Bu projeyi https://github.com/js-demos/socketio-chat-demo/ görmek ve Chrome Dev Araçlar

cevap

18

deneyebilirsiniz, ben gerçek WebSocket url bulundu, bu olmalıdır:

ws://localhost:3000/socket.io/?EIO=3&transport=websocket 

kullanın wscat ile bu url iyi çalışıyor