New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

toucan-js

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

toucan-js

Cloudflare Workers client for Sentry

  • 2.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
54K
decreased by-15.82%
Maintainers
1
Weekly downloads
 
Created
Source

Logo

npm version npm version npm version

toucan-js

Toucan is a reliable Sentry client for Cloudflare Workers. Follows Sentry unified API guidelines.

Motivation

In Cloudflare Workers isolate model, it is inadvisable to set or mutate global state within the event handler. The most of JavaScript SDKs use static methods that mutate global state with request metadata, breadcrumbs, tags... This is reasonable, because they were implemented for environments where concurrency does not inherently exist. However, using these SDKs in Workers leads to race conditions, such as logging breadcrumbs and request metadata of interleaved events.

Toucan was created with Workers concurrent model in mind. Being a JavaScript class instantiated per-event, this kind of race-conditions do not exist, because all request metadata are scoped to a particular fetch event.

Usage

npm install --save toucan-js

worker.ts

import Toucan from "toucan-js";

addEventListener("fetch", (event) => {
  const sentry = new Toucan({
    dsn: "dsn...",
    event,
    allowedHeaders: ["user-agent"],
    allowedSearchParams: /(.*)/,
  });

  sentry.setUser({ id: "1234" });

  event.respondWith(doStuff(event, sentry));
});

async function doStuff(event: FetchEvent, sentry: Toucan) {
  try {
    sentry.addBreadcrumb({
      message: "About to do some I/O...",
      category: "log",
    });
    // do some I/O
    return new Response("OK", {
      status: 200,
    });
  } catch (err) {
    sentry.captureException(err);
    return new Response("", {
      status: 200,
      statusText: "OK",
    });
  }
}

Features

  • addBreadcumb: Records a new breadcrumb which will be attached to future events.
  • captureException: Captures an exception event and sends it to Sentry.
  • captureMessage: Captures a message event and sends it to Sentry.
  • setRequestBody: Records incoming request's body which will be attached to future events.
  • setTag: Set key:value that will be sent as tags data with the event.
  • setTags: Set an object that will be merged sent as tags data with the event.
  • setExtra: Set key:value that will be sent as extra data with the event.
  • setExtras: Set an object that will be merged sent as extra data with the event.
  • setUser: Updates user context information for future events.

Options

OptionTypeDescription
event*FetchEventWorkers fetch event. Toucan needs this to be able to call waitUntil.
dsnstringSentry Data Source Name. If an empty DSN is passed, we treat it as valid option which signifies disabling the SDK.
environmentstringYour application's environment (production/staging/...).
releasestringRelease tag.
pkgobjectEssentially your package.json. Toucan will use it to read project name, version, dependencies, and devDependencies.
allowedHeadersstring[] | RegExpArray of allowed headers, or a regular expression used to explicitly allow headers of incoming request. If not provided, headers will not be logged.
allowedCookiesstring[] | RegExpArray of allowed cookies, or a regular expression used to explicitly allow cookies of incoming request. If not provided, cookies will not be logged.
allowedSearchParamsstring[] | RegExpArray of allowed search params, or a regular expression used to explicitly allow search params of incoming request. If not provided, search params will not be logged.
beforeSend(event: Event) => EventThis function is applied to all events before sending to Sentry. If provided, all allowlists are ignored.
transportOptions{ headers?: Record<string, string> }Custom headers to be passed to Sentry.
attachStacktracebooleanAttaches stacktraces to capture message. Default true.
rewriteFrames{ root?: string, iteratee?: (frame: StackFrame) => StackFrame }Allows you to apply a transformation to each frame of the stack trace. root path will be appended to the basename of the current frame's url. iteratee is a function that takes the frame, applies any transformation on it and returns it back.

Sensitive data

Toucan does not send PII (Personally Identifiable Information) by default.

This includes:

  • All request Headers
  • All request Cookies
  • All request search params
  • Request body

You will need to explicitly allow potentially sensitive data using:

  • allowedHeaders option (array of headers or Regex)
  • allowedCookies option (array of cookies or Regex)
  • allowedSearchParams option (array of search params or Regex)
  • toucan.setRequestBody function (stringified JSON)
  • beforeSend option (if you need more flexibility than allowedX functions)

Known issues

Source Maps

Make sure to use the absolute paths on the stack frames and Sentry's artifacts, the default ~/ will not match them properly. Any absolute path will work (i.e., /). You will need to use rewriteFrames option to add the prefix to the stack frames.

  const toucan = new Toucan({
    dsn: ...
    event,
    rewriteFrames: {
      root: '/'
    }

Changing the Sentry's artifacts URL depends on plugin you use to upload your source maps.

Example configuration using @sentry/webpack-plugin:

const SentryWebpackPlugin = require("@sentry/webpack-plugin");
const pkg = require("./package.json");

module.exports = {
  entry: "./src/index.ts",
  target: "webworker",
  devtool: "source-map",
  plugins: [
    new SentryWebpackPlugin({
      release: `${pkg.name}-${pkg.version}`,
      include: "./dist",
      urlPrefix: "/",
    }),
  ],
};

For more information, see this issue.

Keywords

FAQs

Package last updated on 03 Aug 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc