学习 Nuxt,包含 100+ 个技巧!

logrocket
nuxt-logrocket

用于 Nuxt 的 LogRocket 模块,可帮助你修复错误并了解用户行为。

nuxt-logrocket

nuxt-logrocket

npm (scoped with tag)npmCircleCICodecovjs-standard-style

用于 Nuxt.js 的 LogRocket 模块

📖 发行说明

特性

  • Nuxt 3 & Nuxt Bridge
  • 支持 Pinia 集成
  • 能够在开发模式下运行

安装

  • 使用 yarn 或 npm 将 nuxt-logrocket 依赖项添加到你的项目中
yarn add nuxt-logrocket

或者

npm install nuxt-logrocket --save
  • nuxt-logrocket 添加到你的 nuxt.config.ts 文件的 modules 部分
import { defineNuxtConfig } from 'nuxt'

export default defineNuxtConfig({
  modules: ['nuxt-logrocket'],

  logRocket: {
    id: '',
    dev: false,
    config: {
      //
    }
  }
})

选项

可以使用 运行时配置nuxt.config.ts 中的 logRocket 部分传递选项。在大多数情况下,为必需的 id 选项设置值就足够了。

以下是完整的选项列表

选项类型默认值必需
id字符串''
dev布尔值true
enablePinia布尔值true
release字符串null
consoleEnabled布尔值true
networkEnabled布尔值true
networkRequestSanitizer函数-
networkResponseSanitizer函数-
domEnabled布尔值true
inputSanitizer布尔值false
textSanitizer布尔值false
baseHref字符串null
shouldCaptureIP布尔值true
rootHostname字符串null
shouldDebugLog布尔值true
mergeIframes布尔值false

这是一个包含选项默认值的示例

{
  id: '',
  dev: true,
  enablePinia: true,
  config: {
    release: null,
    console: {
      isEnabled: true
    },
    network: {
      isEnabled: true,
      networkRequestSanitizer: () => {},
      networkResponseSanitizer: () => {}
    },
    dom: {
      isEnabled: true,
      inputSanitizer: false,
      textSanitizer: false,
      baseHref: null
    },
    shouldCaptureIP: true,
    rootHostname: null,
    shouldDebugLog: true,
    mergeIframes: false
  }
}

用法

正确设置后,LogRocket 会自动注入到你的应用程序中。默认情况下,此模块仅在 production 和客户端事件中起作用。

为了在你的应用程序中使用 LogRocket 的注入功能,你可以使用

const { $logRocket } = useNuxtApp()

访问 LogRocket 的网站以获取完整的功能列表:文档

Pinia

此模块会自动检测 Pinia 存储 mutation,并将它们附加到 LogRocket 会话。

此功能默认情况下处于启用状态,可以通过将 enablePinia 选项设置为 false 来禁用。

import { defineNuxtConfig } from 'nuxt'

export default defineNuxtConfig({
  modules: ['nuxt-logrocket'],

  logRocket: {
    id: '',
    enablePinia: false
  }
})

开发

  • 克隆此存储库
  • 使用 yarn install 安装依赖项
  • 使用 yarn run dev 启动开发服务器
  • 将你的浏览器指向 https://127.0.0.1:3000

许可证

MIT 许可证 - 阿里巴巴旅行公司