Systems | Development | Analytics | API | Testing

Building a Django Chat App with WebSockets

Django is well known for being used to develop servers for HTTP connections and requests for applications. Unfortunately, when building Django chat app or any chat app that requires the connection to remain open for a two-way connection, using an HTTP connection is inefficient. WebSockets provide a means of opening a two-way connection between the client and the server so that all users connected to the open network can get related data in real time.