video-ad-sdk
TypeScript icon, indicating that this package has built-in type declarations

4.0.0 • Public • Published

Video Ad SDK

This is a fork of MailOnline/mol-video-ad-sdk, made to move its development forward. The main repository has been inactive since February 2019.

To run video ads in the browser there are many alternatives. The most famous one is probably Google's IMA SDK for HTML5. There are two main cons with that SDK. It only works through DoubleClick and it is a black box very hard to debug and to maintain. This SDK tries to offer an alternative to play video ads that can work with any player in the world and any ad server that supports the VAST specification. And since it is open source you can read the code and debug if you need to.

Install

npm install video-ad-sdk

or

yarn add video-ad-sdk

Usage

Try to start one of the ads returned by the adTag

import {runWaterfall} from 'video-ad-sdk'

const adTag = 'https://adserver.com/vastadtaguri'

const videoAdContainer = document.querySelector('.video-ad-container')

const onAdReady = (adUnit) => {
  // ad is ready
}

const onError = (error) => {
  // ad is failed
}

runWaterfall(adTag, videoAdContainer, {
  onAdReady,
  onError
})

Demo

Demo here!

Documentation

Currently we only have the API which you can check here.

Contributing

Start

After you clone the repo you just need to run yarn's default command to install and build the packages

yarn

Testing

We have a test suite consisting of a bunch of unit tests to verify utils keep working as expected. Test suit is run in CI on every commit.

To run the tests

yarn test

To run the tests in watch mode

yarn test:watch

Code quality

To run linting the codebase

yarn lint

To check typings

yarn typecheck

To check bundle size

yarn sizecheck

Discussion

Please open an issue if you have any questions or concerns.

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i video-ad-sdk

Weekly Downloads

88

Version

4.0.0

License

MIT

Unpacked Size

6.27 MB

Total Files

491

Last publish

Collaborators

  • rambler-ui-bot