Dart Editor——跨平臺的開發工具

發表於2014-11-27

Dart Editor是Google開發設計的,旨在幫助開發者製作光亮而驚歎的Web應用。Dart Editor支援多種開發語言,同時也整合了Dartium。透過它的靜態分析引擎,你可以建立,維護,除錯和開發自己的Web應用。函式、類、方法等都能以樹的結構列出來,方便你編寫程式碼。

下載Dart Editor

Windows (Vista,7,8)

Linux

  • 獲取64位 Dart SDK
# Enable HTTPS for apt.
$ sudo apt-get update
$ sudo apt-get install apt-transport-https
# Get the Google Linux package signing key.
$ sudo sh -c 'curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -'
# Set up the location of the stable repository.
$ sudo sh -c 'curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list'
$ sudo apt-get update
$ sudo apt-get install dart
  • paolorotolo提供的PPA安裝:
#64位
sudo apt-add-repository ppa:paolorotolo/dart-editor sudo apt-get update sudo apt-get install dart-editor-amd64
#32位
sudo apt-add-repository ppa:paolorotolo/dart-editor
sudo apt-get update
sudo apt-get install dart-editor-i386

Mac

相關文章