我正在尝试通过遵循link
来设置Node js应用在Windows上说运行-
设置DEBUG = myapp:*和npm开始
我收到以下错误
At line:1 char:20
+ set DEBUG=myapp:* & npm start
+ ~ The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double quotation marks ("&") to pass it as part of a string.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : AmpersandNotAllowed
现在,我将“&”更改为“ &&”,这会引发错误-“不允许使用&字符。&运算符保留供将来使用;将&符换成双 引号(“&”)作为字符串的一部分传递。”
所以我改为
设置DEBUG = myapp:*“&” npm start
Set-Variable : A positional parameter cannot be found that accepts argument 'npm'.
At line:1 char:2
请让我知道是否有人知道如何解决此问题。
答案 0 :(得分:0)
这可能是由于寡妇版本问题引起的,但是您也可以通过仅编写以下命令来运行应用程序
npm start
它工作正常。