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 🙏

© 2024 – Pkg Stats / Ryan Hefner

nest-multer-liara

v0.3.0

Published

NestJS library for liara.ir storage

Downloads

3

Readme

Useful package for Liara.ir Storage

AWS, S3, Multer, Multer-S3

Installation

[npm]
> npm i nest-multer-liara

[yarn]
> yarn add nest-multer-liara

How too use

// app.module.ts
import { LiaraStorageModule } from 'nest-multer-liara';

@Module({
  imports: [
    LiaraStorageModule.register({
      // Required, liara access key
      accessKey: 'LIARA_ACCESS_KEY',

      // Required, liara secret key
      secretKey: 'LIARA_SECRET_KEY',

      // Required, liara bucket name
      bucketName: 'LIARA_BUCKET_NAME',

      // Optional, liara end point
      endPoint: 'storage.iran.liara.space',

      // Optional, The files extension you support to upload. Separate them using comma
      // Default: png,jpg,jpeg,svg,tiff,gif,webm,mpg,mp2,mpeg,mpv,ogg,mp4,m4p,m4v,api,wmv,mov,flv,swf,pdf,m4a,mp3,wav,wma,aac
      mimes: 'png,jpg,jpeg,svg',

      // Optional, Maximum size of each file in bytes. (Default: Infinity)
      limitSize: 1000000,

      // Optional
      region: 'default',
    }),
  ],
})
export class AppModule {}
// your.service.ts
import { LiaraStorageService } from 'nest-multer-liara';

export class YourService {
  constructor(private readonly storageService: LiaraStorageService) {}

  async upload(request: any): Promise<any> {
    let file = null;

    try {
      file = await this.storageService.put(request, 'file');
      // or
      file = await this.storageService.setRequestProperty('file').put(request);
    } catch (error) {
      console.log(error);
    }

    if (file) {
      const data = {
        originalname: file.originalname,
        mimetype: file.mimetype,
        key: file.key,
        location: file.location,
        size: file.size,
      };

      // your code
    }
  }

  async delete(key: string) {
    try {
      await this.storageService.delete(key);
    } catch (error) {
      console.log(error);
    }
  }
}

You can access to all s3 apis with this.storageService.client

LiaraStorageService Apis

| method | description | | ------------------------------------ | ----------------------------------------------------------------- | | setRequestProperty(property: string) | set request field key | | put(request: any, property?: string) | upload media, arg 1 is request object, arg 2 is request field key | | delete(key: string) | remove object from storage |

Author

Mostafa Gholami (Github Page)