Error Solution

Error Solution

npm 참조 에러

에러명 npm ERR! Fix the upstream dependency conflict, or retry npm ERR! this command with --force or --legacy-peer-deps npm ERR! to accept an incorrect (and potentially broken) dependency resolution. 에러 설명 🔖 버전 참조를 할 때 서로 맞지 않아 나는 에러 npm 6 까지는 --legacy-peer-deps 와 비슷한 방식으로 자동 설치되었으나 npm 7부터 우선 차단 시키기 때문에 발생 해결 방법 -force: bypass the conflict 충돌 우회 npm i --force -legacy-peer-deps: ignore peer depende..

Error Solution

413 Payload too large

에러명 ERROR [ExceptionsHandler] request entity too large PayloadTooLargeError : request entity too large 에러 설명 🔖 Nestjs의 API를 PUT, POST 등으로 호출할 경우에 Json 용량이 커지게 될 경우 발생하는 에러 해결 방법 main.ts에 다음 내용 추가 (app.listen 위에 추가) import { json } from 'body-parser'; app.use(json({ limit: '50mb' })); await app.listen(port);

Error Solution

nodejs & npm 업데이트 에러

에러명 ERROR: npm is known not to run on Node.js v10.19.0 You'll need to upgrade to a newer Node.js version in order to use this version of npm. You can find the latest version at https://nodejs.org/ 에러 설명 🔖 npm과 node.js 의 버전이 안맞아서 충돌 해결 방법 캐시 삭제 (chche가 남아있는 경우 에러 발생 가능성이 있음) sudo npm cache clean -f node.js와 npm 완전 제거 sudo apt remove nodejs npm node.js와 npm 이전 파일 삭제 sudo apt remove --purge nodejs ..

Error Solution

Delete ␍ eslint (prettier/prettier)

에러명 Delete ␍ eslint (prettier/prettier) 에러 설명 🔖 windows에서 발생하는 오류 prettier의 기본 라인 개행 방식(lf)이 windows의 개행 방식(crlf)과 다르기 때문에 발생 해결 방법 eslint 설정에서 prettier의 개행 방식을 auto로 변경 1. package.json에 eslintConfig가 위치한 경우 "eslintConfig": { ... "rules": { // eslintConfig - rules에 다음과 같이 추가 "prettier/prettier": [ "error", { "endOfLine": "auto" } ] } }, 2. 별도의 .eslintrc 파일이 있는 경우 { ... "rules": { // rules에 다음과 같..

MellowHoney
'Error Solution' 카테고리의 글 목록