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

bubbls-ugs-assets-main-cookieclicker

v3.0.0

Published

Auto-patched assets for cookieclicker

Readme

cookieclicker

The original game can be found at http://orteil.dashnet.org/cookieclicker/

This mirror for, errrr, like, educational purpose, either to download for your own offline education or to be played online from http://ozh.github.io/cookieclicker/ if you cannot "educate" yourself on the original URL

How to update

If the original game updates, here is how you can update the mirror:

1. Fetch all new images :

From the root,

Set up user agent:

  • USER="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36"

  • cd img/

  • wget --user-agent="$USER" --convert-links -O index.html http://orteil.dashnet.org/cookieclicker/img/

  • grep -v PARENTDIR index.html | grep '\[IMG' | grep -Po 'a href="\K.*?(?=")' | sed 's/\?.*//' > _imglist.txt

  • wget --user-agent="$USER" -N -i _imglist.txt -B http://orteil.dashnet.org/cookieclicker/img/

2. Fetch all new sounds :

Similarly, from the root :

  • cd snd/
  • wget --user-agent="$USER" --convert-links -O index.html http://orteil.dashnet.org/cookieclicker/snd/
  • grep -v PARENTDIR index.html | grep '\[SND' | grep -Po 'a href="\K.*?(?=")' | sed 's/\?.*//' > _sndlist.txt
  • wget --user-agent="$USER" -N -i _sndlist.txt -B http://orteil.dashnet.org/cookieclicker/snd/

3. Fetch all new translations :

Similarly, from the root :

  • cd loc/
  • wget --user-agent="$USER" --convert-links -O index.html http://orteil.dashnet.org/cookieclicker/loc/
  • grep -v PARENTDIR index.html | grep '\[TXT' | grep -Po 'a href="\K.*?(?=")' | sed 's/\?.*//' > _loclist.txt
  • wget --user-agent="$USER" -i _loclist.txt http://orteil.dashnet.org/cookieclicker/loc/

4. Update js and html files :

From the root directory :

  • Fetch the updated index.html file: wget --user-agent="$USER" -O index.html http://orteil.dashnet.org/cookieclicker/
  • Fetch the updated style.css file: wget --user-agent="$USER" -O style.css http://orteil.dashnet.org/cookieclicker/style.css
  • Fetch updated js files : wget --user-agent="$USER" -i _jslist.txt -B http://orteil.dashnet.org/cookieclicker/
  • Scan index.html for any new <script src and also main.js for any new local javascript (eg Game.last.minigameUrl). If there are new scripts, update the _jslist.txt accordingly.
  • In main.js there is a nonfunctional URL we need to change:
    • Find DataDir=window.location.origin+'/data/';, and change to DataDir='https://orteil.dashnet.org/data/';

5. Report update here :)

If you happen to update, please make a pull request for others to benefit, thanks!