Book Image

Learning Dart, Second Edition - Second Edition

By : Ivo Balbaert
Book Image

Learning Dart, Second Edition - Second Edition

By: Ivo Balbaert

Overview of this book

Table of Contents (18 chapters)
Learning Dart Second Edition
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

A Dart web server


The Dart VM can also run as a server application on the command line or as a background job. While creating the application, choose the command-line application template. Most of Dart's server functionality lives in the dart:io library, which cannot be used in writing browser Dart apps; in the same way, dart:html cannot be used on the server. The HttpServer class is used to write Dart servers; a server listens on a particular host and port for incoming requests and provides event handlers (also called request handlers) that are triggered when a request with incoming data from a client is received. The latter is described by the HttpRequest class, which is an asynchronous API provided by the browser (formerly known as Ajax) and has properties, such as method, path, query parameters, and InputStream with the data. The server responds by writing to OutputStream of an HttpResponse object. The following is the code of the webserver project, where you can easily see all the parts...