Away with your Errors - A Short Tutorial on Running Sentry with Deno

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • deno

    A modern runtime for JavaScript and TypeScript.

    import * as Sentry from "@sentry/node"; import * as log from "https://deno.land/[email protected]/log/mod.ts"; Sentry.init({ dsn: "", tracesSampleRate: 1.0, }); async function testEvent() { log.info("Sending test event to Sentry."); try { throw new Error("Nope."); } catch (e) { Sentry.captureException(e); await Sentry.flush(); } } await testEvent();

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts