npm run main.js를 할 때 잘 되는 듯 싶더니 아래와 같은 오류가 떴었는데,
npm ERR! Cannot read property 'pickAlgorithm' of null
npm ERR! A complete log of this run can be found in:
npm ERR! npm-cache\_logs\2021-10-14T08_03_47_266Z-debug.log
아래 글을 통해 해결할 수 있었다.
npm cache clear --force
npm install
를 해보는데
만약 npm install할 때에도 같은 오류가 뜬다면..!
npm config set registry https://registry.npmjs.org/
까지 해주고 다시 npm install
하면 정상적으로 잘 된다.
Farhan Sodiq님(답변해주신 분,,) 감사합니다..