DEV Community

Visal Jey
Visal Jey

Posted on

Vue3 project doesn't running on windows

image

Error: listen EACCES: permission denied 127.0.0.1:8888
at Server.setupListenHandle as _listen2
at listenInCluster (net.js:1364:12)
at doListen (net.js:1501:7)
at processTicksAndRejections (internal/process/task_queues.js:85:21)
Emitted 'error' event on Server instance at:
at emitErrorNT (net.js:1343:8)
at processTicksAndRejections (internal/process/task_queues.js:84:21) {
code: 'EACCES',
errno: 'EACCES',
syscall: 'listen',
address: '127.0.0.1',
port: 8888
}
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! upbots_web@0.2.0 serve: vue-cli-service serve
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the upbots_web@0.2.0 serve script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Admin\AppData\Roaming\npm-cache_logs\2021-07-27T07_45_17_389Z-debug.log

If I run vue3 on windows, I faced permission denied error.
Can you pls guys help me?

Top comments (1)

Collapse
 
ptheodosiou profile image
Pantelis Theodosiou

Hi there, what have you tried so far?

Try this one, it might help you.

rm -rf node_modules/
npm install
Enter fullscreen mode Exit fullscreen mode