在electron.js中需要/未捕获的错误:找不到模块

时间:2019-11-06 07:40:04

标签: javascript node.js electron

我有一个Electron应用程序,并且需要类似module.exports的功能。但这似乎不受支持。

如果我尝试

index.js

const helper = require('./helper')

let importantVar = helper.getImportantVar

helper.js

function getImportantVar() {
    let foo = 'bar'
    return foo
}

module.exports = {
    getImportantVar: getImportantVar
}

我明白了

  

未捕获的错误:找不到模块“助手”

任何想法我都可以继续进行以获得相同的功能。

使用电子:6.0.12

0 个答案:

没有答案