[NestJS] .CSV 파일을 JSON 형태로 변환하기
변환에 앞서 새프로젝트 구성을 마쳤다는 가정하에 진행 변환에 필요한 파일 업로드를 처리할 엔드포인트 컨트롤러 생성 app.controller.ts import { Controller, Post, UploadedFile, UseInterceptors, } from '@nestjs/common'; import { FileInterceptor } from '@nestjs/platform-express'; import { ExcelService } from './excel.service'; @Controller() export class AppController { constructor(private readonly excelService: ExcelService) {} @Post('/upload') // 데코..
2023.08.04