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

parlofs

v0.2.30

Published

Parlo — universal filesystem for humans and AI agents. CLI + SDK in one package.

Readme

parlofs

Parlo is a universal filesystem and remote-command surface for humans, scripts, and AI agents.

  • Mount cloud drives and API connections as folders under ~/parlo/
  • Browse GitHub repos under ~/parlo/git/<owner>/<repo>/
  • Run heavy repo search with remote ripgrep in Parlo containers

The npm package is parlofs; the installed command is parlo.

Install

npm install -g parlofs
parlo setup
parlo mount

The optional rg passthrough wrapper is not installed automatically by npm. Install it explicitly if you want plain rg ... ~/parlo/git/* to route to remote Parlo ripgrep:

parlo install-rg-wrapper
# or: parlo setup --install-rg-wrapper

That creates ~/.parlo/bin/rg and adds ~/.parlo/bin to your shell PATH. The wrapper only intercepts rg calls that target Parlo git paths like ~/parlo/git/*; all normal local rg calls delegate to your real ripgrep binary.

If your shell has not picked up the wrapper yet:

export PATH="$HOME/.parlo/bin:$PATH"

Sign up

parlo init           # humans: browser-based
parlo agent-signup   # agents: proof-of-work, no browser, no email

Agent one-liner:

curl -fsSL https://parlo.run/agent | sh -s -- --yes

Mount

parlo mount
ls ~/parlo/

Mount strategy auto-detects:

| Platform | Strategy | |---|---| | macOS 26+ | FSKit | | macOS + FUSE-T | FUSE-T | | Linux + FUSE | native FUSE | | CI/sandbox | direct ops / folder mode |

API connections as folders

parlo connect github
parlo connect linear
parlo connect stripe

That opens your browser to authorize. Once done, the API appears as files:

ls ~/parlo/github/
cat ~/parlo/linear/ENG-123.md
vim ~/parlo/github/issues/42.md

Parlo generates filesystem adapters. ls, cat, editor saves, and rm map to API operations.

Remote GitHub repo search

Use parlo rg to run real ripgrep inside Parlo's Cloudflare Container, next to the cached repo checkout:

parlo rg malloc -t cpp https://github.com/v8/v8
parlo rg malloc -t cpp v8/v8
parlo rg VACUUM postgres/postgres --path src/backend/commands

With the optional wrapper installed, this local-looking syntax is routed remotely too:

rg malloc -t cpp ~/parlo/git/v8/v8

Only Parlo git paths are intercepted. Local usage remains local:

rg TODO ./src          # local rg
rg malloc ~/parlo/git/v8/v8  # remote parlo rg

Force local rg for Parlo paths:

PARLO_RG_LOCAL=1 rg malloc -t cpp ~/parlo/git/v8/v8

Friendly formatted search:

parlo grep "VACUUM" postgres/postgres --path src/backend/commands

Browse repos as files

ls ~/parlo/git/v8/v8/src
cat ~/parlo/git/postgres/postgres/README.md

Use the mount for browsing and reading. Use parlo rg / wrapped rg for recursive search so the work runs remotely instead of over FUSE.

CI and headless automation

For containers and scripts, pass tokens directly:

parlo connect stripe --headless --token "$STRIPE_SECRET_KEY"
parlo connect github --headless --token "$GH_PAT"

Direct ops without mounting:

parlo ls    github/issues/
parlo cat   linear/ENG-123.md
parlo write linear/ENG-123.md --from - <<< "new content"
parlo rg    TODO owner/repo

SDK

import { ParloDrive, ApiProvider } from 'parlofs'

const drive = new ParloDrive({
  provider: new ApiProvider({ apiBase, driveId, sessionToken }),
})
await drive.init()
const entries = await drive.list('/')

Links

License

MIT