Is it possible to create a custom messaging system?
● This includes the following features:
❖ Ability for Admins to message a single user, a category of users or all users.
❖ Private messages will be stored encrypted in the same server.
❖ Message history, new message alerts, and automatic email notifications.
Yes, that can all be done. The messaging is basically just writing data to the database and then showing it as needed.
brad
August 8, 2022, 10:16pm
3
You can start with these two docs and build from there as needed.
Intro
Thanks to the NodeJS and Socket.IO integration in Wappler now you can build apps which use real-time messaging, so you can send messages to all users, or only to specific users.
Messaging Basics
There are a few different options available for sending events between the server and the client - emit, broadcast or direct message.
Emit - sends to all the clients including the sender.
Broadcast - sends to all clients excluding the sender.
Direct Message - sends to specific client.
Socke…
Intro
Thanks to the WebSockets and NodeJS integration in Wappler you can build real-time apps. One example of what you can build is a real-time chat app.
Sockets provide a real-time bi-directional communication channel between a client and a server. This means that the server can push messages to clients. Whenever an event occurs, the idea is that the server will get it and push it to the concerned connected clients.
[Screenshot_2]
In this example we will show you a simple chat app, using …
1 Like