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

@168bj4/analytics-mtm

v0.0.3

Published

This plugin is used to install analytics matomo tag manager functions for frontend nuxt projects

Downloads

7

Readme

Analytics

This plugin is used to install analytics functions for frontend nuxt projects, must used with /site.js included

Edit Plugin

npm install && npm run build
npm publish

Before Install

Must check the /site.js is included.

Step 1. For develop, you can create static/site.js as follow content. (Required)

var _jsvar = {};
_jsvar.siteId = 168;
_jsvar.siteType = 'forum';
_jsvar.siteLocale = 'zh_cn';
_jsvar.siteAnalyticsUrl = '{{ matomo url }}';
_jsvar.siteAnalyticsId = '{{ matomo tag manager id }}';
window._jsvar = _jsvar;

NUXT / Step 2. Install /site.js in nuxt.config (Required)

...
script: {
...
{ src: '/site.js' },
...
},
,,,

VUE-CLI / Step 2. Create site.js in public/site.js (Required)

Registry Setup

https://git.168-system.com/help/user/packages/npm_registry/index

# Set URL for your scoped packages.
# For example package with name `@frontend/analytics-mtm` will use this URL for download
npm config set @frontend:registry https://git.168-system.com/api/v4/packages/npm/

# Add the token for the scoped packages URL. This will allow you to download
# `@frontend/` packages from private projects.
# You can find persion_token on your profile page, and replace the <your_token> as follow.
npm config set '//git.168-system.com/api/v4/packages/npm/:_authToken' "<your_token>"

NUXT Setup

After install the package, you should do things follow.

Step 1. Create plugin file name plugins/analytics.js (Required)

import Vue from 'vue';
import Analytics from '@frontend/analytics-mtm';

Vue.use(Analytics);

export default ({ app }) => {
  const options = {
    router: app.router,
    user: app.store.state.user
  }
  Analytics.bind(options)
};

Step 2. Setting analytics plugin in nuxt.config.js (Required)

...
/*
** Plugins to load before mounting the App
** https://nuxtjs.org/guide/plugins
*/
plugins: [
  ...
  '@/plugins/analytics',
],
...

Step 3. On the page you want to track some event (Optional)

import Tracker from '@frontend/analytics-mtm';

## Example

Tracker.event('Envelope', 'click', 'button1', 1000);

VUE-CLI Setup

After install the package, you should do things follow.

Step 1. Create file name src/analytics.js (Required)

import router from './router'
import store from './store'
import Analytics from '@frontend/analytics-mtm'

Analytics.init()
const options = {
  router: router,
  user: store.getters.userInfo
}
Analytics.bind(options)

Step 2. Setting analytics import in src/main.js (Required)

...
import './analytics' // import analytics plugin
...

Step 3. On the page you want to track some event (Optional)

import Tracker from '@frontend/analytics-mtm';

## Example

/**
  * Example {'Event8  Name', data}
  * data: {
  *   key: value,
  *   key2: value2,
  *   key3: [],
  * }
  */