mazin
mazin

Reputation: 183

How to create dynamic routes in electron?

How can I create dynamic routes in electron? I am confused because electron doesn't make use of URLs if am not mistaken

Upvotes: 1

Views: 449

Answers (1)

Behrouz Riahi
Behrouz Riahi

Reputation: 1791

You have to use build in packages such as express. The command to install it is: npm install express --save (to install locally in the project directory) or npm install express -g to install it globally.

Upvotes: 2

Related Questions