5.0.20 • Published 6 months ago

@travetto/rest-upload v5.0.20

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Rest Upload Support

Provides integration between the travetto asset and rest module.

Install: @travetto/rest-upload

npm install @travetto/rest-upload

# or

yarn add @travetto/rest-upload

This module provides a clean and direct mechanism for processing uploads, built upon @fastify/busboy. The module also provides some best practices with respect to temporary file deletion.

Once the files are uploaded, they are exposed on RESTful API's request object as req.uploads. The uploaded files are constructed as Blob instances.

A simple example:

Code: Rest controller with upload support

import { Controller, Post, Get, Request } from '@travetto/rest';
import { Upload, UploadAll } from '@travetto/rest-upload';

@Controller('/simple')
export class Simple {

  @Get('/age')
  getAge() {
    return { age: 50 };
  }

  @Post('/age')
  getPage() {
    return { age: 20 };
  }

  /**
   * @param file A file to upload
   */
  @Post('/file')
  loadFile(@Upload() upload: File) {
    return upload;
  }

  /**
   * @param file A file to upload
   */
  @Post('/files')
  @UploadAll()
  async loadFiles({ uploads }: Request) {
    for (const [, upload] of Object.entries(uploads)) {
      return upload;
    }
  }
}
5.0.19

6 months ago

5.0.20

6 months ago

5.0.18

6 months ago

5.0.17

8 months ago

5.0.16

9 months ago

5.0.15

9 months ago

5.0.14

9 months ago

5.0.6

10 months ago

5.0.10

9 months ago

5.0.11

9 months ago

5.0.12

9 months ago

5.0.13

9 months ago

5.0.9

9 months ago

5.0.8

9 months ago

5.0.7

10 months ago

5.0.5

10 months ago

5.0.4

10 months ago

5.0.3

10 months ago

5.0.2

10 months ago

5.0.1

11 months ago

5.0.0

11 months ago

5.0.0-rc.12

11 months ago

5.0.0-rc.13

11 months ago

5.0.0-rc.14

11 months ago

5.0.0-rc.11

11 months ago

5.0.0-rc.10

11 months ago

5.0.0-rc.9

11 months ago

5.0.0-rc.8

11 months ago

5.0.0-rc.7

11 months ago

5.0.0-rc.6

11 months ago

5.0.0-rc.5

11 months ago

5.0.0-rc.4

11 months ago

5.0.0-rc.3

12 months ago

5.0.0-rc.2

12 months ago

5.0.0-rc.1

12 months ago

5.0.0-rc.0

12 months ago