Le script NPM exécute le premier script en arrière-plan

# Run npm script in the background. 
# Use: (command &). 
# Example:

"scripts": {
  "start": "(node backgroundapp.js &) && anotherscript"
}
KostasX