Socket
Socket
Sign inDemoInstall

@anchan828/nest-storage

Package Overview
Dependencies
57
Maintainers
1
Versions
273
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @anchan828/nest-storage

> TODO: description


Version published
Weekly downloads
71
increased by12.7%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

@anchan828/nest-storage

Install

npm i @anchan828/nest-storage @anchan828/nest-storage-express

Usage

You need to import 2 modules

  • StorageModule
    • This is core module
  • ProviderModule
    • The storage provider you want to use
@Module({
  imports: [
    StorageModule.register({
      bucket: "bucket",
      cacheDir: "path/to/cacheDir",
    }),
    LocalStorageProviderModule.register(),
  ],
})
export class AppModule {}
export class Service {
  constructor(private readonly service: StorageService) {}

  public async uploadFile(): Promise<void> {
    const dataPath = "local-path.txt";
    await this.service.upload(dataPath, "path/to/test.txt");
  }
}

Storage providers

You can set some storage providers.

ProviderPakcage
Local (express)@anchan828/nest-storage-express
Google Cloud Storage@anchan828/nest-storage-gcs
Amazon S3@anchan828/nest-storage-s3

Signed URL

You can get signed URL

await this.service.getSignedUrl(filename, {
  action: "upload" | "download" | "delete",
  // Milliseconds. default is 900000 = 15 mins
  expires: number,
});
// => /_signed_url/bucket/test.txt?signature=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY3Rpb24iOiJ1cGxvYWQiLCJleHBpcmVzIjo5MDAwMDAsImJ1Y2tldCI6ImJ1Y2tldCIsImZpbGVuYW1lIjoidGVzdC50eHQiLCJpYXQiOjE1NzkzMjM2MTYsImV4cCI6MTU4MDIyMzYxNn0.iJfq01VBExCvlGhKcT8hQ9d2lGTLW4miiACX3sG5HO8

responseDispositionFilename

You can use the option to customize the file name when downloading file. If you use this, content-disposition: attachment; filename=\"${filename}\" will be added to the header when downloading.

await this.service.getSignedUrl(filename, {
  action: "download",
  responseDispositionFilename: "changed-filename.txt",
});

FAQs

Last updated on 21 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc