This repository has been archived on 2025-04-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
FalixNodes-Desktop-NP/electron/index.js
2025-03-22 22:04:43 -04:00

17 lines
No EOL
416 B
JavaScript
Executable file

// ElectronJS
const {app} = require('electron')
// Grab .env options
require('dotenv').config()
// Import Functions
let MainWindow = require('./mainwindow')
let CrashReporter = require('./crashreporter')
// Functions
// The Crash Reporter has been disabled for FalixNodes Desktop
// CrashReporter.Reporter()
// App
app.whenReady().then(() => {MainWindow.Create()})
app.on('window-all-closed', () => {app.quit()})