Home > Blockchain >  Is is possible to make Desktop App with Nodejs along with Online connectivity
Is is possible to make Desktop App with Nodejs along with Online connectivity

Time:01-06

I am trying build an application that can run offline and online too. If the application is offline it must run with minimum functionality and if it get an internet it automatically push data online Any references or tutorials would be appreciated.

any references that can help me to achieve this.

CodePudding user response:

Yes, surely that's possible and you already mentioned the tools: node.js and electron are suitable. Most electron apps do that (whatsapp and joplin directly come to my mind).

You can look in the source of those already available apps, but it might be difficult. I would start with the tutorial of electron and search for the features as "check internet connectivity" (i.e. here on stackoverflow)

Your question is a bit to broadly stated to help in detail.

CodePudding user response:

Yes, surely that's possible. you can use the node.js and electronJs with Angular are suitable.

For Angular and NodeJs refer the below document: Build a Basic CRUD App with Angular and Node

For ElectronJs refer the below demo project:

Electron Samples

Best luck !!

  • Related