MicroServer 1.4.0
See the version list below for details.
dotnet add package MicroServer --version 1.4.0
NuGet\Install-Package MicroServer -Version 1.4.0
<PackageReference Include="MicroServer" Version="1.4.0" />
<PackageVersion Include="MicroServer" Version="1.4.0" />
<PackageReference Include="MicroServer" />
paket add MicroServer --version 1.4.0
#r "nuget: MicroServer, 1.4.0"
#:package MicroServer@1.4.0
#addin nuget:?package=MicroServer&version=1.4.0
#tool nuget:?package=MicroServer&version=1.4.0
MicroServer 是一款可内嵌的轻量级高性能跨平台 WebAPI 框架,可直接嵌入到各类 .NET 应用中快速搭建轻量级 WebAPI 服务,无需依赖 IIS 或 Kestrel。基于 .NET Standard 2.0 构建,开箱即用、不侵入业务、集成简单,完美支持跨平台及 AOT 编译。内置鉴权。内置轻量WebSocket服务端和客户端。开发者还可自由构建符合自己开发习惯的路由、自定义中间件、扩展。
MicroServer is an embeddable, lightweight, and high-performance cross-platform WebAPI framework. It can be directly embedded into various .NET applications to quickly set up lightweight WebAPI services without depending on IIS or Kestrel. Built on .NET Standard 2.0, it is ready-to-use, non-intrusive to business logic, simple to integrate, and fully supports cross-platform deployment and AOT compilation.Built-in lightweight WebSocket server and client. Developers can freely construct routes, custom middleware, and extensions that align with their own coding habits.
快速入门如下。更多使用方式请查看 MicroServer官方文档
For more usage methods, please refer to the MicroServer Official Documentation.
VB.NET示例(VB.NET example)
Imports System.Net
Imports MicroServer
Module FastTest
Private ReadOnly MyAPI As New WebAPIServer
Sub Main()
MyAPI.AddRoute("/", AddressOf hello) '添加路由映射
MyAPI.StartServer() '启动 WebAPI 服务,默认端口8090 传入参数可修改端口
Console.WriteLine("访问地址:http://127.0.0.1:8090")
Console.ReadKey()
End Sub
Private Async Function hello(request As HttpListenerRequest, response As HttpListenerResponse) As Task
Await response.WriteAsync(<t>{"code":1,"msg":"Hello WebAPI"}</t>.Value)
End Function
End Module
C#示例(C# example)
using System.Net;
using MicroServer;
namespace FastTestNamespace
{
public static class FastTest
{
private static readonly WebAPIServer MyAPI = new WebAPIServer();
public static void Main()
{
MyAPI.AddRoute("/", Hello);// 添加路由映射,
MyAPI.StartServer(); // 启动服务(默认8090端口)传入参数可修改端口
Console.WriteLine("访问地址:http://127.0.0.1:8090");
Console.ReadKey();
}
// 异步处理方法
private static async Task Hello(HttpListenerRequest request, HttpListenerResponse response)
{
await response.WriteAsync("""{"code":1,"msg":"Hello WebAPI"}""");
}
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.5.3 | 45 | 1/12/2026 |
| 1.5.2 | 38 | 1/12/2026 |
| 1.5.1 | 44 | 1/10/2026 |
| 1.5.0 | 47 | 1/9/2026 |
| 1.4.6 | 44 | 1/5/2026 |
| 1.4.5 | 42 | 1/4/2026 |
| 1.4.4 | 43 | 1/3/2026 |
| 1.4.3 | 47 | 1/2/2026 |
| 1.4.2 | 41 | 1/1/2026 |
| 1.4.1 | 41 | 1/1/2026 |
| 1.4.0 | 44 | 1/1/2026 |
| 1.3.0 | 50 | 12/30/2025 |
| 1.2.0 | 49 | 12/29/2025 |
| 1.1.0 | 47 | 12/27/2025 |
| 1.0.0 | 80 | 12/26/2025 |