Script NPM Ejecute el primer script en segundo plano

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

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