2
I have a question about Node JS
and what I could do with it. I started studying about MEAN
a few days ago and I was wondering if using this technology I could, for example, create a system of Digital Signage
, like the Xibo
or Onsee
.
A brief explanation of how these systems work, to facilitate your understanding... These systems have an administration that runs via the web and a client that runs on the operating system. In this administration is where the companies register the campaigns (videos, images, etc.) and define the times of display of the campaigns. These campaigns are displayed on the client in a loop.
I know that separately it is possible yes to do both, the administration using MEAN
and pro PC software using Node WebKit
, but the question is exactly this, if I can put the two together and make a system like this.
Yeah, you can do it. You make the client access the server from time to time, or keep a connection open via websocket, and let the server tell you when the content changes.
– bfavaretto