November 2019
Beginner
436 pages
8h 52m
English
As you may already know, the CLI tool for each popular framework provides facilities so that we can serve the web application locally for testing and development purposes. In the case of Vue, we execute the npm run serve script and usually get the following output:
App running at: - Local: http://localhost:8081 - Network: http://192.168.0.10:8081
The traditional ports that are used across different frameworks are as follows:
However, for demonstration purposes, port 8080 is busy with another application on my machine. This is why the development server takes the next free port. In my case, this is 8081. The tool is going to increment the port number until it reaches a free one, so it ...
Read now
Unlock full access