About the use of vscode or Atom editors

used to be developed with webstrom, in which there is an access path for direct npm run dev. Now I want to use vscode or Atom editor, but there is no small black box in it. After npm run dev is successful under the root directory, there is no access path. Could you tell me how to use it?

Mar.21,2021

vscode in the menu-> View-> integrated terminal, you can open the terminal (small black box).

webstorm should come with server functionality, so you can see the access path.
vscode does not have this feature and needs to be configured by yourself. For example, projects generated with vue-cli are provided by default (webpack-dev-server), and the access path can be changed to the localhost:8080, port. Under the project / config/index.js, port: 8080 is changed to the one you want

.
Menu