error
errorVue - npm run serve 에러
npm run serve npm 업데이트 하라길래 했더니 서버 실행이 안됨. 뭔가 버전이 안맞는듯.. 결론은 해결 실패 -0- 다음번 같은 증상나오면 해결 하려고 기록 에러 기록 Error: Cannot find module 'node:module' Require stack: - D:\vue-project\vue-page\node_modules\mlly\dist\index.cjs - D:\vue-project\vue-page\node_modules\unimport\dist\shared\unimport.7b88c06e.cjs - D:\vue-project\vue-page\node_modules\unimport\dist\addons.cjs - D:\vue-project\vue-page\node_modules..
Vue - 서버 시작 에러
에러메시지 서버를 실행하려고 'npm run serve'를 입력했늗네 에러가 나올 때, npm ERR! code ENOENT .npm ERR! enoent This is related to npm not being able to find a file. 에러메시지 내용 npm ERR! code ENOENT npm ERR! syscall open npm ERR! path D:\*****\package.json npm ERR! errno -4058 npm ERR! enoent ENOENT: no such file or directory, open 'D:\*****\package.json' npm ERR! enoent This is related to npm not being able to find a file..
Swift - 에러
자료형이 Error인 enum 에러를 enum 타입으로 작성할 수 있다. enum MismathError: Error { case nameMismatch case numberMismatch } 에러 던지기메소드 반환형 없음 func guessMyName(name input: String) throws { // 매개변수로 받은 이름이 '만쥬' 일치하지 않으면 if input != "만쥬" { print("guessMyName : 틀렸다") // 이름 미스매치 에러를 던진다, 보낸다. throw MismathError.nameMismatch //return } print("guessMyName : 맞췄다") } 에러호출 안함 // 에러를 처리하지 않음 try? guessMyName(name: "만슈") 에러..