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

@sourcedigital/openpixel

v1.2.0

Published

Open Pixel is a JavaScript library for creating embeddable and intelligent tracking pixels

Downloads

4

Readme

Source Pixel

Build

For building, two environment variables must be specified.

  • OPIX_BEACON_URL (ex: http://example.com/pixel.gif)
    • which pixel URL should be pinged
  • SNIPPET_SCRIPT_URL (ex: http://example.com/source-pixel.min.js)
    • where the script will be deployed
yarn install

OPIX_BEACON_URL=<pixel url> SNIPPET_SCRIPT_URL=<script url> yarn build

TODO: Below is README content from the original repository. Some parts are not relevant anymore. Requires rewriting.

How to create a new release:

Follow the steps below:

  1. yarn install
  2. git add .
  3. yarn commit
  4. Fill in the information as asked.
  5. git push origin/branch <branch_name>
  6. Raise a PR to main branch.
  7. Let the PR pipeline complete. Each time a PR is raised, a PR pipeline runs to test the build.
  8. once the pipeline completes, DO NOT MERGE the PR directly to main, but do Merge and Rebase
  9. A new release will be created autommatically.

Openpixel

Powered by Dockwa

About

Openpixel is a customizable JavaScript library for building tracking pixels. Openpixel uses the latest technologies available with fall back support for older browsers. For example, if the browser supports web beacons, openpixel will send a web beacon, if it doesn't support them it will inject a 1x1 gif into the page with tracking information as part of the images get request.

At Dockwa we built openpixel to solve our own problems of implementing a tracking service that our marinas could put on their website to track traffic and attribution to the reservations coming through our platform.

Openpixel handles the hard things about building a tracking library so you don't have to. It handles things like tracking unique users with cookies, tracking utm tags and persisting them to that users session, getting all of the information about the clients browser and device, and many other neat tricks for performant and accurate analytics.

Openpixel has two parts, the snippet (snippet.html), and the core (openpixel.min.js).

Snippet

The openpixel snippet (found at dist/snippet.html) is the HTML code that will be put onto any webpage that will be reporting analytics. For Dockwa, our marina websites put this on every page of their website so that it would load the JS to execute beacons back to a tracking server. The snippet can be placed anywhere on the page and it will load the core openpixel JS asynchronously. To be accurate, the first part of the snippet gets the timestamp as soon as it is loaded, applies an ID (just like a Google analytics ID, to be determined by you), and queues up a "pageload" event that will be sent as soon as the core JS has asynchronously loaded.

The snippet handles things like making sure the core JavaScript will always be loaded async and is cache busted every 24 hours so you can update the core and have customers using the updates within the next day.

Core

The openpixel core (found at src/openpixel.min.js) is the JavaScript code that that the snippet loads asynchronously onto the client's website. The core is what does all of the heavy lifting. The core handles settings cookies, collecting utms, and of course sending beacons and tracking pixels of data when events are called.

Events

There are 2 automatic events, the pageload event which is sent as the main event when a page is loaded, you could consider it to be a "hit". The other event is pageclose and this is sent when the pages is closed or navigated away from. For example, to calculate how long a user viewed a page, you could calculate the difference between the timestamps on pageload and pageclose and those timestamps will be accurate because they are triggered on the client side when the events actually happened.

Openpixel is flexible with events though, you can make calls to any events with any data you want to be sent with the beacon. Whenever an event is called, it sends a beacon just like the other beacons that have a timestamp and everything else. Here is an example of a custom event being called. Note: In this case we are using the opix function name but this will be custom based on your build of openpixel.

opix("event", "reservation_requested");

You can also pass a string or json as the third parameter to send other data with the event.

opix("event", "reservation_requested", { someData: 1, otherData: "cool" });
opix("event", "reservation_requested", { someData: 1, otherData: "cool" });

You can also add an attribute to any HTML element that will automatically fire the event on click.

<button data-opix-event="special-button-click">Some Special Button</button>

Setup and Customize

Openpixel needs to be customized for your needs before you can start using it. Luckily for you it is really easy to do.

  1. Make sure you have node.js installed on your computer.
  2. Install openpixel npm i openpixel
  3. Install the dependencies for compiling openpixel via the command line with npm install
  4. Update the variables at the top of the gulpfile.js for your custom configurations. Each configuration has comments explaining it.
  5. Run gulp via the command npm run dist.

The core files and the snippet are located under the src/ directory. If you are working on those files you can run npm run watch and that will watch for any files changed in the src/ directory and rerun gulp to recompile these files and drop them in the dist/ directory.

The src/snippet.js file is what is compiled into the dist/snippet.html file. All of the other files in the src directory are compiled into the dist/openpixel.js and the minified dist/openpixel.min.js files.

Continuous integration

You may also need to build different versions of openpixel for different environments with custom options. Environment variables can be used to configure the build:

OPIX_DESTINATION_FOLDER, OPIX_PIXEL_ENDPOINT, OPIX_JS_ENDPOINT, OPIX_VERSIONOPIX_PIXEL_FUNC_NAME, OPIX_VERSION, OPIX_HEADER_COMMENT

You can install openpixel as an npm module npm i -ED openpixel and use it from your bash or js code.

OPIX_DESTINATION_FOLDER=/home/ubuntu/app/dist OPIX_PIXEL_ENDPOINT=http://localhost:8000/pixel.gif OPIX_JS_ENDPOINT=http://localhost:800/pixel_script.js  OPIX_PIXEL_FUNC_NAME=track-function OPIX_VERSION=1 OPIX_HEADER_COMMENT="// My custom tracker\n" npx gulp --gulpfile ./node_modules/openpixel/gulpfile.js build

Tracking Data

Below is a table that has all of the keys, example values, and details on each value of information that is sent with each beacon on tracking pixel. A beacon might look something like this. Note: every key is always sent regardless of if it has a value so the structure will always be the same.

https://tracker.example.com/pixel.gif?id=R29X8&uid=1-ovbam3yz-iolwx617&ev=pageload&ed=&v=1&dl=http://edgartownharbor.com/&rl=&ts=1464811823300&de=UTF-8&sr=1680x1050&vp=874x952&cd=24&dt=Edgartown%20Harbormaster&bn=Chrome%2050&md=false&ua=Mozilla/5.0%20(Macintosh;%20Intel%20Mac%20OS%20X%2010_11_5)%20AppleWebKit/537.36%20(KHTML,%20like%20Gecko)%20Chrome/50.0.2661.102%20Safari/537.36&utm_source=&utm_medium=&utm_term=&utm_content=&utm_campaign=

| Key | Value | Details | | ------------ | ------------------- | ---------------------------------------------------------------- | | id | SJO12ZW | id for the app/website you are tracking | | uid | 1-cwq4oelu-in95g8xy | id of the user | | ev | pageload | the event that is being triggered | | ed | {'somedata': 123} | optional event data that can be passed in, string or json string | | v | 1 | openpixel js version number | | dl | http://example.com/ | document location | | rl | http://google.com/ | referrer location | | ts | 1461175033655 | timestamp in microseconds | | de | UTF-8 | document encoding | | sr | 1680x1050 | screen resolution | | vp | 1680x295 | viewport | | cd | 24 | color depth | | dt | Example Title | document title | | bn | Chrome 50 | browser name | | md | false | mobile device | | ua | full user agent | user agent | | tz | 240 | timezone offset (minutes away from utc) | | utm_source | | Campaign Source | | utm_medium | | Campaign Medium | | utm_term | | Campaign Term | | utm_content | | Campaign Content | | utm_campaign | | Campaign Name |