我成功安装了node.js,但无法通过cmd进行检查:node -v
->'node'不被识别为内部或外部命令, 可操作的程序或批处理文件。
答案 0 :(得分:0)
尝试在cmd中键入: $ node --version
答案 1 :(得分:0)
以管理员身份运行节点,或仅重新启动PC。
答案 2 :(得分:0)
检查节点的完整步骤。
local@host:~$ node --version
v9.8.0
local@host:~$ npm -v
6.8.0
此后,创建一个js文件(hello.js),并在该文件上编写以下代码。
console.log("node is installed and running!");
现在运行该文件:
local@host:~$ node hello.js
node is installed and running!