Open
Description
Current Situation
We currently use standard JavaScript websockets for client/server communication. The downside of this is that they have no method of handling backpressure, which will become a realistic issue once we begin serializing file content and other form data.
Reference
Proposed Actions
Handle backpressure elegantly, such as through websocket stream libraries.
This ideally should be invisible from a user's perspective, so we want to automate this through template tags when possible.
Reference