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

@adview/react

v1.4.0

Published

AdView React

Readme

@adview/react

npm version TypeScript React License

React components for displaying ads with declarative sources, multi-template rendering, built-in tracking, and SSR support. Built on @adview/core.

Features

  • Declarative sources — configure backends via sources[] (drivers, weights, tags)
  • Waterfall fill — multiple sources top each other up until limit is met
  • Per-unit filters — select sources by tags, drivers, or name priority
  • Custom templates — several AdView.Template children per Unit, plus type="*" and DefaultTemplate
  • Built-in formats — Banner, Native, Proxy templates
  • Tracking — impression / view / click pixels via wrappers
  • SSR@adview/react/server for server components
  • Extensible driversregisterDataLoader for custom AdViewDataLoader adapters

Installation

npm install @adview/react
# peer: react ^18 || ^19
# pulls in @adview/core

Quick Start

import * as AdView from '@adview/react';

function App() {
  return (
    <AdView.Provider
      sources={[
        {
          name: 'primary',
          driver: 'dynamic',
          params: { url: 'https://ads.example.com/b/dynamic/{<id>}' },
        },
      ]}
    >
      <AdView.Unit unitId="home-banner" format="banner" />
      <AdView.Unit unitId="sidebar" format="native" tags={['sidebar']} />
    </AdView.Provider>
  );
}

Legacy srcURL / defaultAdData / sourceLoader still work on Provider and Unit; prefer sources for new code.

Table of Contents

Exports

import {
  Provider,           // AdViewProvider
  Unit,               // AdViewUnitClient
  Template,           // AdViewUnitTemplate
  DefaultTemplate,    // empty-inventory fallback
  BannerTemplate,
  NativeTemplate,
  ProxyTemplate,
} from '@adview/react';

import { Unit as UnitServer } from '@adview/react/server';

Types: AdViewUnitTemplateTypeProps, AdViewUnitTemplateProps, AdViewUnitClientChildren, …

Core utilities (drivers, registry):

import { registerDataLoader } from '@adview/core/utils';
import type {
  AdViewSourceItem,
  AdViewDataLoader,
  AdViewConfig,
} from '@adview/core/typings';

Configuration

Declarative sources

Pass sources on AdView.Provider (or on a Unit). Each entry:

| Field | Type | Description | |-------|------|-------------| | name | string | Unique id; used by Unit sources filter / priority | | driver | string | Registered driver name (dynamic, static, function, or custom) | | weight | number? | Default order when Unit does not pass sources names (higher first) | | tags | string[]? | Placement labels; filtered by Unit tags | | params | object? | Passed into the driver constructor |

<AdView.Provider
  sources={[
    {
      name: 'premium',
      driver: 'dynamic',
      weight: 30,
      tags: ['feed', 'sidebar'],
      params: {
        url: 'https://ads.example.com/{<id>}?limit={<limit>}',
        timeout: 5000,
      },
    },
    {
      name: 'house',
      driver: 'static',
      weight: 10,
      tags: ['feed'],
      params: { defaultData: houseAds },
    },
  ]}
>
  {/* units */}
</AdView.Provider>

When several sources match, their loaders are chained: each next one tops up the previous until limit is reached.

Built-in drivers

| driver | Class | Main params | |----------|--------|----------------| | dynamic | DynamicFetcherDataLoader | url, timeout, defaultData, dataPreparer | | static | HardDataLoader | defaultData, version, adsourceInfo | | function | FuncDataLoader | fetchAdData |

URL placeholders for dynamic: {<id>}, {<format>}, {<limit>}, {<locale>}, {<q.key>} / {<query.key>} (other query keys are appended).

Custom drivers

import { registerDataLoader } from '@adview/core/utils';
import type {
  AdViewData,
  AdViewDataLoader,
  AdViewSourceItem,
} from '@adview/core/typings';

class PartnerLoader implements AdViewDataLoader {
  constructor(private source: AdViewSourceItem) {}

  static matchDriver(source: AdViewSourceItem) {
    return Boolean(source.params?.apiKey);
  }

  async fetchAdData(
    unitId: string,
    limit = 1,
    format?: string | string[],
    query?: Record<string, unknown>,
  ): Promise<AdViewData | Error> {
    // fetch from your network using this.source.params
    return { version: '1', groups: [{ id: unitId, items: [] }] };
  }
}

// Call once at app bootstrap
registerDataLoader('partner', PartnerLoader);
// optional: registerDataLoader('partner', PartnerLoader, (s) => !!s.params?.apiKey)
<AdView.Provider
  sources={[
    {
      name: 'partner-eu',
      driver: 'partner',
      params: { apiKey: '…', region: 'eu' },
    },
  ]}
>
  <AdView.Unit unitId="slot" format="native" />
</AdView.Provider>

Matching order: source.driver === registeredName, then optional matcher from registerDataLoader, then optional static matchDriver on the class.

AdView.Unit

Props

| Prop | Type | Description | |------|------|-------------| | unitId | string | Ad unit id (required) | | format | string \| string[] | Requested format(s) | | limit | number | Max items to fill (default 1) | | query | object | Extra request params | | sources | string[] | Filter/prioritize by source name | | tags | string[] | Keep sources whose tags intersect | | drivers | string[] | Keep sources with these driver names | | acceptedFormatTypes | string[] | Client-side item filter (* / all accepts any) | | selection | AdViewSelectionPlan | Staged waterfall / parallel weighted-shuffle plan | | trackingWrapperClassName | string | Class on tracking wrappers | | filterItems | (items) => items | Post-fetch item filter | | wrapper | (params) => ReactNode | Wrap rendered ad elements | | children | render prop or templates | See below |

Also accepts legacy config fields: srcURL, defaultAdData, sourceLoader, source, sources (config array belongs on Provider; Unit’s sources prop is the name filter).

Source filters

{/* By placement tags */}
<AdView.Unit unitId="side" format="banner" tags={['sidebar']} />

{/* By name + priority (order = request order) */}
<AdView.Unit
  unitId="hero"
  format="native"
  sources={['premium', 'house']}
  limit={2}
/>

Selection plan

selection describes stages. Stages run left-to-right while remaining slots R = limit - taken > 0. A string stage fetches one source (order preserved). An array stage fetches all listed sources in parallel, then weighted-shuffles the pool (default weight 1) and takes up to R. Flat sources={['a','b']}selection={['a','b']}.

{/* 1) Strict waterfall */}
<AdView.Unit
  unitId="hero"
  format="banner"
  limit={3}
  selection={['main', 'second', 'other']}
/>

{/* 2) main first; if short, parallel merge of second + other */}
<AdView.Unit
  unitId="hero"
  format="banner"
  limit={4}
  selection={['main', ['second', 'other']]}
/>

{/* 3) weighted shuffle of main+second, then other fallback */}
<AdView.Unit
  unitId="hero"
  format="banner"
  limit={5}
  selection={[
    [
      { source: 'main', weight: 90 },
      { source: 'second', weight: 20 },
    ],
    'other',
  ]}
/>

Custom render props

<AdView.Unit unitId="custom" format="native">
  {({ data, state, error }) => {
    if (state.isLoading) return <Skeleton />;
    if (error || !data) return <Fallback />;
    return (
      <article>
        <h3>{data.fields?.title}</h3>
        <p>{data.fields?.description}</p>
      </article>
    );
  }}
</AdView.Unit>

Custom templates

A Unit can take several template children. The first whose type matches the ad wins; use type="*" as catch-all; put DefaultTemplate last for empty inventory.

'use client';

import * as AdView from '@adview/react';
import type { AdViewUnitTemplateTypeProps } from '@adview/react';

function VideoPrerollTemplate({
  type = 'video',
  ...props
}: Omit<AdViewUnitTemplateTypeProps, 'type'> & { type?: 'video' }) {
  return (
    <AdView.Template type={type} {...props}>
      {({ data: ad }) => (
        <div>{/* render video preroll from ad */}</div>
      )}
    </AdView.Template>
  );
}

VideoPrerollTemplate.defaults = { type: 'video' };

function FeedSlot({ unitId }: { unitId: string }) {
  return (
    <AdView.Unit
      unitId={unitId}
      format={['native', 'banner', 'proxy', 'proxy_300x250', 'video']}
      limit={5}
      acceptedFormatTypes={['*']}
      trackingWrapperClassName="w-full h-full"
    >
      <VideoPrerollTemplate />
      <AdView.BannerTemplate />
      <AdView.NativeTemplate />

      {/* Catch-all for unmatched types */}
      <AdView.Template type="*">
        {({ data }) => <GeneralCard data={data} />}
      </AdView.Template>

      {/* No data */}
      <AdView.DefaultTemplate>
        <div>No ads available</div>
      </AdView.DefaultTemplate>
    </AdView.Unit>
  );
}

Notes

  • Order matters: specific types before type="*".
  • If a * template renders for empty data, return null so DefaultTemplate can run.
  • Set Component.defaults = { type: '…' } when the template is used without an explicit type prop.

SSR

import { Unit } from '@adview/react/server';

export default async function Page() {
  return (
    <Unit
      unitId="ssr-banner"
      format="banner"
      sources={[
        {
          name: 'primary',
          driver: 'dynamic',
          params: { url: 'https://ads.example.com/{<id>}' },
        },
      ]}
    />
  );
}

Or wrap with client Provider and use server Unit with inherited config where your framework allows.

Tracking

Each ad item may include tracker.impressions, tracker.views, and tracker.clicks. The Unit wraps items in tracking that:

  • fires impressions on mount
  • fires views when the wrapper intersects the viewport
  • fires clicks on wrapper click
<AdView.Unit
  unitId="tracked"
  format="banner"
  trackingWrapperClassName="ad-track"
/>

Loading states

type AdLoadState = {
  isInitial?: boolean;
  isLoading?: boolean;
  isError?: boolean;
  isComplete?: boolean;
};

Available in render-prop state and on template props.

Playground

The monorepo includes an interactive playground (test-project) with ebony UI demos for sources, mix/waterfall, filters, custom drivers, and templates:

make dev-project   # http://localhost:3002

License

Apache-2.0 — see LICENSE.