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

@walkeros/server-store-s3

v3.0.2

Published

S3-compatible object storage for walkerOS server flows

Readme

@walkeros/server-store-s3

S3-compatible object storage for walkerOS server flows.

Works with AWS S3, Cloudflare R2, Scaleway, DigitalOcean Spaces, Backblaze B2, MinIO, and any S3-compatible provider. Uses s3mini (~20 KB, zero dependencies).

Quick Start (Bundled Mode)

{
  "version": 3,
  "flows": {
    "default": {
      "server": {},
      "stores": {
        "assets": {
          "package": "@walkeros/server-store-s3",
          "config": {
            "settings": {
              "bucket": "my-assets",
              "endpoint": "https://s3.eu-west-1.amazonaws.com",
              "accessKeyId": "$env.S3_ACCESS_KEY",
              "secretAccessKey": "$env.S3_SECRET_KEY",
              "region": "eu-west-1",
              "prefix": "public"
            }
          }
        }
      },
      "transformers": {
        "file": {
          "package": "@walkeros/server-transformer-file",
          "config": { "settings": { "prefix": "/static" } },
          "env": { "store": "$store:assets" }
        }
      }
    }
  }
}

Integrated Mode

import { storeS3Init } from '@walkeros/server-store-s3';

const store = await storeS3Init({
  collector,
  logger,
  id: 'assets',
  config: {
    settings: {
      bucket: 'my-assets',
      endpoint: 'https://s3.eu-west-1.amazonaws.com',
      accessKeyId: process.env.S3_ACCESS_KEY!,
      secretAccessKey: process.env.S3_SECRET_KEY!,
      region: 'eu-west-1',
      prefix: 'public',
    },
  },
  env: {},
});

const file = await store.get('walker.js'); // Buffer | undefined
await store.set('cache/data.json', Buffer.from('{}'));
await store.delete('old-file.txt');

Configuration

| Setting | Type | Required | Default | Description | | ----------------- | -------- | -------- | -------- | -------------------------- | | bucket | string | Yes | — | S3 bucket name | | endpoint | string | Yes | — | S3-compatible endpoint URL | | accessKeyId | string | Yes | — | S3 access key ID | | secretAccessKey | string | Yes | — | S3 secret access key | | region | string | No | "auto" | AWS region (SigV4 signing) | | prefix | string | No | — | Key prefix for scoping |

Provider Examples

| Provider | Endpoint | Notes | | ------------- | -------------------------------------------- | ---------------- | | AWS S3 | https://s3.<region>.amazonaws.com | Standard | | Cloudflare R2 | https://<account>.r2.cloudflarestorage.com | No egress fees | | Scaleway | https://s3.<region>.scw.cloud | EU hosting | | DigitalOcean | https://<region>.digitaloceanspaces.com | Simple pricing | | Backblaze B2 | https://s3.<region>.backblazeb2.com | Cheapest storage | | MinIO | http://localhost:9000 | Self-hosted |

Credentials

Use $env. references in Flow.Config to avoid hardcoding secrets:

{
  "accessKeyId": "$env.S3_ACCESS_KEY",
  "secretAccessKey": "$env.S3_SECRET_KEY"
}

Unlike the AWS SDK, s3mini has no implicit credential chain — accessKeyId and secretAccessKey are always required.

Managed Deployments (Mode D)

This is the recommended store for managed walkerOS deployments. Files live in a bucket rather than needing to be baked into a Docker image, enabling hot-swap of static assets.