NOTICE: This package is in alpha state and may be subject to breaking changes.
Alpha: This SDK is in alpha stage and may have breaking changes in future releases.
import * as Sentry from '@sentry/elysia';
import { Elysia } from 'elysia';
Sentry.init({
dsn: '__DSN__',
tracesSampleRate: 1.0,
});
const app = Sentry.withElysia(new Elysia())
.get('/', () => 'Hello World')
.listen(3000);