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

pogojs

v1.0.0

Published

Library to accompany the Pogo stack

Downloads

9

Readme

PogoJS

travis build codecov coverage npm

JavaScript microlibrary to accompany Pogostack

Some Pogo applications rely on partial page refreshes via AJAX.

This can cause problems with javascript events being bound to the dynamically loaded content. Binding events to the document is one solution but we felt a cleaner way would be to rebind when the partials are loaded in. This library makes this easy to achieve.

Usage

Register

We use HTML class hooks to bind events to elements. Our chosen naming convention is pogo-. These classes indicate the JavaScript is attached and have no cosmetics applied. For example, a dropdown component may have the class pogo-dropdown-menu.

The first step is to register these classes with Pogo. In the dropdown component file we would have the following:

Example

register({
    func: toggleMenu, // the function to be called
    hook: 'dropdownMenu', // the classname in camelcase `pogo-dropdown-menu
    type: 'click' // the event type
});

Multiple events are added as additional arguments.

Example

register({
    func: toggleMenu, // the function to be called
    hook: 'dropdownMenu', // the classname in camelcase `pogo-dropdown-menu
    type: 'click' // the event type
}, {
    func: myNewFunc,
    hook: 'someHook',
    type: 'change'
});

The type key can be any of the standard JS events or a custom immediate which will trigger as soon as the partial is loaded.

Bind

On initial page load, a sweep is done to look for classes beginning pogo-. PogoJS then checks it's register for any events which are due to be bound to those classes.

This happens automatically on full page refreshes.

For partial refreshes you will need to call Pogo's bind function.

Example

bind(); // this will rebind to all `pogo-` classes on the page

<div id="my_container" ></div>

const container = document.querySelector('#my_container');

bind(container); // this will excusively bind to `pogo-` classes in the new partial loaded inside the container.

Pogoset

Allows read access, to all the custom pogo attributes (pogo-*) set on an HTML element. It returns an object with one entry for each custom pogo attribute.

This utility behaves in a similar way to the dataset property.

  • The name of a custom pogo attribute in HTML begins with pogo-. It must contain only letters, numbers and the following characters: dash (-), dot (.), colon (:), underscore (_) -- but NOT any ASCII capital letters (A to Z).
  • The name of a custom pogo attribute in Javascript is the name of the same HTML attribute but in camelCase, with the leading pogo removed and with no hyp.

Example

<div id="user" pogo-id="1234567890" pogo-user="johndoe" pogo-date-of-birth="27-04-1983">John Doe</div>

const el = document.querySelector('#user');

const {id, user, dateOfBirth} = pogoset(el);

// id === '1234567890'
// user === 'johndoe'
// dateOfBirth === '27-04-1983'

Streams - Pub/Sub

Streams is the simple Pogo pub / sub model.

Subscribe example

To subscribe you need to supply the stream name, the function to call when the stream is triggered and the id of the subscriber.

subscribe(
    streamName,
    callback,
    subscriberId
);

Publish example

Streams are published when an update is made to the global pogoState store. Anything subscribed to the streams below will have their functions triggered with the parameters provided passed in.

updatePogoState({ streamName1: { param1: "hello", param2: "world" }, streamName2: { paramY: 4 } });