mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
22 lines
665 B
JavaScript
22 lines
665 B
JavaScript
// This is the basic initialization for the Electron MAIN process
|
|
|
|
// Make it possible to require("/lib/...") without specifying full path
|
|
require('app-module-path').addPath(__dirname);
|
|
|
|
const electronApp = require('electron').app;
|
|
const { ElectronAppWrapper } = require('./ElectronAppWrapper');
|
|
const { initBridge } = require('./bridge');
|
|
|
|
process.on('unhandledRejection', (reason, p) => {
|
|
console.error('Unhandled promise rejection', p, 'reason:', reason);
|
|
process.exit(1);
|
|
});
|
|
|
|
const wrapper = new ElectronAppWrapper(electronApp);
|
|
|
|
initBridge(wrapper);
|
|
|
|
wrapper.start().catch((error) => {
|
|
console.error('Electron App fatal error:');
|
|
console.error(error);
|
|
}); |