node --harmony
每次使用node时我都需要使用。最近我使用koajs并且在koajs的主页上说可以使用这个命令
alias node='node --harmony'
但是当我在 powershell 上调用这个命令时,我得到了这个错误:
alias : This command cannot find a matching alias because an alias with the name 'node=node --harmony' does not exist.
At line:1 char:1
+ alias node='node --harmony'
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (node=node --harmony:String) [Get-Alias], ItemNotFoundException
+ FullyQualifiedErrorId : ItemNotFoundException,Microsoft.PowerShell.Commands.GetAliasCommand
那么如何使用和谐参数将节点的别名更改为节点?