Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

@anchan828/nest-storage

Package Overview
Dependencies
3
Maintainers
1
Versions
223
Issues
File Explorer

Advanced tools

@anchan828/nest-storage

> TODO: description

    1.0.37latest
    Github

Version published
Maintainers
1
Weekly downloads
511
decreased by-29.22%

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 19 Mar 2023

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • 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