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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@mozilla/majc

v0.1.7

Published

## Overview

Readme

MAJC

Overview

MAJC is a small, reusable JavaScript component that requests and displays ads from Mozilla’s servers. It is designed for use on HTML surfaces that display sponsored content, like Mozilla web properties or the Firefox New Tab page.

MAJC is privacy-first. It does not track users nor store cookies. It does not send sensitive identifiable information to Mozilla. Of the information Mozilla does receive, anything shared with advertisers is aggregated and/or de-identified to preserve user privacy.

MAJC can request and display standard ad placements, and calls the appropriate callback URLs to send anonymized impressions and clicks back to Mozilla. MAJC also provides a facility to report user dissatisfaction with ads so we can take appropriate action as necessary.

While we welcome outside feedback and are committed to open source, this library is intended solely for use on Mozilla properties.

Code of Conduct

This project and repository is governed by Mozilla's code of conduct and etiquette guidelines. Please see the CODE_OF_CONDUCT.md file for more details.

License

This repository is licensed under MPL-2.0. Please see the LICENSE file for more details.

Documentation

Installing this package

In your project's repository:

npm install --save @mozilla/majc

Or, add this repository's Git URL to your project's dependencies in package.json and then run npm install:

"dependencies": {
  "@mozilla/majc": "0.1.2"
}

Importing this package

Depending on your project's setup, this package may be included in several different ways.

IIFE

For webpages that want to simply include a <script> tag:

<script src="iife.global.js"></script>

The iife.global.js bundle may be found in this repo's ./dist folder. This bundle exposes a single mozAds global containing the renderPlacement function as well as some useful constants such as standard IAB placement size definitions. Please see the example in ./examples/iife for usage.

React

React apps can import the react bundle from this repo's ./dist folder. This bundle is available in both CJS and ESM formats and also includes TypeScript type definitions. The primary export from this bundle is the MozAdsPlacement component. To import in a TypeScript React app:

import { MozAdsPlacement } from '@mozilla/majc/dist/react'

This bundle exports a React component and hooks for inclusion in a React app. Please see the example in ./examples/react for usage.

A Note on SSR

Due to the use of certain hooks (e.g. useState, useEffect ) and usage of certain browser-only APIs (e.g. IntersectionObserver), our React component requires that instances are rendered client-side and not server-side. However, this behavior should be handled automatically by the library as all React components are annotated during the build process with a top-level "use client" directive. As a result, applications implementing SSR should not need to take any additional steps when using these React components and they should work "out of the box".