remote icon indicating copy to clipboard operation
remote copied to clipboard

process is not defined

Open customautosys opened this issue 3 years ago • 2 comments

Hi, I'm trying to use require('@electron/remote'), but it fails upon startup with an error, process is not defined.

vue-router.esm-bundler.js:3295 ReferenceError: process is not defined
    at Object.622 (index.js:13:1)
    at __webpack_require__ (bootstrap:19:1)
    at Object.8005 (index.js:1:1)
    at __webpack_require__ (bootstrap:19:1)
    at Module.1868 (menu_main.vue?836c:105:2)
    at __webpack_require__ (bootstrap:19:1)
    at Module.7427 (app.vue?fc9b:156:2)
    at Function.__webpack_require__ (bootstrap:19:1)

It appears that this is at the portion of the @electron/remote code which checks process.type:

"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
    if (k2 === undefined) k2 = k;
    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
    if (k2 === undefined) k2 = k;
    o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
    for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
if (process.type === 'browser')
    throw new Error(`"@electron/remote" cannot be required in the browser process. Instead require("@electron/remote/main").`);
__exportStar(require("./remote"), exports);

customautosys avatar Mar 03 '22 10:03 customautosys

Any resolution to this error?

sivanjali-pandranki avatar Jul 19 '22 11:07 sivanjali-pandranki

Seems like nodeIntegration and contextIsolation are breaking this https://stackoverflow.com/questions/66612493/process-is-not-defined-for-electrons-getting-started-app

rynoV avatar Jun 23 '23 17:06 rynoV