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

vast3-builder

v1.0.2

Published

Production-ready VAST 3.0 XML builder and parser for Linear, Non-Linear, Ad Pods, and Wrapper ads

Readme

VAST 3.0 Builder

npm version npm downloads License: MIT

Production-ready VAST 3.0 XML builder and parser for Linear, Non-Linear, Ad Pods, and Wrapper ads. Built with TypeScript and fully compliant with the IAB VAST 3.0 specification.

Features

  • 🎯 Complete VAST 3.0 Support: Linear ads, Non-Linear overlays, Ad Pods, and Wrapper ads
  • 🔧 TypeScript First: Full type safety with comprehensive interfaces
  • 📺 Media Rich: Multi-bitrate support, streaming manifests (HLS/DASH), progressive delivery
  • 📊 Tracking Complete: IAB quartiles, custom events, progress tracking, click tracking
  • 🎮 Interactive: Skippable ads, click-through URLs, custom telemetry
  • 🔗 Ad Chaining: Wrapper ads for ad network chains
  • 🎬 Ad Pods: Sequential ad playback (pre-roll, mid-roll, post-roll)
  • Validation: Runtime validation with extensible XSD support
  • 🧪 Well Tested: Comprehensive test suite with golden fixtures

Installation

# Using pnpm (recommended)
pnpm add vast3-builder

# Using npm
npm install vast3-builder

# Using yarn
yarn add vast3-builder

Quick Start

Basic Linear Ad

import { buildInlineAd, buildVast } from 'vast3-builder';

const ad = buildInlineAd({
    title: 'My Pre-roll Ad',
    impressions: ['https://example.com/impression'],
    creatives: [
        {
            linear: {
                duration: '00:00:30',
                mediaFiles: [
                    {
                        url: 'https://example.com/video.mp4',
                        type: 'video/mp4',
                        width: 1280,
                        height: 720,
                        delivery: 'progressive',
                        bitrate: 1500,
                    },
                ],
            },
        },
    ],
});

const xml = buildVast({ ads: [ad] });
console.log(xml);

Skippable Ad with Tracking

import { buildInlineAd, withIABQuartiles } from 'vast3-builder';

const skippableAd = buildInlineAd({
    title: 'Skippable Pre-roll',
    impressions: ['https://example.com/impression'],
    creatives: [
        {
            linear: {
                duration: '00:00:30',
                skipoffset: '00:00:05', // Skippable after 5 seconds
                tracking: [
                    ...withIABQuartiles('https://example.com/tracking'),
                    { event: 'skip', url: 'https://example.com/skip' },
                    { event: 'progress', offset: '00:00:10', url: 'https://example.com/10s' },
                ],
                clicks: {
                    clickThrough: 'https://example.com/landing',
                    clickTracking: ['https://example.com/click'],
                },
                mediaFiles: [
                    // Progressive ladder
                    {
                        url: 'https://cdn.example.com/360p.mp4',
                        type: 'video/mp4',
                        width: 640,
                        height: 360,
                        bitrate: 800,
                        delivery: 'progressive',
                    },
                    {
                        url: 'https://cdn.example.com/720p.mp4',
                        type: 'video/mp4',
                        width: 1280,
                        height: 720,
                        bitrate: 1500,
                        delivery: 'progressive',
                    },
                    // Streaming manifests
                    {
                        url: 'https://stream.example.com/playlist.m3u8',
                        type: 'application/vnd.apple.mpegurl',
                        width: 1280,
                        height: 720,
                        delivery: 'streaming',
                    },
                ],
            },
        },
    ],
});

Ad Pod (Sequential Ads)

import { buildAdPod } from 'vast3-builder';

const ad1 = buildInlineAd({
    title: 'First Ad',
    impressions: ['https://example.com/imp1'],
    creatives: [
        {
            linear: {
                duration: '00:00:15',
                mediaFiles: [
                    /* ... */
                ],
            },
        },
    ],
});

const ad2 = buildInlineAd({
    title: 'Second Ad',
    impressions: ['https://example.com/imp2'],
    creatives: [
        {
            linear: {
                duration: '00:00:30',
                mediaFiles: [
                    /* ... */
                ],
            },
        },
    ],
});

const pod = buildAdPod([ad1, ad2]);
const xml = buildVast({ ads: pod });

Wrapper Ad (Ad Network Chain)

import { buildWrapperAd } from 'vast3-builder';

const wrapper = buildWrapperAd({
    impressions: ['https://networkA.com/impression'],
    vastAdTagURI: 'https://networkB.com/vast-tag',
    tracking: [{ event: 'start', url: 'https://networkA.com/start' }],
    clicks: {
        clickTracking: ['https://networkA.com/click'],
    },
});

Non-Linear Overlay

const overlay = buildInlineAd({
    title: 'Banner Overlay',
    impressions: ['https://example.com/overlay-imp'],
    creatives: [
        {
            nonLinear: {
                units: [
                    {
                        width: 300,
                        height: 50,
                        minSuggestedDuration: '00:00:15',
                        staticResource: 'https://example.com/banner.png',
                        nonLinearClickThrough: 'https://example.com/landing',
                        nonLinearClickTracking: ['https://example.com/overlay-click'],
                    },
                ],
            },
        },
    ],
});

Streaming Formats Support

VAST3Builder fully supports modern streaming formats alongside traditional progressive download:

HLS (HTTP Live Streaming)

const hlsAd = buildInlineAd({
    title: 'HLS Streaming Ad',
    impressions: ['https://analytics.example.com/hls'],
    creatives: [
        {
            linear: {
                duration: '00:00:30',
                mediaFiles: [
                    {
                        url: 'https://stream.example.com/playlist.m3u8',
                        type: 'application/vnd.apple.mpegurl',
                        width: 1920,
                        height: 1080,
                        delivery: 'streaming',
                    },
                ],
            },
        },
    ],
});

DASH (Dynamic Adaptive Streaming)

const dashAd = buildInlineAd({
    title: 'DASH Streaming Ad',
    impressions: ['https://analytics.example.com/dash'],
    creatives: [
        {
            linear: {
                duration: '00:00:30',
                mediaFiles: [
                    {
                        url: 'https://stream.example.com/manifest.mpd',
                        type: 'application/dash+xml',
                        width: 1920,
                        height: 1080,
                        delivery: 'streaming',
                    },
                ],
            },
        },
    ],
});

Progressive Download (Traditional)

const progressiveAd = buildInlineAd({
    title: 'Progressive Video Ad',
    impressions: ['https://analytics.example.com/progressive'],
    creatives: [
        {
            linear: {
                duration: '00:00:30',
                mediaFiles: [
                    {
                        url: 'https://cdn.example.com/video.mp4',
                        type: 'video/mp4',
                        width: 1920,
                        height: 1080,
                        delivery: 'progressive',
                        bitrate: 2000000,
                    },
                ],
            },
        },
    ],
});

Supported Formats:

  • 🎬 HLS: .m3u8 files with application/vnd.apple.mpegurl
  • 🎬 DASH: .mpd files with application/dash+xml
  • 🎬 Progressive: .mp4, .webm, .mov with respective MIME types
  • 🎬 Multi-bitrate: Adaptive streaming with quality ladders

See examples/streaming-formats.ts for comprehensive examples.

API Reference

Core Functions

buildInlineAd(opts: InlineAdOpts): BuiltAd

Builds a complete InLine ad with creatives and tracking.

buildWrapperAd(opts: WrapperAdOpts): BuiltAd

Builds a Wrapper ad with automatic wrapper-mode constraints enforcement.

buildAdPod(ads: BuiltAd[]): BuiltAd[]

Converts a list of ads into a sequenced pod.

buildVast(doc: VastDocument): string

Generates the final VAST 3.0 XML document.

parseVast(xml: string): Vast3Json

Parses VAST XML into structured JSON.

validateVast(input: string | object): ValidationResult

Validates VAST structure (runtime checks + optional XSD).

Utility Functions

toClockTime(seconds: number): string

Converts seconds to HH:MM:SS format.

withIABQuartiles(baseUrl: string): TrackingEvent[]

Generates standard IAB quartile tracking events.

cdata(content: string): string

Marks content for CDATA wrapping (handled automatically by XML builder).

TypeScript Support

Full TypeScript support with comprehensive interfaces:

interface LinearCreativeOpts {
    duration: string; // "HH:MM:SS"
    skipoffset?: string;
    tracking?: TrackingEvent[];
    clicks?: Clicks;
    mediaFiles: MediaFile[];
}

interface MediaFile {
    url: string;
    type: string; // MIME type
    width: number;
    height: number;
    delivery?: 'progressive' | 'streaming';
    bitrate?: number;
    // ... more options
}

interface TrackingEvent {
    event: TrackingEventName | string;
    url: string;
    offset?: string; // "HH:MM:SS" or "n%"
}

VAST 3.0 Compliance

This library implements the complete IAB VAST 3.0 specification:

  • Linear Ads: Duration, skippable, media files, tracking, clicks
  • Non-Linear Ads: Static/iframe/HTML resources, click tracking
  • Ad Pods: Sequential playback with sequence numbers
  • Wrapper Ads: Ad network chaining with tracking shells
  • Media Files: Multi-bitrate, progressive/streaming delivery
  • Tracking Events: IAB quartiles, custom events, progress tracking
  • Click Tracking: ClickThrough, ClickTracking, CustomClick
  • Error Handling: Error URLs with macro support
  • Extensions: Custom telemetry and data
  • CDATA Handling: Proper XML escaping

Wrapper-Mode Constraints

The library automatically enforces VAST 3.0 wrapper constraints:

  • Wrapper Linear creatives contain only VideoClicks and TrackingEvents
  • Wrapper NonLinear creatives contain only click tracking and events
  • No media files are allowed in wrapper creatives
  • Automatic validation prevents invalid wrapper structures

Streaming Support

Built-in support for modern streaming formats:

const streamingMediaFiles = [
    {
        url: 'https://example.com/playlist.m3u8',
        type: 'application/vnd.apple.mpegurl', // HLS
        width: 1280,
        height: 720,
        delivery: 'streaming',
    },
    {
        url: 'https://example.com/manifest.mpd',
        type: 'application/dash+xml', // DASH
        width: 1280,
        height: 720,
        delivery: 'streaming',
    },
];

Testing

# Run tests
pnpm test

# Run tests with coverage
pnpm test:coverage

# Watch mode
pnpm test:watch

Building

# Build the package
pnpm build

# Development build with watch
pnpm dev

# Type checking
pnpm type-check

# Linting
pnpm lint

Browser Support

  • Modern browsers with ES2020 support
  • Node.js 16+
  • Compatible with bundlers (Webpack, Vite, Rollup)

📚 Complete Documentation

This README provides a quick start guide. For comprehensive documentation:

📖 User Documentation

  • USER_GUIDE.md - Complete usage guide with examples, best practices, and troubleshooting
  • API.md - Full API reference with detailed function documentation
  • Examples - Working code examples for all use cases

🔧 Technical Documentation

Quick Links:

License

MIT License - see the LICENSE file for details.

Related


Built with ❤️ for the ad tech community.