Home > database >  Lazy symbol binding failed when running a javascript file for the first time on macbook
Lazy symbol binding failed when running a javascript file for the first time on macbook

Time:12-19

Ive installed vs code, node js and code runner on my mac but when i tried running a javascript file for the first time I received this error Dyld: Lazy symbol binding failed:symbol not found:__chkstk_darwin

I tried console.log(‘hello world’). The expected output should be ‘hello world’

CodePudding user response:

I installed node version 16 and it worked just fine. Thanks

CodePudding user response:

If your Mac version is below 10.14 you should install node 16 or below. The latest version 18 of Node is build for Mac OS X 10.15. might be relevant issue here

  • Related