Reputation: 183
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
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