mingcs 1.0.4

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

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

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);
        }
    }
}


ming_node 的差异

因js与c#语法方面的原因,与ming_node 有不少的差异

差异1

ming_node 所有请求用req.params收参,而 mingcs 用req.param收参

差异2

ming_node的 sse使 sseApp.send 向浏览器发送消息,,而 mingcs 用 app.sseSend

差异3

mingcs 是为了在wpf项目中加入一个简单好用的web服务,所以它的功能很弱,仅支持get与post请求,也不支持rest风格api

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  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. 
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