You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 7, 2024. It is now read-only.
Starting the WebSocket server on port 4222...
New connection opened for app key .
Exception ErrorException thrown: Undefined property: Ratchet\Server\IoConnection::$app
Unknown app id: exception ErrorException thrown: Undefined property: Ratchet\Server\IoConnection::$app.
my javascript code is
`
var conn = new WebSocket('ws://127.0.0.1:4222/my-socket');
conn.onopen = function(e) {
conn.send('Hello World!');
};
conn.onmessage = function(e) {
console.log(e.data)
}
`
please Look at it ..