Javascript

Similarly to , creating replays on web errors doesn't require any installation! Just trigger a new window with a Replayable link to fire up the desktop app.

window.onerror = () => {
  window.open("dashcam://replay/create", "_blank");
};

setTimeout(() => {
  throw new Error("Throw makes it go boom!");
}, 3000);

Demo

Last updated