개발 공부/웹 개발

[Git] Git Dependabot Alerts 문제 해결

5묘 2022. 8. 18. 21:47

SSAFY에서 진행했던 프로젝트들을 드디어 gitlab에서 github으로 옮겼는데 뭔가 이상한게 떴다..!

Dependabot Alerts?

알고보니 package-lock.json에 저장된 애들 중에 업데이트가 안돼 보안 취약 위험이 있는 애들이 있었던 것.
그래서 다음과 같이 고쳐줬다.

npm audit
npm audit fix
(강제로 다 고치겠다면) npm audit fix --force

블로그 글 참고: https://velog.io/@hssarah/Github-Dependabot-alerts-%ED%95%B4%EA%B2%B0

 

Github Dependabot alerts 해결

간단하게 해결할 수 있다. package-lock.json에서 보안이 취약하다고 뜨는 걸 upgrade 해주면 된다.해결 방법은 다음과 같다.1\. vscode terminal에서 npm audit를 실행한다.2\. 오류를 확인하고 npm audit fix를 실

velog.io