Skip to content

DarkGamerYT/http-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A simple HTTP server made using C++.

#include "HttpServer.h"

HttpServer httpServer;
int main()
{
	httpServer.get("/", [](Request req, Response res) {
		res.send("Hello, world!");
	});

	httpServer.listen(3000);
};

Building

  • Install CMake
  • Run build.bat to build this project.

If built successfully, a static library with the name web-server.lib should be found inside build/Release directory.

Features

  • Caching
  • SSL Support

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published