# On your profile.ps1 file
# if you don't have it yet, just run code $PROFILE to create and edit it (with vscode)
function NpmRunDev {
npm run dev
}
Set-Alias nrd NpmRunDev
# to get list of all aliases
Get-Alias
# or use its alias
gal
# to get a specific alias
gal <command-name>
# for example
gal man