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

activist

v0.1.1

Published

resilience to network interference

Downloads

3

Readme

activist.js

activist.js is a standalone library for making your site resilient to unexpected network events.

Activist comes in 2 versions, which offer a trade-off between how much work you need to do to add the library to your site, and how many of your users will be able to take advantage of the work. New browsers provide features that make the installation of activist.js as simple as adding a script tag to your home page, however this version of the library will only work for a small percentage of your user base (up-to-date chrome users). Activist also is packaged with a drop-in application cache manifst, which will extend the benefit to most users, but can require wider site changes.

Deploying

  1. Add activist.js to your site.

    <script type='text/javascript' src='activist.js' async></script>
  2. Add Offline Cache (recommended)

    Adding an application cache manifest will allow activist.js to run on most browsers, and is strongly recommended. Adding this cache is a 2 step process. First, modify the html tag of your pages to reference the cache. It should look something like this:

    <html manifest="/activist.appcache">

    A sample appcache is available on activistjs.com.

    The application cache needs to be served with the mime type of 'text/cache-manifest' to work on old versions of internet explorer.

    More information on application cache mechanics are available on the w3 website.

How?

Activist tries really hard to keep your content accessible in the face of adversity. In practice this results in several independent processes that kick into action when your server is unavailable.

The first line of access is to preserve a reasonable cache of your site to allow users to see existing content even if they can't get new updates. To this end, Activist maintains a cache of your content on client machines and shows that content when needed.

To retreive updates, Activist attempts to establish connectivity through CDNs and other rendezvous services. These rendezvous services update while Activist is online, and aim to force interference with a large quantity of content to successfully disrupt.

Contributing

Contribution and help are welcome! activist.js development is centered on github, and open tasks can be found in the issues area of this repository.

A