Electron As Wrapper
- An Experiment on Wrapping up electron app with Next.js To run the electron app as a desktop application; follow the below steps, Initially, clone the repo and run the below command in root directory.
npm install && npm run dev
- It will start the nextjs development server. Now, open another terminal and run the below command.
cd electron-wrapper && npm install && npm run dev
- It will start the electron app. Now, you can see the electron app running as a wrapper for the nextjs app.