跨平台的Web开发工具:Dart Editor

jopen 9年前


跨平台的Web开发工具:Dart Editor

Dart Editor是 Google开发设计的,旨在帮助开发者制作光亮而惊叹的Web应用。Dart Editor支持多种开发语言,同时也集成了Dartium。通过它的静态分析引擎,你可以创建,维护,调试和开发自己的Web应用。函数、类、方法等都 能以树的结构列出来,方便你编写代码。

跨平台的Web开发工具:Dart Editor

下载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


原文: http://muzi.info/2014/2949/dart-editor.html