Kara Kartal
Kara Kartal

Reputation: 289

npm command line - how to enter new commands after start

I can start npm with "npm start" command successfully on Visual Studio command prompt. Command Prompt title becomes "Lite-Server". It watches the file changes without any issues. However, the command line doesn't let me to enter any new commands. For example I cannot type "npm stop" or even a single letter.

Maybe I should not use Visual Studio command prompt, but I think it should not matter. Any ideas?

CG

Upvotes: 0

Views: 421

Answers (1)

Christopher Moore
Christopher Moore

Reputation: 3099

In Visual Studio Code, the easiest way to achieve this is to open multiple terminals and navigate between them.

Click this link for more information on the integrated terminal

Upvotes: 1

Related Questions