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

@upthrust/datalayer

v2.0.5

Published

**This module only works with `dataLayer` array**

Downloads

18

Readme

Upthrust Datalayer module

This module only works with dataLayer array

Installation

npm install @upthrust/datalayer

Usage

import { DataLayer } from "@upthrust/datalayer";

HTML triggers

To prepare triggers(click), just add data-tracking attribute to any DOM element. To ensure that an event is sent, attribute data-tracking-event with the name of the event should be specified as well. Add as many data-tracking-props-name attributes as needed. All attributes prefixed with data-tracking- will be parsed automatically.

Example

<button
  data-tracking=""
  data-tracking-event="download"
  data-tracking-label="Start accelerating my growth"
  data-tracking-download-type="ebook"
>
  Download eBook
</button>

Object that will be pushed to the datalayer

{
  "event": "download",
  "label": "Start accelerating my growth",
  "download_type": "ebook"
}

Customize behavior

setEventDefaultProps adds default props to the event, these props will be added to any event with the given name

DataLayer.setEventDefaultProps('download', {
    page: window.location.href
})

Since the default props for the "download" event were specified, click on the trigger from the example above will generate the following result

{
  "event": "download",
  "label": "Start accelerating my growth",
  "download_type": "ebook",
  "page": "https://github.com/UpthrustDev/upthrust-datalayer/"
}

To filter and prevent certain objects from being sent use setEventValidator. Just provide callback function to validate props

/**
 * Send event to dataLayer only if `download_type` is `ebook`
 */
DataLayer.setEventValidator('download', props => props.download_type === "ebook")

/**
 * This event will not be pushed to dataLayer since `download_type` prop is not passed validation
 */
const handleClickDownloadButton = (props) => DataLayer.pushEvent('download', {
    ...props,
    download_type: "file"
})

/**
 * This event is valid and will be pushed to dataLayer
 */
const handleClickDownloadButton2 = (props) => DataLayer.pushEvent('download', {
    ...props,
    download_type: "ebook"
})