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

@oxfordabstracts/ragu

v0.1.24

Published

Ragu is a minimal Rust port of the popular PureScript package manager, [Spago](https://github.com/purescript/spago).

Readme

Ragu

Ragu is a minimal Rust port of the popular PureScript package manager, Spago.

It is designed to be a drop-in replacement for Spago, with a focus on performance and simplicity.

⚠️ Early Development Stage

This project is in the early stages of development and is not yet ready for production use.

This was built with our project in mind and hasn't been thoroughly tested in other environments.

It was developed over a few days by a single developer (+ some vibe-ing), so there are several rough edges that need refinement.

Rust is relatively new to me so sorry for any smelly or non-idiomatic code...

Reasoning

Spago is an excellent package manager for PureScript, but it is written in JavaScript and has performance issues on large workspaces. This caused significant challenges at my current company Oxford Abstracts.

We had seen impressive performance improvements from Rust in other areas of PureScript and it seemed like an ideal fit for a simple port of Spago.

Features

Most of the key day-to-day features of Spago are supported:

  • Build purs projects
  • Read spago.yaml packages
  • Read workspace configurations
  • Install packages from git package sets
  • Install packages from git repos directly
  • Install packages from local paths
  • Install packages from the registry

Heavy caching is implemented for packages and package sets, so slow commands typically only need to be run once.

Key differences

There are several key differences from Spago:

  • No package publishing
  • No version ranges, only package sets or manually specified github packages.
  • No -p - all nested workspace work handled by navigating to the workspace directory and running commands from there.
  • Some new commands:
    • ragu workspace - list all local packages
    • ragu circular-deps - check for circular dependencies in the workspace
    • ragu check-deps - check for broken dependencies in the workspace and suggest fixes
    • ragu imports - analyze imports in source files and categorize them
    • ragu modules - analyze modules in source files (can be grouped or filtered by package, etc.)

The check-deps equivalent in Spago took around 20 minutes to run on our workspace. It now takes under a second and can be run in CI.

The same is true of circular-deps, which we now run along with check-deps to ensure dependencies in our (stupidly large) workspace remain healthy.

Usage

ragu help

Replacing Spago locally

cargo install --path .

Then alias spago to ragu if you want it to interact with exsiting tooling that expects spago sources.