Chapter 13. Server interaction with files and HTTP
This chapter covers
- Running Dart scripts from the command line
- Interacting with the filesystem
- Serving content via HTTP
The Dart virtual machine is hosted in two different environments. In the previous part of the book, we looked at using Dart in the web browser, where the VM is embedded in the Dartium web browser and has access to the browser DOM via the dart:html library. In this chapter, we’ll start to explore the server-side Dart VM, which doesn’t have access to the browser DOM but instead has access to operating system I/O, such as files and network sockets via the dart:io library.
The Dart File Browser example project scenario for this chapter has a client-and-server solution that ...
Get Dart in Action now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.