Get started with Quasar

Installing Quasar with npm.

npm install -g @quasar/cli

Create Quasar project folder.

quasar create quasar-test

Start the Quasar Project.

 cd quasar-test
 quasar dev

We may encounter the following errors.

 App · Reading quasar.conf.js
 App · Checking listening address availability (0.0.0.0:8080)...

 App · ⚠️  Unknown network error occurred
[  Error: listen EACCES: permission denied 0.0.0.0:8080

  - task_queues.js:85 processTicksAndRejections
    internal/process/task_queues.js:85:21

] {
  code: 'EACCES',
  errno: 'EACCES',
  syscall: 'listen',
  address: '0.0.0.0',
  port: 8080
}

Use the -p parameter to change to other port.

quasar dev -p 8081

1 Response

  1. Pranjal says:

    Thanks a lot, It really helps me to resolve my problem

Leave a Reply to Pranjal Cancel reply

Your email address will not be published.