0.0.2 • Published 1 month ago

sentry-node-minidump v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

sentry-node-minidump

GitHub Actions Workflow Status

If you use native Node modules, you may want to capture minidumps to Sentry if they segfault.

This package provides a Sentry integration for the Node SDK that captures and sends minidumps when the process crashes.

import * as Sentry from '@sentry/node';
import { nodeMinidumpIntegration, causeCrash } from 'sentry-node-minidump';


Sentry.init({
  dsn: '__DSN__',
  integrations: [nodeMinidumpIntegration()],
});

setTimeout(() => {
  causeCrash();
}, 5_000);
0.0.2

1 month ago

0.0.1

1 month ago