MicroServer 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package MicroServer --version 1.0.0
                    
NuGet\Install-Package MicroServer -Version 1.0.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.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MicroServer" Version="1.0.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.0.0
                    
#r "nuget: MicroServer, 1.0.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.0.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.0.0
                    
Install as a Cake Addin
#tool nuget:?package=MicroServer&version=1.0.0
                    
Install as a Cake Tool

MicroServer是一款内嵌式高性能跨平台 WebAPI 框架,基于.NET Standard 2.0 构建,集成简单、不侵业务、开箱即用。免 IIS、单 DLL 即可让程序快速具备 WebAPI 能力,非常适合轻量部署、跨平台及 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; // 对应VB的Imports MicroServer

namespace FastTestNamespace // C#需显式声明命名空间
{
    public static class FastTest
    {
        private static readonly WebAPIServer MyAPI = new WebAPIServer();

        public static void Main()
        {
            // 添加路由映射(C#中用委托引用方法)
            MyAPI.AddRoute("/", Hello);
            // 启动服务(默认8090端口)
            MyAPI.StartServer();
            
            Console.WriteLine("访问地址:http://127.0.0.1:8090");
            Console.ReadKey();
        }

        // 异步处理方法(C#的async/await语法)
        private static async Task Hello(HttpListenerRequest request, HttpListenerResponse response)
        {
            // VB的XML字面量<t>...</t>.Value在C#中直接用字符串替代
            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 47 1/12/2026
1.5.2 40 1/12/2026
1.5.1 46 1/10/2026
1.5.0 48 1/9/2026
1.4.6 45 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 81 12/26/2025