xxxxxxxxxx
-- ADD BELOW CODE TO "nodemon.json"
{
"events": {
"start": "clear && printf \"\\e[3J\""
}
}
-- Not working? try this
{
"events": {
"start": "cls && clear"
}
}
xxxxxxxxxx
Add the following in package.json
"nodemonConfig": {
"events": {
"start": "cls"
}
},