diff --git a/lib/renderer/init.ts b/lib/renderer/init.ts index 7d53e0b79201b..2de705c3f2871 100644 --- a/lib/renderer/init.ts +++ b/lib/renderer/init.ts @@ -12,7 +12,7 @@ const Module = require('module') as NodeJS.ModuleInternal; const originalModuleLoad = Module._load; Module._load = function (request: string) { if (request === 'vm') { - console.warn('The vm module of Node.js is deprecated in the renderer process and will be removed.'); + console.warn('The vm module of Node.js is unsupported in Electron\'s renderer process due to incompatibilities with the Blink rendering engine. Crashes are likely and avoiding the module is highly recommended. This module may be removed in a future release.'); } return originalModuleLoad.apply(this, arguments as any); };