npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@parkwebit/ase-nuxt

v0.2.0

Published

Nuxt integration for All Seeing Eye browser telemetry.

Readme

@parkwebit/ase-nuxt

Nuxt integration for All Seeing Eye browser telemetry.

Supports Nuxt 3.13+ and Nuxt 4.

npm install @parkwebit/ase-nuxt @parkwebit/ase-browser

Environment

Create a .env file in the root of your Nuxt app. The public DSN comes from ASE in the project environment API keys screen.

NUXT_PUBLIC_ASE_DSN=https://api-ase.parkwebit.nl/api/v1/ingest/browser/YOUR_PUBLIC_BROWSER_KEY
ASE_DSN=https://[email protected]/api/v1/ingest/envelope
NUXT_PUBLIC_ASE_ENABLED=true
NUXT_PUBLIC_ASE_ENVIRONMENT=production
NUXT_PUBLIC_ASE_RELEASE=1.0.0

NUXT_PUBLIC_ASE_DSN is used in the browser and must contain a public pk_ase_ key. ASE_DSN is private server-side config and must contain one sk_ase_ secret token. Do not prefix ASE_DSN with NUXT_PUBLIC_.

Use the variables in nuxt.config.ts:

export default defineNuxtConfig({
  modules: ['@parkwebit/ase-nuxt'],
  ase: {
    publicDsn: process.env.NUXT_PUBLIC_ASE_DSN,
    serverDsn: process.env.ASE_DSN,
    release: process.env.NUXT_PUBLIC_ASE_RELEASE,
    environment: process.env.NUXT_PUBLIC_ASE_ENVIRONMENT || process.env.NODE_ENV,
    enabled: process.env.NUXT_PUBLIC_ASE_ENABLED !== 'false',
    captureServerErrors: true,
    captureWarnings: true,
    captureUnhandledRejections: true,
    sendDefaultPii: false,
    sampleRate: 1,
    sessionReplay: {
      enabled: true,
      captureClicks: true,
      captureNavigation: true,
      captureScroll: true,
      captureTyping: true,
      maskInputs: true,
    },
  },
})

For local development you can either use your production ASE API URL with a development environment key, or point the DSN to your local API:

NUXT_PUBLIC_ASE_DSN=http://localhost:8000/api/v1/ingest/browser/YOUR_LOCAL_PUBLIC_BROWSER_KEY
NUXT_PUBLIC_ASE_ENVIRONMENT=local
NUXT_PUBLIC_ASE_RELEASE=local

If you are configuring the ASE dashboard app itself, use NUXT_PUBLIC_API_BASE instead:

NUXT_PUBLIC_API_BASE=https://api-ase.parkwebit.nl/api/dashboard/v1

NUXT_PUBLIC_ASE_DSN is for sending telemetry from your Nuxt application to ASE. NUXT_PUBLIC_API_BASE is only for the ASE dashboard frontend talking to the ASE API.

Server-side capture:

  • Nitro request errors;
  • SSR/server route errors reported through Nitro;
  • plugin/cache errors reported through Nitro.

Usage:

const { $ase } = useNuxtApp()

$ase.captureException(error)
$ase.captureWarning('Checkout is slow')
$ase.captureMessage('Feature used', 'info')
$ase.setUser({ id: user.id })
$ase.setTag('tenant', tenantId)
$ase.addBreadcrumb({ category: 'checkout', message: 'Payment started' })

Automatic client capture:

  • Vue global errors;
  • vue:error;
  • Nuxt app:error;
  • window.onerror;
  • unhandledrejection;
  • console.warn;
  • failed fetch breadcrumbs;
  • route/page breadcrumbs;
  • optional session behavior breadcrumbs.

Session behavior capture is not video. It sends bounded breadcrumbs such as clicks, navigation, scroll position and masked input activity. Input values are masked by default; passwords, emails, telephone fields and hidden inputs are never captured raw.