Hacker News new | ask | show | jobs
by mcantelon 4524 days ago
Does django-websocket-request, like django-socketio , support fallback to other transport methods if websocket isn't available in a browser?
1 comments

django-websocket-request doesn't really know anything about websockets specifically. The example I provided uses sockjs which provides websocket emulation and does upgrades to other methods if supported.
Ah, nice.