hello out there! Pls I am new to angular. I am making my first angular app. Whenever I use the command “ng serve” the app will compiled and say “compiled successfully” but the command prompt will not shown anymore. Thereby nothing will be press on the terminal again. Please what can I do.
Hi, and welcome to the FCC Forums
ng serve
runs a web server that you can hit with your web browser, and it will keep running until you stop it. Just hit Ctrl-C
on your keyboard to stop it. You’ll probably want to keep it running in a separate terminal window though, since it will reload your code whenever it changes, making it much faster to test your changes.
thank alot, I appreciate your response