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

@quazex/nestjs-s3

v1.2.0

Published

NestJS module for AWS S3 client

Readme

NestJS AWS S3 Module

Core features:

Installation

To install the package, run:

npm install @quazex/nestjs-s3 @aws-sdk/client-s3

Usage

Importing the Module

To use the AWS S3 module in your NestJS application, import it into your root module (e.g., AppModule).

import { Module } from '@nestjs/common';
import { S3Module } from '@quazex/nestjs-s3';

@Module({
    imports: [
        S3Module.forRoot({
            endpoint: 'http://localhost:9009',
            region: 'us-east-1',
            credentials: {
                accessKeyId: 'accessKeyId',
                secretAccessKey: '#########',
            },
            forcePathStyle: true, // for minio
        }),
    ],
})
export class AppModule {}

Using S3 Client

Once the module is registered, you can inject instance of the S3 into your providers:

import { GetObjectCommand, PutObjectCommand, S3Client } from '@aws-sdk/client-s3';
import { Injectable } from '@nestjs/common';
import { InjectS3 } from '@quazex/nestjs-mongodb';

@Injectable()
export class CollectionService {
    private readonly bucket = 'your_bucket';

    constructor(@InjectS3() private readonly client: S3Client) {}

    async insert(document: Record<string, unknown>) {
        const command = new PutObjectCommand({
            Bucket: this.bucket,
            Key: document.id,
            Body: JSON.stringify(document),
        });
        await client.send(command);
    }

    async findOne(id: string) {
        const command = new GetObjectCommand({
            Bucket: this.bucket,
            Key: id,
        });

        const result = await client.send(command);
        const data = await result.Body?.transformToString();

        if (typeof data === 'string') {
            return JSON.parse(data);
        }

        return null;
    }
}

Async Configuration

If you need dynamic configuration, use forRootAsync:

import { Module } from '@nestjs/common';
import { S3Module } from '@quazex/nestjs-s3';

@Module({
    imports: [
        S3Module.forRootAsync({
            useFactory: async (config: SomeConfigProvider) => ({
                endpoint: config.endpoint,
                region: config.region,
                credentials: {
                    accessKeyId: config.access,
                    secretAccessKey: config.secret,
                },
                forcePathStyle: true, // for minio
            }),
            inject: [
                SomeConfigProvider,
            ],
        }),
    ],
})
export class AppModule {}

Connection and graceful shutdown

By default, this module doesn't manage client connection on application shutdown. You can read more about lifecycle hooks on the NestJS documentation page.

// main.ts
const app = await NestFactory.create(AppModule);

// Starts listening for shutdown hooks
app.enableShutdownHooks(); // <<<

await app.listen(process.env.PORT ?? 3000);
// app.bootstrap.ts
import { GetObjectCommand, PutObjectCommand, S3Client } from '@aws-sdk/client-s3';
import { Injectable, OnApplicationBootstrap, OnApplicationShutdown } from '@nestjs/common';
import { InjectS3 } from '@quazex/nestjs-s3';

@Injectable()
export class AppBootstrap implements OnApplicationShutdown {
    constructor(@InjectS3() private readonly client: S3Client) {}

    public onApplicationShutdown(): void {
        this.client.destroy();
    }
}

License

MIT