Merge pull request #352 from dart-lang/2.1-services-stable

Update version to 2.1.0
tree: 922517afd21f63de4802f0e1ba51b6ea078c09a6
  1. benchmark/
  2. bin/
  3. doc/
  4. example/
  5. lib/
  6. test/
  7. tool/
  8. .gitignore
  9. .travis.yml
  10. analysis_options.yaml
  11. app.yaml
  12. AUTHORS
  13. CHANGELOG.md
  14. dart-sdk.version
  15. Dockerfile
  16. LICENSE
  17. pubspec.yaml
  18. README.md
README.md

Dart Services

A server backend to support DartPad.

Build Status Coverage Status Uptime Status

What is it? What does it do?

This project is a small, stateless Dart server, which powers the front-end of DartPad. It provides many of DartPad's features, including static analysis (errors and warnings), compilation to JavaScript, code completion, dartdoc information, code formatting, and quick fixes for issues.

Running

To run the server, run:

dart bin/server_dev.dart --port 8082

The server will run from port 8082 and export several JSON APIs, like /api/compile and /api/analyze.

Deploying

To deploy the server to Dart on AppEngine, follow the instructions here.

Modify warmup.dart to point the BASE_URI to your AppEngine project.

Then run

./tools/deploy.sh

The will deploy the server, and run the warmup sequence and sanity checks.

Related projects

See also the dart-pad repo.

Issues and bugs

Please file reports on the GitHub Issue Tracker.

License and Contributing

Contributions welcome! Please read this short guide first. You can view our license here.