Electron As Wrapper

  1. 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.
  2. npm install && npm run dev
  3. It will start the nextjs development server. Now, open another terminal and run the below command.
  4. cd electron-wrapper && npm install && npm run dev
  5. It will start the electron app. Now, you can see the electron app running as a wrapper for the nextjs app.