How to configure Atom to run Dart in Dartium?

Issue

How to set up the launch of web applications written in Dart, as it does WebStorm in Atom?

Webstorm

Atom

In the Atom, he tries to run itself Dart script rather than index.html

Solution

Launch configurations stored in folder .atom/launches.

Eg. console (cli) configuration:

type: cli
path: test\test.dart

cli:
  args:
  cwd:
  checked: true
  debug: true

Launch of the web scripts (type: web) is not implemented yet.

dartlang/lib/launch/launch_web.dart
lib/plugin.dart

Answered By – user5351831

Answer Checked By – Terry (FlutterFixes Volunteer)

Leave a Reply

Your email address will not be published. Required fields are marked *