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

@sflueckiger/s3xplorer

v1.1.0

Published

A beautiful, secure S3 bucket explorer with encrypted credential storage

Readme

S3 Explorer

A beautiful, secure S3 bucket explorer with encrypted credential storage. Browse and preview files from any S3-compatible storage (AWS S3, MinIO, Cloudflare R2, etc.) with a native macOS Finder-like column browser interface.

S3 Explorer Screenshot

Features

  • Column Browser Interface: Navigate your buckets with a familiar Finder-style column view
  • Multi-Provider Support: Works with AWS S3, MinIO, Cloudflare R2, and any S3-compatible storage
  • Encrypted Credentials: All credentials are encrypted at rest using AES-256-GCM with scrypt key derivation
  • File Preview: Preview images and text files directly in the browser
  • Multiple Workspaces: Organize connections across multiple encrypted workspace files
  • Connection Groups: Group and color-code connections for easy organization

Installation

# Run directly with bunx (recommended)
bunx @sflueckiger/s3explore

# Or install globally
bun install -g @sflueckiger/s3explore
s3explore

Requirements

  • Bun v1.0.0 or later

Usage

When you first run S3 Explorer, you'll be prompted to create a new workspace or open an existing one. A workspace is an encrypted file that stores your S3 connection credentials.

Creating a Connection

  1. Click the + button in the sidebar
  2. Enter your S3 credentials:
    • Name: A friendly name for this connection
    • Bucket: The bucket name
    • Region: AWS region (or use a custom endpoint)
    • Endpoint: For non-AWS providers (MinIO, R2, etc.)
    • Access Key ID: Your access key
    • Secret Access Key: Your secret key
  3. Click Save

Navigating Files

  • Click folders to expand them in new columns
  • Click files to preview them in the right panel
  • Use the breadcrumb bar to navigate back
  • Download files directly from the preview panel

Security

S3 Explorer takes security seriously:

  • Local-only: All data stays on your machine. No cloud sync, no telemetry.
  • Encrypted at rest: Credentials are encrypted using AES-256-GCM
  • Key derivation: Your password is processed with scrypt (N=2^17, r=8, p=1)
  • No credential logging: Secrets are never logged or exposed via the API
  • Memory isolation: Each workspace has its own encryption context

Storage Location

Workspace files and configuration are stored in ~/.s3explore/:

~/.s3explore/
├── workspaces.json   # List of known workspace paths
└── config.enc        # Default workspace (encrypted)

Development

# Clone and install dependencies
git clone https://github.com/sflueckiger/s3explore.git
cd s3explore
bun install

# Run in development mode (backend + frontend with hot reload)
bun run dev

# Build for production
bun run build

# Run production build
bun run start

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

MIT License - see the LICENSE file for details.

Author

Sebastian Flueckiger