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

@aller/am-assets

v0.2.1

Published

Shared resources for Dagbladet, Dinside and Se&Hør. Mostly responsible for handling ad requests for these sites.

Downloads

8

Readme

wercker status

am-assets

Shared resources for Dagbladet, Dinside and Se&Hør. Mostly responsible for handling ad requests for these sites.

Setup

Just run npm install. Then npm start.

Testing

./startDevServer.php - starts and webserver on port 8080, and opens your default browser to http://localhost:8080/test

To test all the sites in it's current state with your updated am-assets, you can run bash test/generateAndUpdate.sh.

If you also have changed the styleguide you can run the script bash test/generateAndUpdateWithStyleguide.sh that will update the links to the styleguide also. But then you need to run the correct styleguide on port 8080 (the default, you should only need to run grunt in the styleguide folder.

This file will go and download all our sites, and change the am-assets ref to get the latest file from the dist folder in this repo. Check http://localhost:8081/test for link to all pages

Deploy

This repository will be deployed automagically when pushed to master. See wercker for more info

How to use

Placing adunits on the page is eazy-breezy. You just need a couple of things:

Including needed files

Make sure you have the Google Publisher Tag included in the head section of your page:

<script id="dfp-load">
   var googletag = googletag || {};
   googletag.cmd = googletag.cmd || [];
       (function() {
           var gads = document.createElement("script");
           gads.async = true;
           gads.type = "text/javascript";
           var useSSL = "https:" == document.location.protocol;
           gads.src = (useSSL ? "https:" : "http:") + "//www.googletagservices.com/tag/js/gpt.js";
           var node = document.getElementsByTagName("script")[0];
           node.parentNode.insertBefore(gads, node);
       })();
</script>

Add the CSS to the page: https://am.medialaben.no/stylesheets/app.min.css

Add the javascript to the page: https://am.medialaben.no/scripts/app.min.js (preferably just before the closing body tag.)

Place an adunit on the page

Each adunit is defined by a div that contains some data attributes which is used to make a request to DFP. For example, the following adunit has these attributes:

  <div id="gpt-1" class="adunit small-320x250 medium-980x300-scaled large-980x300" data-sizes="[[980,300], [970,250]]" json='{"targeting": { "seqNo": "1" }}' data-slot="/8578/dagbladet.no/forside" data-load-on="load"> </div>

Required attributes:

  • id (gpt-1): The ID of the adunit. Like any good developer, you know that IDs have to be unique. This is no exception - all adunits on a page need to have a unique id.
  • class:
    • adunit: every adunit needs this class to get default styling.
    • small-320x250 medium-980x300-scaled large-980x300: How much space we allocate to the adunit. These classes are optional, but are highly recommended as they prevent the page from jumping when an ad loads.
  • data-sizes ([[980,300], [970,250]]): What size(s) in DFP we want to ask for. Accepts one -or twodimensional arrays.
  • json ({"targeting": { "seqNo": "1", "pos": "2" }}): Used for targeting.
  • data-slot (/8578/dagbladet.no/forside): The DFP slot to ask for.
  • data-load-on (load): When to make a request to DFP. load means to make a request on page load, view means it's lazyloaded. 400px before it's visible in viewport is default, but this can be overruled with data-threshold attribute (see below).

Optional attributes

  • data-collapse (0|1): If reply from DFP was empty, collapse the adunit. We don't really use this, ever.
  • data-threshold ({num}): If the adunit is lazyloaded, this attribute overrules the default 300px.

As a library

Currently only a few selected features can be used from the library. Code is located in /src and compiles to /lib.

Motivation

At the moment we have multiple Google Tag Manager-containers with the same code duplicated everywhere. We're hoping to move the code to a library that can be included across all sites. It also gives us the possibility to write more modern JavaScript as well. This is currently implemented to SOL.no.

Next steps

Implement more features and make use of the code in the library for the browserified version as well.

Installation

Add it to package.json in the project you want to use it:

   "am-assets": "git+https://SOME_VALID_TOKEN:[email protected]/dbmedialab/am-assets.git#master",

and then simply do npm install.

Usage

import AmAssets from 'am-assets';
const am = new AmAssets({ config }); // See code for config details
am.activeTime();  // Enables activeTime.
am.metaRefresh(); // Enables metaRefrsh.

or if you want to import a specific library do:

import activeTime from 'am-assets/lib/analytics/active-time';

activeTime({ config }); // See code for config details.

Tracking inscreen time

In order to measure the exposure articles and ads have on visitors we track how long their elements are inscreen. These metrics gets pushed to @dbmedialab/aas.

Articles

Please refer to src/analytics/article-tracking/readme.md to see how article tracking works.

Ads

Please refer to src/analytics/viewability-tracking to see how ad tracking works.