mingcs 1.0.3

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

// Install mingcs as a Cake Tool
#tool nuget:?package=mingcs&version=1.0.3

ming_cs

介绍

ming_cs是什么

ming_cs是ming_node的c#版本,用于在c#项目中加入一个简易的web服务器,使用方法与express非常类似,ming_cs仅依赖了Newtonsoft.Json@13.0.1,ming_cs尽量保持ming_node中的命名。

安装

ming_cs使用netstandard2.0;net451构建,对.net版本没啥要求

nuget

 dotnet add package mingcs --version 1.0.3

快速体验

下面是ming_cs关于web服务的最小环境

using System;

using MingCs;

namespace mingcsDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            var app = M.server();

            //设置静态资源目录
            // app.set("views","static");
   

            //过滤器
            app.begin(async (req, res) =>
            {
                Console.WriteLine(req.url);
            });

            //辅助过滤器
            app.use("getById", async (req, res) =>
            {
                Console.WriteLine(req.param);
            });


            //get 服务
            app.get("/getById", async (req, res) =>
            {
                app.sseSend("AAAAAAA");
                res.send(req.param);
            });



            //post 服务
            app.post("/add", async (req, res) =>
            {
                res.send(req.param);
            });


            //get 服务
            app.get("/test", async (req, res) =>
            {
                res.send(M.successResult("ok"));
            });



            //sse 服务
            app.get("/sseServer", M.sseServer());


            app.listen(8888);



        }
    }
}


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. 
.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 net451 is compatible.  net452 was computed.  net46 was computed.  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.

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.0.7 441 10/14/2022
1.0.6 421 10/12/2022
1.0.5 429 10/12/2022
1.0.4 397 6/3/2022
1.0.3 398 5/1/2022
1.0.2 393 5/1/2022
1.0.1 399 5/1/2022
1.0.0 403 4/30/2022