MicroServer 1.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package MicroServer --version 1.2.0
                    
NuGet\Install-Package MicroServer -Version 1.2.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MicroServer" Version="1.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MicroServer" Version="1.2.0" />
                    
Directory.Packages.props
<PackageReference Include="MicroServer" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MicroServer --version 1.2.0
                    
#r "nuget: MicroServer, 1.2.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package MicroServer@1.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MicroServer&version=1.2.0
                    
Install as a Cake Addin
#tool nuget:?package=MicroServer&version=1.2.0
                    
Install as a Cake Tool

MicroServer 是一款可内嵌的轻量级高性能跨平台 WebAPI 框架,可直接嵌入到各类 .NET 应用中快速搭建轻量级 WebAPI 服务,无需依赖 IIS 或 Kestrel。基于 .NET Standard 2.0 构建,开箱即用、不侵入业务、集成简单,完美支持跨平台及 AOT 编译。

VB.NET示例

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#示例

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .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 0 1/12/2026
1.5.2 24 1/12/2026
1.5.1 39 1/10/2026
1.5.0 41 1/9/2026
1.4.6 44 1/5/2026
1.4.5 41 1/4/2026
1.4.4 42 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