Im need to using node --harmony
each time when working with node.recently im working with koajs and in the home page of koajs sayed can use this command
alias node='node --harmony'
but when i calling this command on powershell i get this error :
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
so how can change alias of node to node with harmony argument?