For my current web (reactJS) app, i need to implement a push notification system. Backend APIs are written in Python on Django Framework. So how should i implement socket, should I write in python, or may I write in node or node for the client-side and python for the server-side?
Socket for push notification
629 Views Asked by Arafat Ahmed At
1
There are 1 best solutions below
Related Questions in SOCKET.IO
- How to Socket.IO Multithreading on a Raspberry Pi?
- Error while uploading the socket io chat app
- Socket.io nodejs server .NET connection
- Getting an error in Socket.io wordle project
- User is connecting to socket.io server twice
- Using Bun+Elysia+socket.io together
- Socket.io event doesn't emitting from client itself client
- Socket.io not emitting event to node server on react native
- My socket.io web socket application is not sending data to some users
- Web RTC simple peer connection with socket.io could not be established
- socket io working fine on local environment but causes problem when run using deployed site
- rasa not responding when setting the value of session_persistence: true using socket
- open-telemetry observable gauge in js - how to access field used in observable gauge inside socket.io method
- Socket io not working during deployment on vercel
- Socket.io Deployment
Related Questions in SERVERSOCKET
- Python Client-Server Communication with Protocol
- DataInputStream not recognising input
- How to fix collect2.exe error: ld returned 1 exit status in VSCODE , for C
- Nextjs how to use websockets in a server side rendering setup
- How to authenticate socket.io with token?
- JAVA Socket Client TCP doesnt work very well
- Socket IO flutter Connection error Android
- How to resolve the issue of message reception in LAN Chat
- golang googollee/go-socket.io module pingtimeout automatically closing socket connections
- Why does the TCP client send the char array correctly but the server can't read it?
- Writing socket server for existing socket client
- How can a client located in a container communicate with a server that is not located in a container?
- Why can I not establish the Input/OutputStreams? Java ServerSocket
- How to make Encrypted Connection in Java
- I am getting a java.net.SocketException: Connection reset
Related Questions in PYTHON-SOCKETS
- Python UDP server continues processing messages after KeyboardInterrupt, leading to "Bad file descriptor" error
- Log all data passing on socket
- connect to an IP Address through python sockets
- Wrapping and integrating an existing Python `socket`-based class with `asyncio`
- Why do I need minecraft to be open for this code to run?
- Can't connect to Azure VM via a python socket
- Python UDP socket not sending all packets, or not all packets are received on the other end
- Too fast checking local ports with python socket
- Python Socket Programming: 'Bad file descriptor' Error with Multiple Client Instances
- Python socket get stuck when printing
- Python console application can't make a link using colorama
- The client is using an unsupported version of the Socket.IO or Engine.IO protocols (further occurrences of this error will be logged with level INFO)
- Open socket server with ssh
- UnicodeDecodeError: 'utf-8' codec can't decode byte 0x89 in position 5: invalid start byte
- string decryption in python cipher is not working
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Are you looking for Web push or mobile app? The term push is really synonymous with 'push notifications' meaning the client will get them even if the app / website is open or not.
If that is what you are looking for then you need to be looking at service workers and push notification servers.
If you want to simply send alerts to users on your page you can for sure use a simple websocket or long poll done in JS with a node server to emit to.