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

noitamap

v1.0.0

Published

Noita Map

Readme

NoitaMap.com

Ultrafast Superzoom Map for Noita

Map demo

TLDR: This repo contains sources for a very high-resolution highly-performant map for the video game called Noita. Noitamap uses OpenSeadragon. This repo started as a fork of whalehub's repo, which has been deleted from github but we had a lucky fork with updated version of openseadragon and probably a different algo for creating the "pyramid" (zoomable) tiles. My goal is to create the best map viewing experience.

The map iself is being served by cloudflare pages with deployment from this repository.

Where can I find the source tiles?

All the current map captures are backed up as separate 7z archives and can be found in a shared Google Drive Folder.

We're using seed 786433191 while running map capture because it has a couple structures and secrets visible. If you find a seed with even more stuff, please open an issue!

I want to help, what can I do?

If you're a developer, contributions and discussions are welcome, feel free to open PRs and issues, take a look at the project to see what work is being done.

If you're a player, you can help by capturing a new version of one of the game modes, or mods (maps with significant changes over time have date indication on the website), then stitch the map and upload an archive with what you've got to a sharing service like google drive, pixeldrain, gofile, etc, then opening an issue. Also, you can help by translating the map into your language and add more points of interest to the overlays (for those who are unable to open a PR the ability to contribute will be added later in the dev cycle).

How to capture a map

Download the latest release from the noita-mapcap, unpack it and move the noita-mapcap directory into your noita mods folder. To navigate to your mods folder either open the mods directory from inside the game by pressing Mods-->Open mod folder, or opening this directory:

C:\Program Files (x86)\Steam\steamapps\common\Noita\mods\

Opening mod folder from inside the game

Before starting the map capture process, check that all the mod settings are correct: use 3 Worlds capturing mode with 60 frames capture delay and seed set to 786433191, all the settings should look exactly like on this screenshot excep for specific non-standard map sizes mods like alternative biomes. Noita-mapcap settings

How to stitch a map

  1. Navigate to the Stitcher directory, its location is:
C:\Program Files (x86)\Steam\steamapps\common\Noita\mods\noita-mapcap\bin\stitch
  1. Right click inside this directory and select "Open in Terminal" Launching Terminal

  2. Copy the following command and paste it into the terminal (either Ctrl+V or Mouse right click), Do not run the command yet, you will need to rename the output files following the naming convention: gamemode-branch-world-patchDate-seedNumber.dzi (e.g. regular-main-branch-left-2024-04-08-78633191.dzi)

.\stitch.exe --output nightmare-main-branch-left-2024-04-08-78633191.dzi --blend-tile-limit 1 --dzi-tile-size 512 --xmin -53760 --xmax -17408 --ymin -31744 --ymax 41984 --webp-level 9 && .\stitch.exe --output nightmare-main-branch-middle-2024-04-08-78633191.dzi --blend-tile-limit 1 --dzi-tile-size 512 --xmin -17920 --xmax 18432 --ymin -31744 --ymax 41984 --webp-level 9 && .\stitch.exe --output nightmare-main-branch-right-2024-04-08-78633191.dzi --blend-tile-limit 1 --dzi-tile-size 512 --xmin 17920 --xmax 53760 --ymin -31744 --ymax 41984 --webp-level 9
  1. This will launch the stitcher and after it finishes you will see next to the stitch.exe 3 new directories (gamemode-branch-world-patchDate-seedNumber_files), and 3 new files (gamemode-branch-world-patchDate-seedNumber.dzi).

How to share the capture results to get them added to Noitamap

  1. Make a new directory, for example, upload, then create a directory inside it, call it gamemode-branch-world-patchDate and move the stitching results to it.
  2. Create a .7z archive with the maximum compression level (9). You can do it manually by right-clicking the direrctory, then choosing "7-zip-->Add to Archive" and selecting 7z format and "9 - Ultra" compression level, or you can open Windows Terminal inside the upload directory and execute this command:
Get-ChildItem -Directory | ForEach-Object { & "${env:ProgramFiles}\7-Zip\7z.exe" a -mx9 "$($_.FullName).7z" "$($_.FullName)\*" }

image 3. Upload the 7z archive you got to your favorite file sharing service (Google Drive, Mega, PixelDrain, Gofile, etc.) 4. Open a new issue with the new-map-capture label, provide details about the map you've captured and post the link.

Thanks

Huge thanks to @Dadido3, @myndzi, @Acors24 and @dextercd for their work, their help, and advice! Thanks to Arganvain for fixing the logo I initially made, thanks to discord user wand_despawner for capturing several maps, thanks to discord user hey_allen for providing storage space for the map tiles' disaster recovery, thanks to discord user Bohnenkrautsaft for the suggestion to add map loading indicator, refactoring of the indicator's code, and other code fixes and improvements!