
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@binaryoverload/nuxt-sentry
Advanced tools
Nuxt 3 module for Sentry.
@binaryoverload/nuxt-sentry dependency to your project# Using pnpm
pnpm add -D @binaryoverload/nuxt-sentry
# Using yarn
yarn add --dev @binaryoverload/nuxt-sentry
# Using npm
npm install --save-dev @binaryoverload/nuxt-sentry
@binaryoverload/nuxt-sentry to the modules section of nuxt.config.tsexport default defineNuxtConfig({
modules: ['@binaryoverload/nuxt-sentry'],
runtimeConfig: {
public: {
sentry: {
dsn: 'YOUR_DSN',
},
},
},
})
You can also use environment variables to set the DSN using
NUXT_PUBLIC_SENTRY_DSN
That's it! You can now use Nuxt Sentry in your Nuxt app ✨
The module can be configured by providing a sentry key in the public section of the runtimeConfig or appConfig in nuxt.config.ts.
The clientSdk object is passed directly to the Sentry SDK. It consists of the properties specified in the Sentry documentation here.
The clientIntegrations object takes a key of the integration name and either a boolean value or the integration configuration. See more details here
Runtime config:
sentry: {
enabled?: boolean // Default: Enabled in production
dsn: string,
clientSdk?: SdkConfig
clientIntegrations?: ClientIntegrationConfig
}
App config:
sentry: {
clientSdk?: (app: NuxtApp) => SdkConfig | SdkConfig
clientIntegrations?: ClientIntegrationConfig
}
If you would like to enable or configure specific integrations, you can do so by providing a clientIntegrations object in either appConfig or runtimeConfig. The key should be the name of the integration and the value should be either a boolean to enable or disable the integration or an object to configure the integration.
The default integrations that are enabled are:
See the example below for adding and configuring integrations (You can also use runtimeConfig for this):
import { breadcrumbsIntegration } from "@sentry/vue"
defineNuxtConfig({
appConfig: {
sentry: {
clientIntegrations: {
Breadcrumbs: false, // Disable the default Breadcrumbs integration
Debug: {
stringify: true, // Configure the Debug integration
},
HttpClient: true, // Enable the HttpClient integration
},
},
},
})
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Release new version
npm run release
FAQs
Nuxt 3 module for Sentry
We found that @binaryoverload/nuxt-sentry demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.