| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: default | 2 layout: default |
| 3 title: "Command-Line Apps" | 3 title: "Command-Line Apps" |
| 4 description: "Documentation, references, and more about server-side programming.
" | 4 description: "Documentation, references, and more about server-side programming.
" |
| 5 has-permalinks: true | 5 has-permalinks: true |
| 6 --- | 6 --- |
| 7 | 7 |
| 8 # {{ page.title }} | 8 # {{ page.title }} |
| 9 | 9 |
| 10 You can use Dart for any kind of command-line app from scripts to servers. | 10 You can use Dart for any kind of command-line app from scripts to servers. |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 * [Use Streams for Data](/docs/tutorials/streams/) | 114 * [Use Streams for Data](/docs/tutorials/streams/) |
| 115 <img src="/docs/tutorials/images/target.png" height="16" width="16"> | 115 <img src="/docs/tutorials/images/target.png" height="16" width="16"> |
| 116 | 116 |
| 117 ### The Basics | 117 ### The Basics |
| 118 | 118 |
| 119 * [Write a Command-Line App](/docs/tutorials/cmdline/) | 119 * [Write a Command-Line App](/docs/tutorials/cmdline/) |
| 120 <img src="/docs/tutorials/images/target.png" height="16" width="16"> | 120 <img src="/docs/tutorials/images/target.png" height="16" width="16"> |
| 121 | 121 |
| 122 ### Servers | 122 ### Servers |
| 123 | 123 |
| 124 * [Weigh Anchor: Deploy a Server and App](/codelabs/deploy/) (a code lab about d
eploying Dart code to Heroku) |
| 124 * [Get Input from a Form](/docs/tutorials/forms/) | 125 * [Get Input from a Form](/docs/tutorials/forms/) |
| 125 <img src="/docs/tutorials/images/target.png" height="16" width="16"> | 126 <img src="/docs/tutorials/images/target.png" height="16" width="16"> |
| 126 (contains an HTTP server/client pair) | 127 (contains an HTTP server/client pair) |
| 127 * [Walkthrough: Dartiverse Search](/docs/dart-up-and-running/contents/ch05.html) | 128 * [Walkthrough: Dartiverse Search](/docs/dart-up-and-running/contents/ch05.html) |
| 128 (HTTP server, Web Sockets, logging, and routing) | 129 (HTTP server, Web Sockets, logging, and routing) |
| 129 * [Deploy to Heroku](https://github.com/igrigorik/heroku-buildpack-dart) | 130 * [Deploy to Heroku](https://github.com/igrigorik/heroku-buildpack-dart) |
| 130 | 131 |
| 131 ### Shell scripting | 132 ### Shell scripting |
| 132 | 133 |
| 133 Kevin Moore created a five-part video series on shell scripting with Dart. | 134 Kevin Moore created a five-part video series on shell scripting with Dart. |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 * [dart:convert](https://api.dartlang.org/dart_convert.html)— | 171 * [dart:convert](https://api.dartlang.org/dart_convert.html)— |
| 171 Converters for data types such as JSON and UTF-8. | 172 Converters for data types such as JSON and UTF-8. |
| 172 | 173 |
| 173 | 174 |
| 174 [dartshell1]: http://www.youtube.com/watch?v=Rh_kaQUXXX4 | 175 [dartshell1]: http://www.youtube.com/watch?v=Rh_kaQUXXX4 |
| 175 [dartshell2]: http://www.youtube.com/watch?v=PK7gEocFfII | 176 [dartshell2]: http://www.youtube.com/watch?v=PK7gEocFfII |
| 176 [dartshell3]: http://www.youtube.com/watch?v=zOB8_9pHBik | 177 [dartshell3]: http://www.youtube.com/watch?v=zOB8_9pHBik |
| 177 [dartshell4]: http://www.youtube.com/watch?v=meAicYl4HHI | 178 [dartshell4]: http://www.youtube.com/watch?v=meAicYl4HHI |
| 178 [dartshell5]: http://www.youtube.com/watch?v=18gvMuyfuuY | 179 [dartshell5]: http://www.youtube.com/watch?v=18gvMuyfuuY |
| 179 [pub]: http://pub.dartlang.org | 180 [pub]: http://pub.dartlang.org |
| OLD | NEW |