lazebird.rabbit.http 2.0.1

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

// Install lazebird.rabbit.http as a Cake Tool
#tool nuget:?package=lazebird.rabbit.http&version=2.0.1

httpd

Description

Target

API

  1. public httpd(Action<string> log)
    Constructor log:Log output interface

  2. public void init_mime(string value)
    Initialize MIME mapping value:MIME mapping string, for example:

string mime = "";
mime += ".svg:image/svg+xml;";
mime += ".html:text/html;";
mime += ".htm:text/html;";
mime += ".js:application/x-javascript;";
mime += ".css:text/css;";
mime += ".mp4:video/mpeg4;";
mime += ".mpeg:video/mpg;";
mime += ".avi:video/avi;";
mime += ".mp3:audio/mp3;";
mime += ".mid:audio/mid;";
mime += ".jpg:application/x-jpg;";
mime += ".jpeg:image/jpeg;";
mime += ".img:application/x-img;";
mime += ".ico:image/x-icon;";
mime += ".png:image/png;";
mime += "*:application/octet-stream;";

  1. public bool start(int port)
    Start httpd Port: http port number

  2. public void stop()
    Stop httpd

  3. public void set_root(string path)
    Set the server root directory, the default is empty directory

  4. public void add_dir(string path)
    Add a folder to the root directory Path: folder path

  5. public void del_dir(string path)
    Delete a folder from the root directory Path: folder path

  6. public void add_file(string path)
    Add files from the root directory Path: file path

  7. public void del_file(string path)
    Delete files from the root directory Path: file path

Sample

httpd httpd = new httpd(httpd_log_func);
httpd.init_mime(myconf.get("mime"));
httpd.set_root(".");
httpd.start(8000);
void httpd_log_func(string msg)
{
    console.write(msg);
}
Product Compatible and additional computed target framework versions.
.NET Framework net461 is compatible.  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.

This package has 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
3.0.0 609 6/27/2019
2.1.1 731 9/11/2018
2.1.0 769 8/15/2018
2.0.9 741 7/31/2018
2.0.5 765 7/26/2018
2.0.3 756 7/23/2018
2.0.2 870 7/3/2018
2.0.1 855 7/3/2018
2.0.0 752 7/2/2018
1.0.0 878 6/28/2018

support http server, set root dir, add dir, add file