libmicrohttpd
Mongoose
libmicrohttpd | Mongoose | |
---|---|---|
4 | 33 | |
65 | 11,296 | |
- | 0.9% | |
0.0 | 9.5 | |
almost 9 years ago | 10 days ago | |
C | C | |
GNU General Public License v3.0 or later | GNU General Public License v3.0 or later |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
libmicrohttpd
-
simple web interface to my C++ application for an embedded project
It's a C API (maybe there is a C++ wrapper) but libmicrohttpd is a pretty good choice.
- XHTTP: An HTTP server library in a single C file
-
What's the most standard way of having a button press on my own website call a function in my C++ program?
Honestly, I think the HTTP server route would be what I'd recommend. Something like libmicrohttpd: https://www.gnu.org/software/libmicrohttpd/
- C++ fread() can't get any data?
Mongoose
-
Sans-IO: The secret to effective Rust for network services
A long time ago I had "fun" implementing all sorts of network protocols with such an event based library on C: https://github.com/cesanta/mongoose
-
Coroutines in C
I've found myself at this webpage multiple times while trying to minimize the complexity of APIs in my C projects.
My conclusion for now is that C coroutines are something to be left to the implementer. For example: Mongoose (https://github.com/cesanta/mongoose) uses event callbacks to deal with asynchronousness. It is much more pleasant to wrap a library like this in whatever thread/task primitives your system has rather than try to integrate the mythical cross-platform c couroutine.
-
BCHS stack: BSD, C, httpd, SQLite
I remember using mongoose 15 years back. Today i would have considered mongoose(10k+ stars) which is also a mature c/c++ web server[1] if not the licence.
https://github.com/cesanta/mongoose/tree/master/examples
- New scalable, fault-tolerant, and efficient open-source MQTT broker
- Eu não tinha nada melhor pra fazer, aí comecei a escrever um servidor HTTP em C do zero usando winsock.
-
Experience using crow as web server
Alternatives at the low to medium level of abstraction include civetweb and mongoose, which have a common ancestor. Both of these appear to be C rather than C++, but seem to be production quality and well-documented. Another C library is cpp-httplib, which is probably too low-level for me.
-
libonion or libhttpserver for embedding a webserver in a small application?
Since this is only going to be used internally would Mongoose be worth considering?
-
Selling proprietary library
Here’s an example: https://mongoose.ws/
- [Cpp] Quelle bibliothèque de serveur Web C++ faut-il utiliser de nos jours ?
- How to serve exactly 1 HTML file and 1 JavaScript file, then exit the program?
What are some alternatives?
Civetweb - Embedded C/C++ web server
libwebsockets - canonical libwebsockets.org networking library
xHTTP - A lightweight HTTP server as a library.
libcurl - A command line tool and library for transferring data with URL syntax, supporting DICT, FILE, FTP, FTPS, GOPHER, GOPHERS, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, MQTT, POP3, POP3S, RTMP, RTMPS, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET, TFTP, WS and WSS. libcurl offers a myriad of powerful features
C++ REST SDK - The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services.
POCO - The POCO C++ Libraries are powerful cross-platform C++ libraries for building network- and internet-based applications that run on desktop, server, mobile, IoT, and embedded systems.
µWebSockets - Simple, secure & standards compliant web server for the most demanding of applications
SteamVR-for-Linux - Issue tracker for the Linux port of SteamVR
cpp-httplib - A C++ header-only HTTP/HTTPS server and client library
Boost.Beast - HTTP and WebSocket built on Boost.Asio in C++11
Proxygen - A collection of C++ HTTP libraries including an easy to use HTTP server.
Onion - C library to create simple HTTP servers and Web Applications.