I'm trying to figure out node.js and nothing is working. I can run code using node.js via writing it in the terminal, but I want to run an external js file.
Right now, I have my node.js installed here "C:\Program Files\nodejs\node.exe"
I then made a js file and wrote console.log("Hello World"); and saved it in the same location and called it test.js.
I then opened up a command prompt and tried everything to try run it but nothing works.
The PowerPoint my teacher gave to me says to do "node test.js" and it should output Hello World.
When I try it, it says error cannot find test.js, so I wrote the full file path and it says, c:\program is undefined or something. Can someone please tell me what to write in the command prompt so I can output Hello World via the test.js file I've got saved in the same location as node.exe?
I am using windows if that helps.