feedad-node

Node.JS loader script for the FeedAd SDK

Usage no npm install needed!

<script type="module">
  import feedadNode from 'https://cdn.skypack.dev/feedad-node';
</script>

README

FeedAd Node.JS Loader

This library can be used to load the FeedAd advertisement SDK into an application.

  • Visit FeedAd.com for general information about FeedAd.
  • Visit docs.FeedAd.com for information on how to integrate FeedAd into your site.

Requirements

  • DOM Context (this is not a Node.JS server-side library)
  • Promises

Example

import {loadFeedAd} from "feedad-node";

loadFeedAd().then(sdk => {
    sdk.init(/* ... */);
    sdk.requestAd(/* ... */);
    // check the documentation on how to use the sdk.
});