node example.js and three dots, what's next?

前端 未结 1 1247
既然无缘
既然无缘 2020-12-11 15:29

Refering to the homepage and the documentation, I installed node.js, created example.js and ran the script. But I got 3 dots (...) and nothing else. Where should I look?

相关标签:
1条回答
  • 2020-12-11 15:50

    It appears that you have run node.exe, which opens a terminal, and have typed node example.js into that terminal.

    So basically, you opened node in an interactive terminal, and then typed node example.js, so it is trying to run that as if it were JavaScript. It shows the three dots because that is not valid JavaScript code, and it is waiting for you to type more code that might make it valid.

    You should be running node.exe example.js from a cmd prompt, where you'd see a prompt more like C:\>.

    0 讨论(0)
提交回复
热议问题