electron-crash-report-server is a server for
collecting crash reports from your Electron based
application.
-
Download the latest version, unpack it and
cd /unpacked/path -
Copy or move
config-sample.initoconfig.ini -
Run
npm installandnpm start -
Enable crash reports from your application
const crashReporter = require('crash-reporter') crashReporter.start({ submitUrl: 'http://domain.tld:1127/' })
submitUrlis the server running the crash report server -
💣 your application
Reports are available at submitUrl (or your inbox by
enabling email). Disabling web will remove the ability
to view reports online.
With web enabled the config.ini file is editable online
at http://domain.tld:1127/config. Changes made to the
config through either the web or config.ini directly
require a server restart.
crashReporter started in the main and renderer
processes.
Please create an issue if you encounter bugs or missing features.