I just ended the tutorial of Angular 2 and I can\'t find a way to change the localhost port from 3000 to 8000. In my package.json file there\'s the line \"sta
package.json
\"sta
In package.json set the following command (example for running on port 82)
"start": "set PORT=82 && ng serve --ec=true"
then npm start
npm start