I am trying to implement in-app messaging (Message center Module) for my web application which will send and receive messages between users of the system. I am using NodeJS as my backend.
I am planning to use PUSH notifications for this. With this approach, I can send push notifications for each new messages to the users. This is the simplest solution I can think of.
But there might be already a readymade service or library present for this problem as this seems very general scenario. I am already evaluating Twilio, Sendbird, Smooch, Pusher and many other libraries but the problem with them is either they are email services or Text SMS services which is not what I want. I don't want to send an SMS or Email to users.
So as of now, PUSH notifications is what I can think of, to implement simple in-app messaging service.
If there is any better way or any library available to help this, then please do suggest.
Many thanks in advance.