https://github.com/eantcal/thttpd
TinyHttpServer is a lightweight web server implemented in C++11
https://github.com/eantcal/thttpd
cplusplus-11 http http-server linux macos macosx windows
Last synced: 10 months ago
JSON representation
TinyHttpServer is a lightweight web server implemented in C++11
- Host: GitHub
- URL: https://github.com/eantcal/thttpd
- Owner: eantcal
- License: mit
- Created: 2015-07-24T13:50:20.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-10-31T22:07:05.000Z (about 6 years ago)
- Last Synced: 2025-04-10T01:10:31.854Z (10 months ago)
- Topics: cplusplus-11, http, http-server, linux, macos, macosx, windows
- Language: C++
- Homepage:
- Size: 667 KB
- Stars: 22
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: COPYING
Awesome Lists containing this project
README
-------------------------------------------------------------------------------
This file is part of thttpd (TinyHttpServer)
(c) Antonino Calderone (antonino.calderone@gmail.com)
All rights reserved.
Licensed under the MIT License.
See COPYING file in the project root for full license information.
-------------------------------------------------------------------------------
TinyHttpServer is a lightweight web server implemented in C++11
implemented for educational purposes.
You can build it either using Visual Studio for Windows or any C++ compiler
such as g++, clang, etc. which supports C++11
-------------------------------------------------------------------------------
* Project files
tiny_http_server.vcxproj
This is the main project file for VC++ projects generated using an Application
Wizard. It contains information about the version of Visual C++ that generated
the file, and information about the platforms, configurations,
and project features selected with the Application Wizard.
CMakeLists.txt
This is a cmakefile
-------------------------------------------------------------------------------
* How build TinyHttpServer using cmake
Create build directory and run cmake using a command line similar to the
following one:
mkdir build && cd build && cmake ..