In my node.js app, I have a package.json file that has this configuration for the script.start property
"scripts": {
"start": "echo Starting to compile... && node start.js && echo Complete!"
},
Then when I type npm start it shows on the command line
> [email protected] start C:\app\tools
> echo Starting to compile... && node start.js && echo Complete!
Is there a way I can hide this from showing in the command line?
Thanks