How to set the title of a Windows console while npm is running?
Set the title in your packages.json
file:
"start": "title HTTP Server && http-server -a localhost -p 8000 -c-1"
You can set the title in app.js by adding the following line:
process.title = "HTTP Server";