In this video, we review the basic use of Visual Studio Editor as a development tool for the Dart programming language. We review the following:
stagehand - an application that creates barebones formats for Dart programs.
pub package manager - a package manager is a program that finds and installs smaller programs that can make up the one you are programming. The smaller programs are called packages or dependencies.
pub commands:
pub get - installs packages or dependencies that your application needs to run. Do this before you start programming.
pub serve - a command that starts the web application program.
F5 key can run a console program.