| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: tutorial | 2 layout: tutorial |
| 3 title: "Write Command-Line Apps" | 3 title: "Write Command-Line Apps" |
| 4 description: "Basics for command-line apps" | 4 description: "Basics for command-line apps" |
| 5 has-permalinks: true | 5 has-permalinks: true |
| 6 tutorial: | 6 tutorial: |
| 7 id: dart-io | 7 id: dart-io |
| 8 next: / | 8 next: / |
| 9 next-title: "Home" | 9 next-title: "Home" |
| 10 prev: indexeddb/ | 10 prev: indexeddb/ |
| (...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 | 622 |
| 623 Refer to the API docs for <a href="https://api.dartlang.org/dart_io.html" target
="_blank">dart:io</a>, | 623 Refer to the API docs for <a href="https://api.dartlang.org/dart_io.html" target
="_blank">dart:io</a>, |
| 624 <a href="https://api.dartlang.org/dart_async.html" target="_blank">dart:async</a
>, | 624 <a href="https://api.dartlang.org/dart_async.html" target="_blank">dart:async</a
>, |
| 625 <a href="https://api.dartlang.org/dart_convert.html" target="_blank">dart:conver
t</a>, | 625 <a href="https://api.dartlang.org/dart_convert.html" target="_blank">dart:conver
t</a>, |
| 626 and the | 626 and the |
| 627 <a href="https://api.dartlang.org/dart_args.html" target="_blank">args</a> | 627 <a href="https://api.dartlang.org/dart_args.html" target="_blank">args</a> |
| 628 package for more classes, functions, and properties. | 628 package for more classes, functions, and properties. |
| 629 | 629 |
| 630 ## What next? {#what-next} | 630 ## What next? {#what-next} |
| 631 | 631 |
| 632 Try the [Weigh Anchor: Deploy a Server and App](/codelabs/deploy/) code lab |
| 633 to learn how to deploy your project to the Heroku hosting service. |
| 634 |
| 632 The [Get Input from a Form](/docs/tutorials/forms/) tutorial | 635 The [Get Input from a Form](/docs/tutorials/forms/) tutorial |
| 633 features a client-server. | 636 features a client-server. |
| 634 The code for the server, which uses CORS headers and handles | 637 The code for the server, which uses CORS headers and handles |
| 635 POST requests, is explained in detail. | 638 POST requests, is explained in detail. |
| 636 | 639 |
| 637 {% endcapture %} | 640 {% endcapture %} |
| 638 | 641 |
| 639 {% include tutorial.html %} | 642 {% include tutorial.html %} |
| OLD | NEW |