Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
nuxt-umami
Advanced tools
Integrate Umami Analytics into your Nuxt websites / applications.
Heads up: This version uses features (Nuxt Layers) that are only available in Nuxt 3. Check out Nuxt Umami v1 for Nuxt 2 compat.
Install using your favorite package manager...
pnpm add nuxt-umami@next #pnpm
npm install nuxt-umami@next #npm
Then add nuxt-umami
to your extends
array in nuxt.config
:
defineNuxtConfig({
extends: ['nuxt-umami']
});
Or, you can totally skip the installation process and do
defineNuxtConfig({
extends: ['github:ijkml/nuxt-umami#next']
});
Warning: This might cause unwanted errors due to changes as the branch is still WIP.
You can provide configuration options using the app.config.ts
file or appConfig
property of the Nuxt config.
app.config.ts
file(recommended for readability and ease of update)
export default defineAppConfig({
umami: {
// ...umami config here
},
});
appConfig
propertydefineNuxtConfig({
extends: ['nuxt-umami@next'],
appConfig: {
umami: {
// ...umami config here
},
},
});
Use it?
option | type | description | required | default |
---|---|---|---|---|
host | string | Your Umami endpoint. This is where your script is hosted. Eg: https://ijkml.xyz/ . | yes | '' |
id | string | Unique website-id provided by Umami. | yes | '' |
domains | string | Limit tracker to specific domains by providing a comma-separated list (without 'http'). Leave blank for all domains. | no | '' |
ignoreDnt | boolean | Option to ignore browsers' Do Not Track setting. | no | true |
autoTrack | boolean | Option to automatically track page views. | no | true |
ignoreLocalhost | boolean | Option to prevent tracking on localhost. | no | false |
version | 1 | 2 | Umami version (Cloud) | no | 1 |
Two functions are auto-imported, umTrackView()
and umTrackEvent()
. Use them however and wherever you like.
umTrackView(url, referrer)
url
: the path being tracked, eg /about
, /contact?by=phone#office
. Most times, this can be correctly inferred. Equivalent of router.fullPath
.referrer
: the page referrer. Most times, this can be correctly inferred. Equivalent of document.referrer
.umTrackEvent(eventName, eventData)
eventName
: a string type texteventData
: an object in the format {key: value}
, where key
is a string and value
is a string, number, or boolean.Reference: Umami Tracker Functions.
Umami v2's release is on the horizon, and they currently offer a free beta plan for Umami Cloud. To use v2 (or Cloud), set version: 2
in the Umami config.
Warning: v2 is still WIP pending official release and the new docs. Test rigorously, and if you encounter bugs/issues, please open an issue.
Open an issue, fire a PR. Contributions are welcome! If you encounter any issues, don't hesitate to open an issue. I'm always available to help and resolve any bugs.
FAQs
Integrate Umami Analytics into Nuxt
The npm package nuxt-umami receives a total of 856 weekly downloads. As such, nuxt-umami popularity was classified as not popular.
We found that nuxt-umami demonstrated a healthy version release cadence and project activity because the last version was released less than 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.