You can run your Express app very easily inside your Electron app.
All you need to do is to:
- place all the files of your Express app inside a new app folder in
your_electron_app\resources\app
- reconfigure the
app.js
file - refactor some relative pathes in your Express app
You should start your Express app before opening a new BrowserWindow and the load a new mainWindow like this:
const express = require('./express'); //your express app
app.on('ready', function() {
express();
mainWindow = new BrowserWindow({
width: 1280,
height: 720,
autoHideMenuBar: true,
useContentSize: true,
resizable: false,
});
mainWindow.loadURL('http://localhost:5000/');
mainWindow.focus();
});
Pathes in Electron don't work the same way they do in your Express app.
You have to make them all from relative to absolute pathes first.
So instead of doing this:
app.set('views', '/client/views');
app.use(express.static(/client/dist/static));
you have to do this:
app.set('views', __dirname + '/client/views');
app.use(express.static(__dirname + '/client/dist/static'));
@rafayck the server has to be powered up all the time and with backup power, just like any web server! you can try it by tethering your phone and visiting the server address it should show it. if you are on linux open terminal on your Server and run

ifconfig
and look for "inet" this will show you the machines ip addressesin my case thats
http://192.168.15.103
so if i want to access my laptop from another Pc or my mobile via my wifi router, i can simply type that in my mobile browser and boom! same for an electron Appwhich you should use from a different PC/mobilePhone to access your server. on windows run
ipconfig
. we are assuming that your Desctop/Laptop is wireless, but the same can be done if you will be wired