Install nodemon globally
    npm install nodemon -g
Install nodemon in project
    npm install nodemon --D
    "scripts": {
"dev": "nodemon ./bin/www"
}
Run the Server
    SET DEBUG=project-api:* & npm run dev