- Create and run an Angular project
- In your workspace, create a folder named
typescript (You can call it as you want) and open it with your preferred IDE (Visual Studio, IntelliJ, etc.).
- In you workspace folder create and angular project using
npx -p @angular/cli@16 ng new sandbox
- It will create your project in a folder named
sandbox
- Enter you project using
cd sandbox
- Type
ng serve to run the server
- Open your web browser using on http://localhost:4200
- You should see your angular project running.