All Projects → nuxt-community → Web Vitals Module

nuxt-community / Web Vitals Module

Licence: mit
Web Vitals: Essential module for a healthy Nuxt.js

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Web Vitals Module

App perf
Open source application performance monitoring tool with emphasis on ease of setup and use. Providing similar functionality like NewRelic/AppNeta/Skylight etc.
Stars: ✭ 353 (+155.8%)
Mutual labels:  metrics, performance
Awesome Pagespeed Metrics
⚡Metrics to help understand page speed and user experience
Stars: ✭ 585 (+323.91%)
Mutual labels:  metrics, performance
Garie
Open source web performance
Stars: ✭ 484 (+250.72%)
Mutual labels:  metrics, performance
Metered Rs
Fast, ergonomic metrics for Rust
Stars: ✭ 258 (+86.96%)
Mutual labels:  metrics, performance
Amon
Amon is a modern server monitoring platform.
Stars: ✭ 1,331 (+864.49%)
Mutual labels:  metrics, performance
Wallace Cli
Pretty CSS analytics on the CLI
Stars: ✭ 281 (+103.62%)
Mutual labels:  metrics, performance
Swagger Stats
API Observability. Trace API calls and Monitor API performance, health and usage statistics in Node.js Microservices.
Stars: ✭ 559 (+305.07%)
Mutual labels:  metrics, performance
nuxt-modules
AX2's Nuxt modules
Stars: ✭ 30 (-78.26%)
Mutual labels:  module, nuxtjs
Pwmetrics
Progressive web metrics at your fingertipz
Stars: ✭ 1,243 (+800.72%)
Mutual labels:  metrics, performance
Browser Perf
Performance Metrics for Web Browsers
Stars: ✭ 930 (+573.91%)
Mutual labels:  metrics, performance
Stagemonitor
an open source solution to application performance monitoring for java server applications
Stars: ✭ 1,664 (+1105.8%)
Mutual labels:  metrics, performance
Icinga2
Icinga is a monitoring system which checks the availability of your network resources, notifies users of outages, and generates performance data for reporting.
Stars: ✭ 1,670 (+1110.14%)
Mutual labels:  metrics, performance
nuxt-facebook-pixel-module
Inject Facebook pixel code
Stars: ✭ 82 (-40.58%)
Mutual labels:  module, nuxtjs
React Native Performance
Monitor and measure React Native performance
Stars: ✭ 269 (+94.93%)
Mutual labels:  metrics, performance
icingaweb2-module-pnp
Integrate PNP graphs into Icinga Web 2
Stars: ✭ 32 (-76.81%)
Mutual labels:  module, metrics
Inspectit
inspectIT is the leading Open Source APM (Application Performance Management) tool for analyzing your Java (EE) applications.
Stars: ✭ 513 (+271.74%)
Mutual labels:  metrics, performance
Nuxt Netlify Cms Module
Easy Netlify CMS integration with nuxt.js
Stars: ✭ 195 (+41.3%)
Mutual labels:  nuxtjs, module
nuxt-ts-module
A tiny module to use Typescript within Nuxt.js application.
Stars: ✭ 21 (-84.78%)
Mutual labels:  module, nuxtjs
Pcp
Performance Co-Pilot
Stars: ✭ 716 (+418.84%)
Mutual labels:  metrics, performance
Browser Metrics
A collection of metrics tools for measuring performance ⚡️
Stars: ✭ 115 (-16.67%)
Mutual labels:  metrics, performance

Nuxt Web Vitals

Web Vitals: Essential module for a healthy Nuxt.js

Web Vitals is an initiative by Google to provide unified guidance for quality signals that are essential to delivering a great user experience on the web.

Installation

# yarn
yarn add --dev @nuxtjs/web-vitals

# npm
npm install --save-dev @nuxtjs/web-vitals

Add @nuxtjs/web-vitals to the buildModules section of your nuxt.config.js

export default {
  buildModules: [
    '@nuxtjs/web-vitals'
  }
}

⚠️ If you are using Nuxt < v2.9 you have to install the module as a dependency (No --save-dev or --dev flags) and use modules section in nuxt.config.js instead of buildModules.

Options

{
  webVitals: {
    // provider: '', // auto detectd
    debug: false,
    disabled: false
  }
}

Providers

Google Analytics

Create a GA property and get trackingID

Either provide GOOGLE_ANALYTICS_ID environement variable or set inside nuxt.config:

export default {
  googleAnalytics: {
    id: 'UA-XXXXXXXX-X'
  }
}

Behavior > Events > Overview > Event Category > Event Action

Events Actions

Vercel Analytics

Works without configuration

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].