I am working on a PDF viewer, basically, it's a mozilla pdf.js project. I cloned the repo and installed the dependencies and everything works fine, even when I try to build the project through gulp generic
, it works without any issue.
The problem started when I have installed electron
, to create a desktop version of the viewer, everything still worked even in the electron app, but I have used const { ipcRenderer } = require('electron')
to send messages to the main process, from the browser window. It works fine as well until I try to build the app using gulp generic
, it throughs an error that says Module not found: Error: Can't resolve 'fs' in '/*******/pdf.js/node_modules/electron'
. When I remove the require('electron')
from the script it builds correctly.
My Code
function webViewerLoad() {
const isElectron =
navigator.userAgent.toLowerCase().indexOf(" electron/") > -1;
if (isElectron) {
const { ipcRenderer } = require("electron");
ipcRenderer.send("electron:reload", v);
}
}
document.addEventListener("DOMContentLoaded", webViewerLoad, true);
The Error
If someone is stuck in the same situation, I have solved it in a few steps after quiet research.
First of all, I have been using
electron.js
on my client-side code and the I have been usingconst { ipcRenderer } = require("electron");
. The browser doesn't know about require if you type inrequire
in the browser console you'll get an error.To surpass this issue, you have to use
browserify
or any similar tools. I have been usinggulp.js
, in my project.Secondly, the file I have used
require('electron')
in, had multiple imports usedimport file from 'somefile.js'
, so that's whybrowserify
wasn't bundling it. All I had to require electron in a separate.js
file and bundle it.ipc_electron.js
Gulp.js