Ubuntu 22.04에서 NodeJS와 NPM 를 제거하는 방법에 대해 알아보자 환경 : Ubuntu 22.04 node, npm 제거 참고문서 : https://levelup.gitconnected.com/completely-uninstall-nodejs-and-install-a-specific-version-ubuntu-22-04-5ee7f2656fa7 삭제 전 상태 ubuntu@ip-172-31-67-8:~$ node -v v18.16.0 ubuntu@ip-172-31-67-8:~$ npm -v 9.5.1 삭제 진행 sudo apt-get remove nodejs sudo apt-get remove npm rm -rf /usr/local/{lib/node{,/.npm,_modules},bin,sh..