Скрипт NPM запустить первый скрипт в фоновом режиме
# Run npm script in the background.
# Use: (command &).
# Example:
"scripts": {
"start": "(node backgroundapp.js &) && anotherscript"
}
KostasX