목록2024/08 (2)
JS Coding
함수로 만들어 png 파일은 파일 프로세스 사용중이어도 삭제 가능하지만 JPEG 파일은 프로세스 사용중이면 삭제가 불가능 하다. 그래서 강제적으로 프로세스 종료를 시켜주는 함수를 불러 실행 시켜줘야 한다. async function deleteFileWithForce(filePath) { try { await fs.promises.unlink(filePath); // 기본적으로 파일 삭제 시도 console.log(`File ${filePath} deleted successfully`); } catch (err) { console.warn( `File ${filePath} could not be deleted with unlink...
npm install swagger-jsdocnpm install swagger-clinpm install swagger-ui-expressnpm install swagger-autogen packege.json 에설치 "swagger": "node ./app/utils/swagger/swagger.js" scripts 에 입력 새롭게 업데이트 시 ( 등록 하거나 수정하거나 ) npm run swagger 실행 해야json 파일 만들어서 url 보여짐 import swaggerUi from 'swagger-ui-express';import swaggerFile from './app/utils/swagger/swagger-output.json' assert { type: 'json' }; *app.js..