Skip to content

angularDart quickstart

holzkohlengrill edited this page Dec 15, 2023 · 2 revisions

Angular Dart Quickstart

Setup

  1. Create project folder: mkdir myProject
  2. Generate project template: stagehand web-angular
  3. Get packages: pub get
  4. Start auto-build service (generates js): webdev serve
    • This will take a while for the very first time
  5. Start coding :D

Stagehand templates

  • console-full - A command-line application sample.
  • package-simple - A starting point for Dart libraries or applications.
  • server-shelf - A web server built using the shelf package.
  • web-angular - A web app with material design components.
  • web-simple - A web app that uses only core Dart libraries.
  • web-stagexl - A starting point for 2D animation and games.

See also: https://webdev.dartlang.org/guides/get-started

Clone this wiki locally