1

I'm developing an application in nw.js and also I do have a website. I need to do something on nw app when an action is done in the website. Can we make requests to nw app from website ? Or is there any better way to do this ?

I'm nidhin
  • 2,592
  • 6
  • 36
  • 62

1 Answers1

0

You probably need a central database that your remote nw.js apps can talk to. Something with pubsub like redis would do.

Your website would publish something and your NW.js app would subscribe to it.

chovy
  • 72,281
  • 52
  • 227
  • 295