قمت بالبحث وتبين لي أنه لم يعد يتم دعم nodeIntegration بعد إصدار 12 من Electrone.js، لدي الكود التالي في ملف index.js:
const electron = require("electron");constFfmpeg= require("fluent-ffmpeg");constCmdExec= require('child_process');const{
app,BrowserWindow,
ipcMain
}= electron;function createWindow(){//If I put the main window ini into here, and then call app.on("ready", createWindow()); app says//"Cant create window before ready", even though I just moved the funcion from inside ready to here..}
app.on('ready',()=>{
mainWindow =newBrowserWindow({
webPreferences:{
nodeIntegration:true}});
mainWindow.loadURL(`${__dirname}/index.html`);});
ipcMain.on("video:submit",(event, path)=>{CmdExec.exec("echo hello",(value)=>{console.log(value)});});
كيف أٌقوم بتحديث الكود ليتناسب مع أحدث إصدار من electron؟
السؤال
Abdelrahman Mostafa10
قمت بالبحث وتبين لي أنه لم يعد يتم دعم nodeIntegration بعد إصدار 12 من Electrone.js، لدي الكود التالي في ملف index.js:
كيف أٌقوم بتحديث الكود ليتناسب مع أحدث إصدار من electron؟
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.