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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@nuxt-alt/google-analytics

v0.0.3

Published

An alternative google analytics 4 module for nuxt3

Downloads

57

Readme

Google Analytics 4 module for Nuxt

Info

This is a Google Analytics 4 module for nuxt. Since Universal Analytics is going away, there will be no compatibility with it. Everything here is meant for GA4.

Setup

  1. Add @nuxt-alt/google-analytics dependency to your project
yarn add @nuxt-alt/google-analytics
  1. Add @nuxt-alt/google-analytics to the modules section of nuxt.config.ts
export default defineNuxtConfig({
    modules: [
        '@nuxt-alt/google-analytics'
    ],
    gAnalytics: {
        /* module options */
    }
});

Options

measurementId

  • Type: String
  • Default: undefined
  • Required: true

The measurement ID for your google analytics tag. You can find this Id by following these steps:

  1. Go to Admin in GA4 Dashboard
  2. Select the Account you want to use
  3. Select Data Streams
  4. Create a stream if you haven't already done so. If you have already done so, then click on the stream.
  5. The measurement ID will be located on the right in the Stream details box. generally the ID will look like: G-XXXXXXXXXX

measurementIds

  • Type: Array
  • Default: []
  • Required: false

This is kind of the same as measurementId except that you're going to be using an array of objects. Each Object uses an id, params and domain property. This will generate more config gtags if you end up needing to use more than one measurement Id. Do note that measurementId is still required as you need a base id for the gtag. The domain property is required if you end up using page_location in this setup, though its recommended you don't do this since the middleware already handles setting the page_location.

Example:

export default defineNuxtConfig({
    gAnalytics: {
        measurementId: 'G-XXXXXXXXXX',
        measurementIds: [
            { id: 'G-XXXXXXXXXX', domain: 'https://example.com', params: { page_location: '/' } },
        ]
    }
});

globalParams

  • Type: Object
  • Default: {}
  • Required: false

This sets values that persists across all subsequent gtag calls on the page using gtag('set', { <key>: <value> })

Composable

The following composable are available to use (do note, that these only work in the browser):

  • useGAConsent(arg, params) - gtag('consent') equivalent
  • useGAConfig(params, id) - gtag('config') equivalent, id is optional if you intend to use the main measurement ID
  • useGAEvent(action, params) - gtag('event') equivalent
  • useGAGet(target, field, callback) - gtag('get') equivalent
  • useGASet(params) - gtag('set') equivalent

Read more about these functions here