mongoose/README.md

61 lines
3.1 KiB
Markdown
Raw Normal View History

2014-01-05 04:12:07 +08:00
# Mongoose Web Server
2012-08-26 05:48:14 +08:00
2014-01-05 08:01:31 +08:00
Mongoose is easy to use, powerful, embeddable web server.
2014-01-05 04:12:07 +08:00
* [Mailing list](http://groups.google.com/group/mongoose-users)
2014-03-08 01:08:23 +08:00
* [Downloads & Documentation](http://cesanta.com/mongoose.shtml)
2014-03-10 19:21:52 +08:00
* [How to use Lua Server Pages](http://cesanta.com/docs/Lua.shtml)
2014-03-08 01:08:23 +08:00
* [How to create basic website with Mongoose](http://cesanta.com/docs/BasicWebsite.shtml)
* [How to create PHP website with Mongoose](http://cesanta.com/docs/PhpWebsite.shtml)
* [Embedding Guide](http://cesanta.com/docs/Embed.shtml)
2013-01-02 07:05:09 +08:00
2014-01-05 04:12:07 +08:00
# Features
2013-01-02 07:05:09 +08:00
2013-11-13 11:04:31 +08:00
- Works on Windows, Mac, UNIX/Linux, iPhone, Android, and many other platforms
2014-03-05 19:19:18 +08:00
- CGI, SSI, SSL, Digest auth, Websocket, WEbDAV, Resumed download, URL rewrite, file blacklist, Custom error pages, Virtual hosts, IP-based ACL, Windows service
2014-03-11 14:03:20 +08:00
- Lua Server Pages (PHP-like scripting in [Lua](http://lua.org) ), see [dirscan.lp](https://github.com/cesanta/mongoose/blob/master/examples/lua/dirscan.lp) )
2013-12-28 02:32:24 +08:00
- Simple and clean
[embedding API](https://github.com/cesanta/mongoose/blob/master/mongoose.h).
2013-01-17 19:07:53 +08:00
The source is in single
2013-09-17 05:45:19 +08:00
[mongoose.c](https://github.com/cesanta/mongoose/blob/master/mongoose.c) file
2014-01-05 04:12:07 +08:00
to make embedding easy
2013-12-26 17:33:26 +08:00
- Extremely lightweight, has a core of under 40kB and tiny runtime footprint
2013-12-26 20:55:50 +08:00
- Asyncronouns, non-blocking core supporting single- or multi-threaded usage
2014-03-11 14:03:20 +08:00
- HTTP client functionality
2013-12-26 17:33:26 +08:00
- On the market since 2004, stable, mature and tested,
2014-01-05 04:12:07 +08:00
has several man-years invested in continuous improvement and refinement
- Professional support and consultancy available from
[Cesanta Software](http://cesanta.com), developer of Mongoose
2012-08-26 05:48:14 +08:00
# Acknowledgements
2014-01-05 04:12:07 +08:00
Mongoose made better thanks to the contribution of following people:
Arnout Vandecappelle, Benoît Amiaux, Boris Pek, Cody Hanson, Colin Leitner,
Daniel Oaks, Eric Bakan, Erik Oomen, Filipp Kovalev, Ger Hobbelt,
Hendrik Polczynski, Igor Okulist, Jay, Joe Mucchiello, John Safranek,
José Miguel Gonçalves, Shueng Chuan, Katerina Blinova, Konstantin Sorokin,
Marin Atanasov, Matt Healy, Mitch Hendrickson, Nigel Stewart, Pavel Khlebovich,
Sebastian Reinhard, Stefan Doehla, abadc0de, nullable.type,
T.Barmann, D.Hughes, J.C.Sloan, R.Romeo, L.E.Spencer, S.Kotay, R.M.Shorter,
W.Mar, J.Wilander, Santa from Memphis, S.Davies, C.Beck,
O.M.Vilhunen, C.Radik, G.Woodcock, M.Szczepkowski,
Eternal Lands Dev Team, T.Tollet, C.Tangerino, G.Karsai, A.Bourgett,
C.Blakemore, D.Fonaryov, T.Andrle, O.IJsselmuiden, R.Womack, M.Tomlinson,
A.Slåttå, L.Farrell, J.D.P.Ballestero, V.Albaev, B.Harker, T.Scheffel, H.Klein,
R.Merit, T.Bennett, H.Solis, A.Zincenko, M.S., S.Krul, K.Cooke, S.McCallum,
F.Morenius, and 10 others.
2012-08-26 05:48:14 +08:00
2013-10-04 02:34:00 +08:00
# Licensing
2012-08-26 05:48:14 +08:00
2013-12-26 17:33:26 +08:00
Mongoose is released under
[GNU GPL v.2](http://www.gnu.org/licenses/old-licenses/gpl-2.0.html).
Businesses have an option to get non-restrictive, royalty-free commercial
license and professional support from
[Cesanta Software](http://cesanta.com).
2013-08-16 18:28:50 +08:00
2014-01-03 11:06:50 +08:00
[Frozen JSON parser](https://github.com/cesanta/frozen),
2013-12-21 16:34:02 +08:00
[Super Light Regular Expression library](https://github.com/cesanta/slre),
[Super Light DNS Resolver](https://github.com/cesanta/sldr)
are other projects by Cesanta Software, developed with the same philosophy
2013-08-16 18:28:50 +08:00
of functionality and simplicity.