Skip to content

SocketByte/tinyhttp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TinyHttp

Very, very small and basic cross-platform http web server.
Example:

#include <iostream>
#include "library.hpp"

int main() {
    TinyHttp web;
    web.make_route("/", [](Context ctx) {
        ctx.response->write_text("Hello, World!");
    });
    web.run(80);
    return 0;
}

About

Very small cross-platform http web server for C++

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •