I have a site up using Node with Express; quite a few pages, and now there is a requirement to have one of the page be done in realtime.
I looked into Express.io, but seems like a lot of extra to do all around that may effect the other parts of the site (rather not retest everything).
Any suggestions on how I can get a realtime for just one page on the whole site? As of now, I am using JQuery and leveraging the setInterval for 20 seconds to accomplish the task; if this is the only, then so be it.
Thanks