NPM -Skript Führen Sie das erste Skript im Hintergrund aus
# Run npm script in the background.
# Use: (command &).
# Example:
"scripts": {
"start": "(node backgroundapp.js &) && anotherscript"
}
KostasX