There's something called server-sent events which is an alternative to using web sockets if you want to break free from the strict request-response scheme.
I want to explore this technology using Dart.
First, let's create the simplest webserver that could possibly work:
Future main(List arguments) async {