기타 2023. 7. 26.
[Quasar + Electron] node-jdbc 적용 시 발생하는 오류 해결 방법 (feat. node-java)
📢 환경 Node: v16.15.0 Quasar: v2.7.5 electron: v18.3.5 node-jdbc: v0.7.6 🚨 문제 Quasar + Electron 환경에서 node-jdbc 라이브러리를 install 및 import 하자 실행 및 빌드가 되지 않는 문제 발생. 이 문제는 Electron 환경에 node-java 를 사용하고자 했을 때도 똑같이 발생할 것이다. 아래에서 설명할 문제와 해결방법은 서로 연계되고 있으니 참고. 🚨 에러 코드 ...라이브러리 경로 was compiled against a different Node.js version using NODE_MODULE_VERSION 93. This version of Node.js requires NODE_MODULE_VERSI..
기타 2023. 7. 19.
[Quasar + Electron] 빌드 시 Error: EBUSY: resource busy or locked, unlink... 에러 해결 방법
🚨 상황 $ quasar build -m electron 위 명령어로 퀘이사로 일렉트론 빌드를 하려고 하였으나 아래와 같은 오류가 뜨며 빌드가 중단됨. Error: EBUSY: resource busy or locked, unlink 'nsis 압축 파일 경로' UnhandledPromiseRejection: This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason "undefined". 버전 업을 위해 빌드를 하는 것이라..