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

azbrand-s3

v1.0.2

Published

Official TypeScript & Node.js SDK for AZBrand zero-egress S3-compatible cloud object storage.

Readme

AZBrand S3 Cloud Storage SDK

Official Node.js and TypeScript client for AZBrand S3 Cloud Object Storage.

Store, stream, and distribute media, backups, and large files globally with zero egress bandwidth fees and 100% S3 compatibility.


Features

  • Zero Egress Fees: Download unlimited bandwidth without surprise hyperscaler invoices.
  • Direct Presigned S3 PUT: Upload gigabyte-sized files directly to the storage edge.
  • Bucket Management: Create Private Vaults (AES-256), Public CDN Buckets, and Multi-Tenant Shared Workspaces.
  • Time-Expiring Share Links: Generate signed temporary URLs or permanent public links in one call.
  • TypeScript First: Fully typed request and response models.

Installation

Install using npm: npm install azbrand-s3


Quick Start

Generate your API Access Keys from your AZBrand Storage Dashboard.

Example usage in TypeScript or JavaScript:

import { AZBrandStorage } from "azbrand-s3";

const storage = new AZBrandStorage({ accessKeyId: process.env.AZ_ACCESS_KEY_ID, secretAccessKey: process.env.AZ_SECRET_ACCESS_KEY, });

// 1. Upload a File const file = await storage.files.upload({ bucket: "my-backups", file: "./database.sql.gz", fileName: "database.sql.gz", contentType: "application/gzip", });

console.log("Uploaded File:", file.r2_storage_path);

// 2. List Files in Bucket const files = await storage.files.list({ bucket: "my-backups" }); console.log("Bucket Files:", files);

// 3. Get Signed 1-Hour Download Link const downloadUrl = await storage.files.getDownloadUrl(file.id); console.log("Download URL:", downloadUrl);


API Reference

Buckets

  • storage.buckets.list() - List all buckets (Private, Public CDN, and Shared).
  • storage.buckets.create({ name, type }) - Create an S3 storage bucket.
  • storage.buckets.delete(bucketId) - Permanently delete a bucket and its contents.

Files

  • storage.files.upload({ bucket, file, fileName, contentType }) - Upload via direct S3 signed PUT.
  • storage.files.list({ bucket, query }) - Query files with prefix filtering.
  • storage.files.getDownloadUrl(fileId) - Generate temporary signed S3 download URL.
  • storage.files.getMetadata(fileId) - Inspect size, ETag, and Content-Type (HEAD).
  • storage.files.copy({ sourceFileId, targetBucketId, newFileName }) - Fast S3 server-side copy.
  • storage.files.delete(fileId) - Permanently delete a storage object.
  • storage.files.share({ fileId, isPublic, expiresInDays }) - Create public share link.

Usage

  • storage.usage.get() - Check storage quota and Class A/B request metrics.

Links & Resources


License

MIT (c) AZBrand Canada