\'Github\' asked me to update \'webpack-dev-server\' to version 3.1.11 or higher for security reasons.
However, \'npm run dev\' will not run after the update.
<
This process work for me
1 - Run your Command Invite/Terminal as Administrator
2 - Install the Vue CLI globally with the command :
npm install -g vue-cli
3 - Create your vue project
vue init webpack your_project_name_here
4 - Goto your project directory you
cd your_project_name_here
5 - If you have vulnerabilities execute :
npm audit fix
Now you can start the web server in development mode by using npm in the following way:
npm run dev
By default it will start the server on port 8080