Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.8k views
in Technique[技术] by (71.8m points)

javascript - Why Node JS throw error while using in terminal VS Code?

I am new in programming and stackoverflow. So I have a issue with related to js code. I want to run my js code in terminal as node.js. Here is the code that I get:

$ node test.js
internal/modules/cjs/loader.js:883
  throw err;
  ^

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I had same issue. But I didn't fix either, as I didn't need to run node anymore. Bu when I researched I realized that we can not run Node JS if you declared any variable that assigns DOM object element. For instance,

const someVariable = document.querySelector('.myDiv');

will throw an error. I am not sure for 100% but to use that you have to use jsdom package. Here is the link: https://www.npmjs.com/package/jsdom


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...