trinath
trinath

Reputation: 521

Is it possible to build a electron desktop app without node server?

I want to develop a desktop app with electron without using nodejs (i don't want to use any server, a plain desktop app) to access the local files in the machine.

Upvotes: 1

Views: 3273

Answers (1)

robertklep
robertklep

Reputation: 203514

Node.js is a Javascript runtime, using it doesn't mean you need to use it to run a server of any kind. In fact, Electron uses Node.js internally to implement "lower level operating system interactions", like the ability to read local files.

Upvotes: 3

Related Questions