🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

@dash0/sdk-web

Package Overview
Dependencies
Maintainers
4
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dash0/sdk-web

Dash0's Web SDK to collect telemetry from end-users' web browsers

latest
Source
npmnpm
Version
0.19.0
Version published
Weekly downloads
37K
-2.68%
Maintainers
4
Weekly downloads
 
Created
Source

Dash0 Web SDK

This SDK enables users of Dash0's web monitoring features to instrument a website or single-page-application to capture and transmit telemetry to Dash0.

Features include:

  • Page view instrumentation
  • Navigation timing instrumentation
  • HTTP request instrumentation
  • Error tracking

Getting started

Prerequisites

To setup the web sdk you'll need the following:

  • Log in to your desired Dash0 account. You can sign up here

  • Retrieve the following information from your Dash0 account:

    • The OTLP via HTTP endpoint URL for your Dash0 region (Dash0 link)

    • The authToken with Ingesting permissions for the dataset (Dash0 link)

      • Auth tokens for client monitoring will be public as part of your website, please make sure to:
        • Use a separate token, exclusively for website monitoring; if you want to monitor multiple websites, it is best to use a dedicated token for each
        • Limit the dataset permissions on the auth token to the dataset you want to ingest Website Monitoring data with
        • Limit permissions on the auth token to Ingesting

Installation steps

  • Add the SDK to your dependencies
# npm
npm install @dash0/sdk-web
# yarn
yarn add @dash0/sdk-web
# pnpm
pnpm install @dash0/sdk-web
  • Initialize the SDK in your code: you'll need to call the init function at a convenient time in your applications lifecycle. Ideally this should happen as early as possible in the web page initialization, as most instrumentations shipped by the SDK can only observe events after init has been called.
import { init } from "@dash0/sdk-web";

init({
  serviceName: "my-website",
  endpoint: {
    // Replace this with the endpoint URL for your Dash0 region, that you retrieved earlier in "prerequisites"
    url: "{OTLP via HTTP endpoint}",
    // Replace this with your auth token you retrieved earlier in "prerequisites"
    // Ideally, you will inject the value at build time in order not commit the token to git,
    // even if its effectively public in the HTML you ship to the end user's browser
    authToken: "{authToken}",
  },
});

For more detailed instructions, refer to INSTALL.md.

Development

See DEVELOPMENT.md for instructions on the development setup, testing and release process.

Keywords

performance

FAQs

Package last updated on 15 Apr 2026

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