- Angular 6 for Enterprise:Ready Web Applications
- Doguhan Uluca
- 72字
- 2021-06-25 21:20:31
Running your Angular app
Run your Angular app to check whether it works. During development, you can execute npm start, through the ng serve command; this action will transpile, package, and serve the code on localhost with live-reloading enabled:
- Execute npm start
- Navigate to http://localhost:5000
- You should see a rendered page similar to this:
Default Angular CLI landing page
- Stop your application by pressing Ctrl + C in the integrated terminal.