All Projects → ly3too → django-channels-with-socket.io

ly3too / django-channels-with-socket.io

Licence: other
django channels with socket.io

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to django-channels-with-socket.io

Socket.io Python Emitter
Python implementation of socket.io-emitter
Stars: ✭ 67 (+191.3%)
Mutual labels:  socket-io, socketio
VPSocketIO
socket.io client objective-c
Stars: ✭ 18 (-21.74%)
Mutual labels:  socket-io, socketio
Aaronvandenberg.nl
⚛️ Web Developers portfolio build with Gatsby.js & React.js
Stars: ✭ 98 (+326.09%)
Mutual labels:  socket-io, socketio
Go Socket.io
A Socket.IO backend implementation written in Go
Stars: ✭ 409 (+1678.26%)
Mutual labels:  socket-io, socketio
SocketIOSharp
C# implementation of Socket.IO protocol revision 4 client and server.
Stars: ✭ 101 (+339.13%)
Mutual labels:  socket-io, socketio
Bizsocket
异步socket,对一些业务场景做了支持
Stars: ✭ 469 (+1939.13%)
Mutual labels:  socket-io, socketio
Socketio Wildcard
socket.io v2.x with a wildcard event
Stars: ✭ 185 (+704.35%)
Mutual labels:  socket-io, socketio
Phpsocket.io
A server side alternative implementation of socket.io in PHP based on workerman.
Stars: ✭ 2,026 (+8708.7%)
Mutual labels:  socket-io, socketio
realtime-geolocation
Geolocation tracking app with Node.js, Socket.io, & AngularJS
Stars: ✭ 29 (+26.09%)
Mutual labels:  socket-io, socketio
Node Decorators
node-decorators
Stars: ✭ 230 (+900%)
Mutual labels:  socket-io, socketio
boltly
Boltly: The complete Socket.io test client!
Stars: ✭ 16 (-30.43%)
Mutual labels:  socket-io, socketio
pdfdraw
Nextcloud app to annotate PDF documents
Stars: ✭ 32 (+39.13%)
Mutual labels:  socket-io, socketio
bubbly
Full stack chat application created w/ Next.js, Socket.IO, Express, React and TypeScript
Stars: ✭ 24 (+4.35%)
Mutual labels:  socket-io, socketio
gobang
五子棋小游戏canvas socket.io
Stars: ✭ 38 (+65.22%)
Mutual labels:  socket-io, socketio
SocketIOUnity
A Wrapper for socket.io-client-csharp to work with Unity.
Stars: ✭ 69 (+200%)
Mutual labels:  socket-io, socketio
Python Socketio
Python Socket.IO server and client
Stars: ✭ 2,655 (+11443.48%)
Mutual labels:  socket-io, socketio
socket.io-client-core
High-Performance Socket.IO client in C#
Stars: ✭ 70 (+204.35%)
Mutual labels:  socket-io, socketio
titanium-socketio
Use the native Socket.io SDK's with Axway Titanium.
Stars: ✭ 25 (+8.7%)
Mutual labels:  socket-io, socketio
UI
适用于 MCSManager 的 Web UI 界面
Stars: ✭ 93 (+304.35%)
Mutual labels:  socket-io
CONNECT
A Socket.io / React JS real time multiplayer flash card game for learning.
Stars: ✭ 18 (-21.74%)
Mutual labels:  socket-io

Django channels with socket.io demo

Django channels' ProtocolTypeRouter accept any asgi application, socketio can be setup as a asgi app. This makes it possible to use socketio with django channels

setup

cannot use manage.py runserver to serve it

you need to create asgi.py and setup asgi app entry point.

then you go: daphne django_channel.asgi:application

configure socket.io client to use websocket as transport layer protocol

because I only route websocket to consumers, socketio client must use websocket to communicate with the server, other http traffic is routed the traditional way

the chat socketio demo was taken from here

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].