function
nodemon app.js
package.json
"nodemonConfig": { "watch": ["server/*"], "exec": "nuxt --max_old_space_size=4096 --optimize_for_size" }
nodemon --exec "uv run python" app.py --ext py,json,txt,md
remy/nodemon
Monitor for any changes in your node.js application and automatically restart the server - perfect for development - remy/nodemon
https://github.com/remy/nodemon/blob/master/doc/sample-nodemon.md
remy/nodemon
nodemon is a tool that helps develop node.js based applications by automatically restarting the node application when file changes in the directory are detected. nodemon does not require any additional changes to your code or method of development. nodemon is a replacement wrapper for node.
https://github.com/remy/nodemon#nodemon

Seonglae Cho