Ask Your Question
4

What are the steps to restrict the overall file size of uploaded files in NestJS using multer?

asked 2021-05-01 11:00:00 +0000

bukephalos gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-10-31 02:00:00 +0000

nofretete gravatar image
  1. Install multer package by running the command: npm install --save @nestjs/platform-express multer.
  2. Import the MulterModule from @nestjs/platform-express in your module file:
import { MulterModule } from '@nestjs/platform-express';
  1. Configure the MulterModule with desired options in the module file:
@Module({
  imports: [
    MulterModule.register({
      dest: './uploads',
      limits: {
        fileSize: 1024 * 1024, // Maximum file size (in bytes)
      },
    }),
  ],
  controllers: [FilesController],
  providers: [FilesService],
})
export class FilesModule {}
  1. In the controller or service where you handle file uploads, use the @UseInterceptors decorator to specify that you want to use the MulterInterceptor:
@UseInterceptors(
  FilesInterceptor('fieldname', 10, {
    fileSize: 1024 * 1024,
  }),
)
uploadFile(@UploadedFiles() files) {
  console.log(files);
}

Here fieldname is the name of the file input field, 10 is the maximum number of files that can be uploaded, and fileSize is the maximum file size allowed for each file. 5. Test the file upload functionality and see that files larger than the specified size are rejected.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-05-01 11:00:00 +0000

Seen: 17 times

Last updated: Oct 31 '22