Angular

Angular

Angular (also referred to as "Angular 2+") is a TypeScript-based, free and open-source single-page web application framework led by the Angular Team at Google and by a community of individuals and corporations. Angular is a complete rewrite from the same team that built AngularJS.

See Angular on Wikipedia.

Getting started

Brap is pre-configured for Angular.

To create a new Angular project, run:

ng new ~/angular-project
cd ~/angular-project

To start the web server for your Angular project, run:

ng serve

To start the web server for your Angular project and make it accessible over the internet, run:

ng serve --host 0.0.0.0

You should then be able to access your Angular application at fun-sample-4200.brap.dev, for example:

Angular screenshot

Screenshot: Angular default page

Keywords

  • angular
  • javascript
  • web
  • framework

Back to top