15 lines
302 B
HTML
15 lines
302 B
HTML
|
<html>
|
||
|
<body>
|
||
|
<script type="text/javascript" charset="utf-8">
|
||
|
var crashReporter = require('crash-reporter');
|
||
|
crashReporter.start({
|
||
|
submitUrl: 'http://127.0.0.1:901007',
|
||
|
autoSubmit: true,
|
||
|
ignoreSystemCrashHandler: true
|
||
|
});
|
||
|
|
||
|
setImmediate(function() { process.crash(); });
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|