Skip to content

A Lightweight and fully asynchronous HTTP server library based on libubox for Embedded Linux and support Lua.

License

Notifications You must be signed in to change notification settings

mobistor/libuhttpd

 
 

Repository files navigation

libuhttpd(中文)

license PRs Welcome Issue Welcome Release Version Build Status

A Lightweight and fully asynchronous HTTP server library based on libubox and referenced from uhttpd for Embedded Linux.

Keep Watching for More Actions on This Space

Features

  • Lightweight and fully asynchronous
  • Use libubox as its event backend
  • Support HTTPS - OpenSSL, mbedtls and CyaSSl(wolfssl)
  • Flexible - you can easily extend your application to have HTTP/HTTPS services
  • Code structure is concise and understandable, also suitable for learning
  • Lua Template - Embed Lua code into HTML code, like embedding PHP into HTML
  • Lua binding

Dependencies

Configure

See which configuration are supported

~/libuhttpd/$ mkdir build && cd build
~/libuhttpd/build$ cmake .. -L
~/libuhttpd/build$ cmake .. -LH

Build and install

~/libuhttpd/build$ make && sudo make install

Run Example

Run

~/libuhttpd/build$ ./example/helloworld

Then use the command curl or browser to test

$ curl -k 'https://127.0.0.1:8000/hello?name=test' -d '{"name":"libuhttpd"}' -v

Install on OpenWrt

opkg update
opkg list | grep libuhttpd
opkg install libuhttpd-nossl

If the install command fails, you can compile it yourself.

Contributing

If you would like to help making libuhttpd better, see the CONTRIBUTING.md file.

QQ group: 153530783

If the project is helpful to you, please do not hesitate to star. Thank you!

About

A Lightweight and fully asynchronous HTTP server library based on libubox for Embedded Linux and support Lua.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 90.5%
  • CMake 5.4%
  • Lua 3.6%
  • Other 0.5%