在使用electron 测试demo的时候,
想要引入electron的app,
但是在打印的时候,却是undefined.
npx tsx test/test.ts
执行打印:
test/test.ts
import { join } from 'path'
import { app } from 'electron'
console.log(app) // undefined
1、上面引入的join方法都可以打印。为何electron的app是undefined呢?
2、还是说electron的内置只能在src/main/ 主进程目录下执行呢?
3、如果只能在主进程目录执行,那么如何进行调试主进程代码?(这里不能像我一样执行ts脚本)
使用require