How to configure Atom to run Dart in Dartium?

How to configure the launch of web applications written in Dart, since WebStorm in Atom?

Webstorm

Atom

In Atom, it tries to run a Dart script, not index.html

+4
source share
1 answer

Run the configurations saved in the folder .atom/launches.

Eg. Console Configuration (cli):

type: cli
path: test\test.dart

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

Running web scripts ( type: web) has not yet been implemented.

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

+4
source

All Articles