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 🙏

© 2024 – Pkg Stats / Ryan Hefner

adex-adview-manager

v2.1.1

Published

AdEx Adview manager library

Downloads

64

Readme

adex-adview-manager

Manager class for AdEx AdViews.

This library is meant to be integrated by publishers on their websites, runs on the client side (user's browser) and facilitates the following functionalities:

  1. Pulling ad demand (campaigns) and applying targeting, header bidding and filtering according to the criteria set by the advertisers and the involved publisher
  2. Showing the ad creative to the user
  3. Counting events and sending them to the validators; for example, impressions (as defined by IAB guidelines) and clicks

For more information, check the adex-protocol repo.

NOTE: If you're a publisher, you do not need to integrate this library directly. All you need to do is copy/paste the HTML snippet from the Platform once you create an ad slot.

Usage:

const { AdViewManager } = require('adex-adview-manager')
const mgr = new AdViewManager(require('node-fetch'), {
	publisherAddr: '0xd6e371526cdaeE04cd8AF225D42e37Bc14688D9E',
	whitelistedToken: '0x7af963cF6D228E564e2A0aA0DdBF06210B38615D',
	targeting: [{ tag: 'location_BG', score: 1.5 }],
})
async function run() {
	console.log((await mgr.getNextAdUnit()).html)
}
run()

Constructor:

const mgr = new AdViewManager(fetch, opts)

Options

For the available options, see https://github.com/AdExNetwork/adex-adview-manager/blob/master/src/main.ts#L18

Brief description of each one:

  • marketURL: URL to the AdEx market; defaults to "https://market.moonicorn.network"
  • acceptedStates: array of accepted campaign states; defaults to ['Active', 'Ready']
  • minPerImpression: minimum payment amount per impression; defaults to '0'
  • minTargetingScore: minimum targeting score to show an ad unit; defaults to 0
  • publisherAddr: the address of the publisher that will receive the earnings
  • whitelistedToken: the address of the whitelisted payment token
  • whitelistedType: the allowed type of the ad unit; don't pass that in (or set to null) if you want to allow all types
  • topByPrice: how many ad units to consider after sorting by price
  • topByScore: how many ad units to consider after sorting by targeting
  • randomize: apply random sort on the final selection (after applying topByPrice and topByScore)
  • targeting: what targeting tags to apply

For detailed information on how the bidding process works, see: https://github.com/AdExNetwork/adex-protocol/blob/master/components/validator-stack.md#bidding-process

Methods:

  • mgr.getAdUnits(): returns a promise that resolves with all ad units from currently active campaigns; applies targeting and filtering
  • mgr.getNextAdUnit(): returns a promise that returns the least seen unit from getAdUnits(); use this in your app to get the next ad unit to show

The object format that those functions return is { unit, channelId, html }

Build a browser version

webpack --mode production

Test it

http-server --cors dist.browser/

iframe parameters

const options = {
	publisherAddr: '0xd6e371526cdaeE04cd8AF225D42e37Bc14688D9E',
	whitelistedToken: '0x7af963cF6D228E564e2A0aA0DdBF06210B38615D',
	whitelistedType: 'legacy_300x250'
}
const url = `index.html#${encodeURIComponent(JSON.stringify({ options }))}`

iframes

Standard:

<iframe width={width} height={height} src="{origin}{parameters}">

Auto-collapsing, collapsed by default:

Auto-collapsing is achieved by adding an onload handler:

window.addEventListener('message', function(ev) { if (ev.data.hasOwnProperty('adexHeight') && ev.origin === '{origin}') for (f of document.getElementsByTagName('iframe')) if (f.contentWindow === ev.source) f.height = ev.data.adexHeight }, false)
`<iframe width={width} src="{origin}{parameters}" onload="window.addEventListener('message', function(ev) { if (ev.data.hasOwnProperty('adexHeight') && ev.origin === '{origin}') for (f of document.getElementsByTagName('iframe')) if (f.contentWindow === ev.source) f.height = ev.data.adexHeight }, false)">

Auto-collapsing, not collapsed by default:

Essentially the only difference to the previous one is that the height is set

<iframe width={width} height={height} src="{origin}{parameters}" onload="window.addEventListener('message', function(ev) { if (ev.data.hasOwnProperty('adexHeight') && ev.origin === '{origin}') for (f of document.getElementsByTagName('iframe')) if (f.contentWindow === ev.source) f.height = ev.data.adexHeight }, false)">