skip to Main Content

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’

2

Answers


  1. Chosen as BEST ANSWER

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


  2. 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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search