코드노트

Error: Could not locate the bindings file. Tried: 해결 방법 본문

Code note/Error문제해결

Error: Could not locate the bindings file. Tried: 해결 방법

코드노트 2023. 1. 29. 23:18

Parcel 번들러를 사용하면서 이번에 처음 만난 에러이다.

평소와 같이 git에서 clone을 했고 똑같이 번들러를 설치 후 autoprefixer를 설정하면서 버전을 변경했다.

prostcss와 버전 호환문제가 있어서 버전을 다시 변경하고 시작했는데 똑같이

Error: Could not locate the bindings file. Tried:

이 Error코드를 만나게 되었다.

 

https://github.com/nodejs/node-gyp/issues/1511

 

Error: Could not locate the bindings file · Issue #1511 · nodejs/node-gyp

Facing the below issue while running the node in VSC: Node Version: node -v6.14.2 and npm -v3.10.10 Platform: Windows(64 bit) Error: Could not locate the bindings file. Tried: → C:\Users\Admin_Ajay...

github.com

해결방법들 중에서 찾아보니 node modules에 있다고 했고 node modules를 재설치하라는 말들이 있었다

그 중에서 재설치를 하지 않고도 해결할 수 있는 방법이 있었다!

 

npm rebuild

rebuild는 아직까지 해볼일이 없어서 모르고 있었는데 바로 해결했다!

로컬서버가 바로 열렸다...!

앞으로 node modules에 문제가 있다면 rebuild명령어를 해봐야겠다.