[Node.js] Use "prestart" in scripts

时间:2023-03-09 06:30:27
[Node.js] Use "prestart" in scripts

Usually we run :

npm start

to start an app, then we we might call other script to do something:

npm build && nodemon app

Actaully we can use "prestart" to simpify this, because npm will check if there is "prestart" script, if there is it will run prestart before start:

"prestart": "babel src --out-dir dist",
"start": "node dist/index.js"