![]() |
VOOZH | about |
dotnet add package PicoServer.Nano --version 0.9.0
NuGet\Install-Package PicoServer.Nano -Version 0.9.0
<PackageReference Include="PicoServer.Nano" Version="0.9.0" />
<PackageVersion Include="PicoServer.Nano" Version="0.9.0" />Directory.Packages.props
<PackageReference Include="PicoServer.Nano" />Project file
paket add PicoServer.Nano --version 0.9.0
#r "nuget: PicoServer.Nano, 0.9.0"
#:package PicoServer.Nano@0.9.0
#addin nuget:?package=PicoServer.Nano&version=0.9.0Install as a Cake Addin
#tool nuget:?package=PicoServer.Nano&version=0.9.0Install as a Cake Tool
PicoServer.Nano 是 PicoServer 在 .NET nanoFramework 生态系统上的轻量化移植版本。它是一个零依赖的“Web 胶水库”,专为资源受限的微控制器设计,特别针对 ESP32 进行了适配和优化。
using PicoServer.Nano;
// 初始化服务器
var app = new WebAPIServer();
// 添加路由
app.AddRoute("/", (req, resp) => {
resp.Write("Hello PicoServer");
});
// 启动服务
app.StartServer();
PicoServer.Nano is a lightweight port of PicoServer for the .NET nanoFramework ecosystem. It is a zero-dependency "glue" web library specifically designed for resource-constrained microcontrollers.
using PicoServer.Nano;
// Initialize the server
var app = new WebAPIServer();
// Define a route
app.AddRoute("/", (req, resp) => {
resp.Write("Hello PicoServer");
});
// Start the engine
app.StartServer();
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NETnanoFramework | netnano1.0 netnano1.0 is compatible. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.9.0 | 103 | 5/10/2026 |