Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 29 days 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 9 years ago)
- Default Branch: master
- Last Pushed: 2019-10-31T22:07:05.000Z (about 5 years ago)
- Last Synced: 2024-09-30T00:02:30.618Z (about 1 month ago)
- Topics: cplusplus-11, http, http-server, linux, macos, macosx, windows
- Language: C++
- Homepage:
- Size: 667 KB
- Stars: 21
- 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 ([email protected])
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 filestiny_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 cmakeCreate build directory and run cmake using a command line similar to the
following one:mkdir build && cd build && cmake ..