Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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;
  ^

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.9k views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...