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 🙏

© 2026 – Pkg Stats / Ryan Hefner

elm-sideload

v1.0.2

Published

Sideload / override Elm packages from your elm.json.

Readme

elm-sideload

elm-sideload: congratulations, you can write javascript again

A CLI tool for sideloading/overriding Elm packages from your elm.json.

warning

This is extremely alpha. Proceed with caution.

✅ Tested and working with elm make ✅ Tested and working with elm-pages ❌ Not tested at all on Windows (if somebody wants to check that out, it'd be cool) ❌ Not tested with Lamdera ❌ Not tested with Zokka

installation

npm install --save-dev elm-sideload

quick start

# run with no arguments to see the helptext
elm-sideload

# initialize sideload configuration
elm-sideload init

# configure elm/virtual-dom with Simon's browser extension patches
elm-sideload configure elm/virtual-dom --github https://github.com/lydell/virtual-dom --branch safe
elm-sideload configure elm/html --github https://github.com/lydell/html --branch safe
elm-sideload configure elm/browser --github https://github.com/lydell/browser --branch safe

# apply the sideloads
elm-sideload install

# build your Elm app
elm make src/Main.elm

are you sure this is a good idea?

We're doing as much as we can to make this a safe and stable experience out here:

  • When you attempt to install a sideload, if the package that you're attempting to overwrite does not exist in your local packages directory, the program will fail rather than risk putting your system in an inconsistent state.
  • Branch names are resolved to commit SHAs immediately and only SHAs are stored in your configuration file, ensuring reproducible builds.
  • Git repositories are cloned to a local cache directory (.elm.sideload.cache) for faster subsequent operations.
  • All file operations use functional error handling with comprehensive error reporting.

why have you done this?

It's wild out there. Many packages in the elm organization on GitHub have outstanding pull requests, open issues, and so on.

I am personally a big giant fan of and shill for the man/myth/legend known as evancz, and I have all of the respect in the world for his style of working. This isn't some "phillip the fifth"-ass bullshit or whatever (if you know, you know). But the thing is, at time of writing, pretty much 100% of deployed Elm applications suffer from the whole "oh no what if somebody installs literally any browser extension" explosion-at-runtime. Elm-Certified Level 40 Decoder Wizard https://github.com/lydell has released a bunch of patches for elm/virtual-dom that fix this issue, as well as a handy guide on installing those packages.

The real fix would be to get everybody using https://github.com/Zokka-Dev/zokka-compiler/ until we hear news from The Evan, but since many of our friends are using the Lamdera compiler or somesuch, well - look, if I knew how to merge the "package override" bits of the Zokka compiler with the Lamdera compiler, I wouldn't be doing this in Typescript, now, would I?

So here's this. It's a blood-clotting agent. Nothing more. Batteries included, but pay attention to which direction the terminals are facing when you put them in. Lipo fires are hard to extinguish. By using this software, you are accepting responsibility on behalf of your users for leaving the Safe Zone of the Elm compiler and its guarantees. You are stating that you know what you are doing. And I believe you, and I believe in you, or else I wouldn't be doing this - just, be careful, alright?

License

MIT