Socket
Socket
Sign inDemoInstall

video-ad-sdk

Package Overview
Dependencies
3
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    video-ad-sdk

VAST/VPAID SDK that allows video ads to be played on top of any player


Version published
Weekly downloads
65
decreased by-65.97%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 22 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc