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

@tacxou/nestjs_module_factorydrive-s3

v1.0.5

Published

AWS S3 driver for @tacxou/nestjs_module_factorydrive

Readme

S3 driver for Factory drive module

S3 storage driver for @tacxou/nestjs_module_factorydrive, built for NestJS.

Features

  • Amazon S3-compatible implementation of AbstractStorage
  • Common file operations (put, get, copy, move, delete, exists)
  • Stream and buffer support for downloads/uploads
  • Signed URL generation via AWS SDK v3
  • Flat listing with automatic pagination (listObjectsV2)
  • Domain exceptions mapping from S3 errors

Requirements

  • Node.js >= 22
  • Bun >= 1 (for local scripts/tests in this repository)
  • A configured S3 bucket (AWS S3 or S3-compatible endpoint)

Installation

Install the Factory Drive core module and this S3 driver:

npm install @tacxou/nestjs_module_factorydrive @tacxou/nestjs_module_factorydrive-s3
yarn add @tacxou/nestjs_module_factorydrive @tacxou/nestjs_module_factorydrive-s3
pnpm add @tacxou/nestjs_module_factorydrive @tacxou/nestjs_module_factorydrive-s3
bun add @tacxou/nestjs_module_factorydrive @tacxou/nestjs_module_factorydrive-s3

Quick start (NestJS)

Register the driver class in your app startup:

import { Module } from '@nestjs/common'
import { FactorydriveService } from '@tacxou/nestjs_module_factorydrive'
import { AwsS3Storage } from '@tacxou/nestjs_module_factorydrive-s3'

@Module({
  // ...
})
export class AppModule {
  public constructor(storage: FactorydriveService) {
    storage.registerDriver('s3', AwsS3Storage)
  }
}

Driver configuration

The constructor accepts AmazonWebServicesS3StorageConfig, which extends AWS S3ClientConfig and adds:

  • bucket (string, required): target bucket name

Example:

import { AwsS3Storage } from '@tacxou/nestjs_module_factorydrive-s3'

const storage = new AwsS3Storage({
  bucket: 'my-app-bucket',
  region: 'eu-west-1',
  credentials: {
    accessKeyId: process.env.AWS_ACCESS_KEY_ID!,
    secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY!,
  },
})

For S3-compatible providers (MinIO, DigitalOcean Spaces, etc.), pass your custom endpoint/options through standard AWS SDK S3ClientConfig.

Available methods

Write / update

  • put(location, content): upload string, Buffer, or readable stream
  • copy(src, dest): copy object within the bucket
  • move(src, dest): copy then delete source
  • delete(location): delete object (wasDeleted is null, raw response is exposed)

Read

  • get(location, encoding?): returns file content as text
  • getBuffer(location): returns file content as Buffer
  • getStream(location): returns a readable stream
  • getStat(location): returns { size, modified, raw }
  • exists(location): checks object existence
  • flatList(prefix?): async iterator over all object keys (paginated)
  • getSignedUrl(location, options?): temporary signed GET URL (default expiresIn = 900 seconds)

Error handling

Known S3 errors are converted into Factory Drive exceptions:

  • NoSuchBucket -> NoSuchBucketException
  • NoSuchKey -> FileNotFoundException
  • AllAccessDisabled -> PermissionMissingException
  • any other error -> UnknownException

This keeps error handling consistent with the rest of the Factory Drive ecosystem.

Example usage

await storage.put('documents/invoice.txt', 'hello world')

const { exists } = await storage.exists('documents/invoice.txt')
if (exists) {
  const file = await storage.get('documents/invoice.txt')
  console.log(file.content)
}

const signed = await storage.getSignedUrl('documents/invoice.txt', { expiresIn: 60 })
console.log(signed.signedUrl)

Development

Useful scripts:

  • bun test: run tests
  • bun test --coverage --coverage-reporter lcov: run coverage
  • bun run build: build package

CI runs tests (with coverage upload) and build on pushes/PRs.

Compatibility

  • Peer dependency: @tacxou/nestjs_module_factorydrive@^1.0.0
  • TypeScript peer dependency: ^5.0.0

Security

Please read SECURITY.md before reporting vulnerabilities.

License

MIT, see LICENSE.