https://github.com/david-code-hub/django-chat-app
A django chat app that demonstrates the power or websockets with the purpose of learning and understand django channels.
https://github.com/david-code-hub/django-chat-app
bootsrap django django-channels django-chat-app
Last synced: 3 months ago
JSON representation
A django chat app that demonstrates the power or websockets with the purpose of learning and understand django channels.
- Host: GitHub
- URL: https://github.com/david-code-hub/django-chat-app
- Owner: David-code-hub
- Created: 2023-06-18T21:00:09.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-23T18:10:29.000Z (12 months ago)
- Last Synced: 2025-01-02T18:40:31.939Z (5 months ago)
- Topics: bootsrap, django, django-channels, django-chat-app
- Language: HTML
- Homepage:
- Size: 48.8 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# django-chat-app

The confusing bit was understanding that django and websockets are independant, but can work interdependantly.
> [!TIP]
> Before starting read up on the web socket documentation so that you understand more or less what is going on in regrards to the client side### Now how do these work together?🤔
Channels provide the backend functionality while web sockets handles the client/front-end side of things (meaning it’s always watching for new changes).
#### Links to docs
Web socket documentation :django channels :