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

@bing-ads/uet-pwa-sdk

v1.0.2

Published

Welcome to the UET PWA SDK project! This SDK facilitates the tracking of events in a Progressive Web App (PWA) and sends Universal Event Tracking (UET) events to Bing Ads by making HTTP requests to `bat.bing.com`.

Downloads

35

Readme

UET PWA SDK

Welcome to the UET PWA SDK project! This SDK facilitates the tracking of events in a Progressive Web App (PWA) and sends Universal Event Tracking (UET) events to Bing Ads by making HTTP requests to bat.bing.com.

To learn more about Universal Event Tracking, visit Microsoft Advertising - Universal Event Tracking.

Usage

Acquisition Info API for Attribution

⚠️ Origin Trial (OT) token is required in order to access Acquisition Info API for attribution. This token will need to be updated every 6 weeks until the trial is over. We will announce on this page when the trial is done.

Setting Up Origin Trials Token

Origin Trials provide a mechanism for developers to test new features and give feedback to the web standards community on their usability and effectiveness in real-world websites and applications.

To set up an Origin Trials token for your website, follow these steps:

  1. Visit the Origin Trials dashboard for Microsoft Edge: https://microsoftedge.github.io/MSEdgeExplainers/origin-trials/.

  2. Complete form. Register your origin, which is the domain where you plan to test the experimental feature.

  3. Token will be sent to registered email address in ~4 hours.

  4. Add the Origin Trial tag to the head of all pages. This is the recommended option for convenience and to ensure proper functionality. Please see OT docs for other option(s).

<meta http-equiv="origin-trial" content="your-token-goes-here">

Installation

npm install @bing-ads/uet-pwa-sdk

Example

import UETPWASDK from '@bing-ads/uet-pwa-sdk';

// Initialize the UET PWA SDK
const uet = new UETPWASDK({ ti: "<tag_id>" });

// Track a goal
uet.trackGoal("purchase", "Product XYZ", "ecommerce", 100, "USD");

UETPWASDK Class

constructor(options: UETPWASDKOptions)

Creates an instance of the UET PWA SDK.

Parameters

  • options (optional): An object with configuration options.
    • ti (required): Tag ID for the UET events.

Example

const uet = new UETPWASDK({ ti: "<tag_id>" });

trackGoal(ea: string, el: string, ec: string, gv: number, gc: string): Promise<Response | undefined>

Tracks a goal by sending a custom event to Bing Ads.

Parameters

  • ea: Event action.
  • el: Event label.
  • ec: Event category.
  • gv: Goal value (number).
  • gc: Goal currency (string).

Example

uet.trackGoal("purchase", "Product XYZ", "ecommerce", 100, "USD");

Automatic Launch Event

Upon instantiation of UETPWASDK class, automatically triggers an event call. This method sends an event with the action activation on the first app launch and launch for subsequent launches.