dependabot[bot] 1aaaa66255 Bump Microsoft.AspNetCore.WebSockets from 2.1.1 to 2.1.7 (#2)
Bumps [Microsoft.AspNetCore.WebSockets](https://github.com/aspnet/AspNetCore) from 2.1.1 to 2.1.7.
- [Release notes](https://github.com/aspnet/AspNetCore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](https://github.com/aspnet/AspNetCore/compare/2.1.1...v2.1.7)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.WebSockets
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-07-08 21:11:35 +01:00
2018-11-06 16:37:23 +00:00
2018-11-06 16:37:23 +00:00
2018-11-06 17:01:43 +00:00
2018-11-07 11:21:17 +00:00

Standalone Kestrel

This project demonstrates how to run Kestrel without ASP.NET. It creates a web endpoint on http://localhost:8080 which responds to all requests with "hello world".

It also demonstrates how to add the websocket middleware. If you connect to ws://localhost:8080 (with wscat, for example) it will again respond with "hello world". This time it will be sent as a textual websocket message.

I wrote this code because I was curious to see if it could be done, but it may be interesting for someone. It uses significantly less memory than ASP.NET.

Description
Run the Kestrel web server without ASP.NET.
Readme MIT 46 KiB
Languages
C# 95.9%
Shell 4.1%