- The API can not be displayed in Chrome. No idea why, but Firefox and Internet Explorer did well, on Windows, Linux and Android mobile.
Biggest issue (for me) is that it doesnt work from powershell.
both Invoke-WebRequest and Invoke-RESTMethod fail with "underlying connection was closed"
you can test using "Invoke-WebRequest
http://localhost:8080"
Maybe because its not ouputing html but json code... I hope to add a html surface for it later, but first I have to tackle the speed issues

it can handle json well, but the problem is http server implementation
it fails with "System.Net.WebException: The underlying connection was closed: An unexpected error occurred
on a receive. ---> System.IO.IOException: Unable to read data from the transport connection:
An existing connection was forcibly closed by the remote host. --->
System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote
host"
Which also explains why Chrome doesn't work. Firefox also fails to display (although you can see the response in Dev Tools).
Simple "telnet localhost 8080" does return the info, which means its definitely not an http server )