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

dawnfetch

v0.1.4

Published

🏳️‍⚧️ a fast, cross-platform system info CLI with beautiful theme support

Downloads

473

Readme

dawnfetch

a fast, themed, cross-platform system info CLI inspired by neofetch and fastfetch.

release build latest release go stars

Quick links: InstallBuildBenchmarkShowcase

Logo credits: all distro ASCII logos in ascii/ are sourced from the fastfetch project. Credit goes to the fastfetch contributors.

Install

Choose one method:

  1. Linux/macOS (recommended)
curl -fsSL https://raw.githubusercontent.com/almightynan/dawnfetch/main/cli/install.sh | bash
  1. Windows (PowerShell)
powershell -c "irm https://raw.githubusercontent.com/almightynan/dawnfetch/main/cli/install.ps1 | iex"
  1. Windows 7 / old PowerShell fallback
$f="$env:TEMP\dawnfetch-install.ps1";(New-Object Net.WebClient).DownloadFile('https://raw.githubusercontent.com/almightynan/dawnfetch/main/cli/install.ps1',$f);powershell -File $f
  1. npm
npm i -g dawnfetch

After npm install (if command is not recognized):

  • Linux (current shell): source ~/.bashrc or source ~/.zshrc
  • Windows PowerShell (current window):
$env:Path=[Environment]::GetEnvironmentVariable("Path","User")+";"+[Environment]::GetEnvironmentVariable("Path","Machine")
  • Or simply close and reopen the terminal.

If your system is on older Node/npm (example: Node 12 / npm 6), prefer direct install instead of npm:

powershell -c "irm https://raw.githubusercontent.com/almightynan/dawnfetch/main/cli/install.ps1 | iex"

If you use bun and see Blocked postinstall, allow trusted scripts and reinstall:

bun pm -g untrusted
bun remove -g dawnfetch && bun add -g dawnfetch

To verify installation run:

dawnfetch --version
dawnfetch

Build from source

All build scripts output binaries to the repo root dist/ directory.

Linux:

bash build/build-linux.sh

macOS:

bash build/build-macos.sh

Windows (PowerShell):

powershell -File build/build-windows.ps1

Expected outputs:

  • dist/dawnfetch-linux-amd64
  • dist/dawnfetch-linux-arm64
  • dist/dawnfetch-linux-386
  • dist/dawnfetch-macos-amd64
  • dist/dawnfetch-macos-arm64
  • dist/dawnfetch-windows-amd64.exe
  • dist/dawnfetch-windows-386.exe
  • dist/dawnfetch-windows-arm64.exe

Benchmark (100 runs)

Run benchmark:

python3 bench/benchmark.py --runs 100 --warmup 1

Hyperfine results (100 runs):

| Tool | Runs | Mean (ms) | Median (ms) | P95 (ms) | Min (ms) | Max (ms) | StdDev (ms) | |---|---:|---:|---:|---:|---:|---:|---:| | dawnfetch | 100 | 7.43 | 6.60 | 7.55 | 6.01 | 42.79 | 4.53 | | fastfetch | 100 | 11.91 | 10.99 | 14.33 | 10.13 | 52.03 | 5.24 | | hifetch | 100 | 17.55 | 17.10 | 17.75 | 16.60 | 56.41 | 3.93 | | macchina | 100 | 100.95 | 75.37 | 221.11 | 48.82 | 578.82 | 71.91 | | neofetch | 100 | 398.99 | 386.21 | 449.06 | 361.81 | 771.10 | 46.58 | | screenfetch | 100 | 848.98 | 687.62 | 1374.44 | 640.72 | 6485.31 | 626.92 |

benchmark ran using hyperfine via: bench/benchmark.py