corgrath
corgrath

Reputation: 12293

Is there a way to run Dart in Firefox for development purposes?

I know you can run Dart code natively in your browser using Dartium (Chrome with an embedded Dart VM), and you can compile your Dart to JavaScript.

But seeing I prefer using Firefox for web development, is there a way to run Dart code directly in Firefox? For example via a plugin or extension?

Upvotes: 6

Views: 2852

Answers (1)

Günter Zöchbauer
Günter Zöchbauer

Reputation: 658067

No.
I also haven't heard of any plans yet.
You can use pub serve which transpiles to JavaScript automatically, but this is rather slow.

You could make a feature request for Firefox, to make them aware of the demand.

Upvotes: 3

Related Questions