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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@iabtechlab-omsdk/open-measurement

v1.6.2

Published

This repository contains the client JavaScript code of Open Measurement SDK, also known as OM SDK JS.

Readme

Open-Measurement-JS

Overview

This NPM repository contains the client JavaScript code of Open Measurement SDK, also known as OM SDK JS. It has two primary components:

  • OMID JS Verification Client (omid-verification-client-v1.js) is used by verification scripts to communicate with OMID JS Service. It handles situations when the verification script runs in the same HTML document as the creative (in the top level of the webview), or in a cross-domain iframe, or in an invisible webview or DOM-less JavaScript execution environment for native ads. Verification scripts include the OMID JS Verification Client source code at build time (when the verification script is transpiled/minified).

  • OMID JS Session Client (omid-session-client-v1.js) is used by integration partners to perform ad session activities in the JavaScript layer. It functions both at the top level of the webview and in a cross-domain iframe. Ad SDKs include its source code into ad HTML at build time.

Folder Structure

Session-Client/

Contains the OMID JS Session Client binary.

omid-session-client-v1.js: Stable version of the JS Session Client.

omid-session-client-v1beta.min.js: Minified version of the JS Session Client. Has the same APIs and functionality as the stable version but is much smaller due to more aggressive minification. Currently still in beta testing.

omid-session-client-v1beta.modern.js: "Modern" version of the JS Session Client. Has the same APIs and functionality as the stable/minified versions but excludes polyfills that are included in those. You must provide your own polyfills based on your target environments. Currently still in beta testing.

Verification-Client/

Contains the OMID JS Verification Client binary.

omid-verification-client-v1.js: Stable version of the JS Verification Client.

omid-verification-client-v1beta.min.js: Minified version of the JS Verification Client. Has the same APIs and functionality as the stable version but is much smaller due to more aggressive minification. Currently still in beta testing.

omid-verification-client-v1beta.modern.js: "Modern" version of the JS Verification Client. Has the same APIs and functionality as the stable/minified versions but excludes polyfills that are included in those. You must provide your own polyfills based on your target environments. Currently still in beta testing.

Validation-Script/

Contains the OMID JS Validation Script binary.

omid-validation-verification-script-v1.js: The validation script creates a VerificationClient instance and registers for OMID events. It logs every event received from the OMID.

Compliance-Script/

Contains the OMID JS Compliance Script binary.

omid-compliance-verification-script-v1.js: This script is used to check whether an integration is compliant with IAB OMID standards. The compliance script creates a ComplianceVerificationClient instance to register the appropriate add event listeners for specific events like impression, quartile, geometry changes, etc.