Crossover Developer, #coding tweaker, Web Apps killer, techie fan. #PHP is my mother tongue. Ruby lover, Rails practitioner. For the love of front-end development, #reactjs #angular #knockout
Nothing here yet.
No blogs yet.
The first solution comes in mind when it comes to chat is "sockets". The easiest way to do so is using a read made service called "pusher" https://pusher.com/ you'll have a channel for each conversation and all the user who are interested to chat to gether will listen to that channel. You'll have multiple events and all the users will subscribe to those events. For example: user1, user2 and user 3 wants to chat together. You'll have a channel for example called "chat1" Then user1, user2 and user3 will need to listen to this channel. Then you'll have for example an event called "new_msg" all the users will subscribe to this event. when any new message is being sent this "new_msg" event will be fired to all the subscribed users will be notified and see that message.
If you consider reactjs+redux+react router then yes they're comparable to angular. For example I was working on a project that required to creat a widget that will be integrated with other websites. I did go for react and did not think about angular. I was pretty fun to implement it via react (except for the server communication part, I missed angular's $.http :/ )