How To Setup AngularDart5 on VS Code
Asked Answered
C

2

7

I have searched far and wide on documentation on how to effectively set up Angular Dart 5 on Visual Studio Code but found nothing conclusive so far.

Places I've searched already:

The VS Code plugin for dart doesn't provide functionality to make a new empty project. So I'm currently at a loss.

How would I go about setting up an AngularDart 5 project on my VS Code IDE? Could someone refer me to resources for the same?

Celerity answered 9/5, 2018 at 11:15 Comment(0)
A
10

VS Code with the Dart Code plugin offers basic support for editing AngularDart project files.

Integrated support for building and running apps is still work in progress (use Dart-Code#68 to track progress).

I don't know of any support to create an empty AngularDart 5 project, but you can use CLI tools to create starter projects, for example:

$ pub global activate stagehand
$ mkdir ng_project
$ cd ng_project
$ stagehand web-angular

The template also illustrates use of Angular Components.

To build and serve your app use the webdev CLI tool:

$ pub global activate webdev 
$ webdev serve

The serve command will build, serve and watch your app sources. You can, of course, launch this command from within a VS Code integrated terminal.

Aromaticity answered 9/5, 2018 at 11:59 Comment(3)
Thanks for your answer. Just a follow-up - pub also has a serve method. What's the difference between that and webdev?Celerity
pub build and pub serve are no longer supported in Dart 2 as of 2.0.0-dev.51. Use webdev moving forward.Aromaticity
I see. Thanks again.Celerity
R
2

The newest version of the Dart Code (the official VS Code extension for Dart) now offers an AngularDart template for bootstraping new projects.

You can access it with the VScommand (CTRL+SHIFT+P):

> Dart: New Project

You will be prompted to select the template. Select the "Angular Dart Web App" template.

Then, you'll be prompted to give your project a name and select the containing directory.

After that, VSCode should run pub get automatically to install the dependencies and you should be good to go.

You can test the default project by running

webdev serve
Readjust answered 8/9, 2019 at 4:28 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.