赞
踩
PS G:\> ts-node
ts-node : 无法将“ts-node”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路
径正确,然后再试一次。
所在位置 行:1 字符: 1
+ ts-node
+ ~~~~~~~
+ CategoryInfo : ObjectNotFound: (ts-node:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
function sayHello(name: string) {
console.info(`Hello ${name} !`)
}
sayHello('Red')
PS G:\> tsc test.ts
PS G:\> node test
Hello Red !
PS G:\>
ts-node,实际是先执行了tsc命令,对ts文件进行编译,之后执行node,去执行编译后的ts
分步执行正常,说明ts-node命令应该也能够执行成功(前提是已全局安装)
既然错误提示 “无法将“ts-node”项识别为 cmdlet、… 可运行程序的名称”,因此判断有可能是环境变量未配置,导致在当前目录下找不到ts-node命令
PS G:\> npm list ts-node -g
E:\cache\npm\node_global
`-- ts-node@10.9.1
PS G:\>
PS G:\> ts-node test
Hello Red !
PS G:\>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。