这是我第一次运行node.js,并且我在C:\ source中有一个文件,名为index.js。我不确定这是怎么了。我检查了节点是否与节点-v一起安装,并且出现了版本号,因此看起来不错。有输入吗?
C:\source>node index.js
internal/modules/cjs/loader.js:783
throw err;
^
Error: Cannot find module 'C:\source\index.js'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:780:15)
at Function.Module._load (internal/modules/cjs/loader.js:685:27)
at Function.Module.runMain (internal/modules/cjs/loader.js:1014:10)
at internal/main/run_main_module.js:17:11 {
code: 'MODULE_NOT_FOUND',
requireStack: []
}
index.js具有:
console.log('Hello World')