How to define a DOSKEY alias for multiple commands?
I looked at an answer to a question on superuser. The following approach resolved my problem:
@echo off
DOSKEY nss=npm start ^&^& npm run serve
The command separator for DOSKEY is $T
For your example:
DOSKEY nss=npm start $T npm run serve