Reputation: 2696
I am required to implement a live chat system, somewhat similar to Facebook's in that it must:
I pretty much have a blank canvas for this project in terms of what OS/software to use.
Having done a bit of research it seems like there's a few options / things to think about?
What are your thoughts this? Any suggestions?
Upvotes: 1
Views: 303
Reputation: 103
This sounds like the sort of thing that the MEAN stack (MongoDB, Express.js, Angular.js, Node.js) combined with either socket.io, or lightstreamer would be good at. Lightstreamer is supposedly faster and more scalable than socket.io (and their live demo's don't make me doubt that), it also has a page in their documentation discussing PhoneGap (they handle phones that don't support WebSockets...which is useful, because, as I understand it, WebSockets aren't supported by most phones)
This isn't my area of expertise though, but it may be worth researching.
Upvotes: 2
Reputation: 826
Check out SignalR as the way of passing the messages between clients, it's the easiest way to create a chat application.
Upvotes: 2