10.3.13 • Published 12 months ago

@coara/nestjs-aws-s3-manager v10.3.13

Weekly downloads
9
License
MIT
Repository
github
Last release
12 months ago

Nestjs aws s3 manager

File manager module for NestJs.

Installation

Yarn

yarn add @coara/nestjs-aws-s3-manager

NPM

npm install @coara/nestjs-aws-s3-manager --save

Getting Started

Let's register the FileManagerModule in app.module.ts

import { Module } from '@nestjs/common';
import { FileManagerModule } from '@coara/nestjs-aws-s3-manager';

@Module({
  imports: [
    FileManagerModule.forRoot({
      awsAccessKeyId: '****',
      awsSecretAccessKey: '****',
      awsBucketName: 'my-bucket-name',
    }),
  ],
})
export class AppModule {}

With Async

import { Module } from '@nestjs/common';
import { FileManagerModule } from '@coara/nestjs-aws-s3-manager';

@Module({
  imports: [
    FileManagerModule.forRootAsync({
      useFactory: (configService: ConfigService) => ({
        awsAccessKeyId: configService.get('AWS_ACCESS_KEY_ID'),
        awsSecretAccessKey: configService.get('AWS_SECRET_ACCESS_KEY'),
        awsBucketName: 'my-bucket-name',
      }),
      inject: [ConfigService],
    }),
  ],
})
export class AppModule {}

API Endpoints

curl -F 'file=@path/to/local/file' http://localhost:3000/images

That's it!

10.3.9

12 months ago

10.3.13

12 months ago

10.3.10

12 months ago

10.3.12

12 months ago

10.3.11

12 months ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago

0.0.0

6 years ago