w icon indicating copy to clipboard operation
w copied to clipboard

A simple C++ web framework based on Libevent.

Results 7 w issues
Sort by recently updated
recently updated
newest added

I'd like to reuse/port some of parts your code for use in an open source library for embedded devices. Can you please specify a license (anything not GPL-ish would be...

With the these commands, ``` sh $ git clone https://github.com/simonask/w.git --recursive $ cd w $ scons -j8 ``` I get the following error message from scons: ``` scons: Reading SConscript...

Currently w::format only does plain interpolation. It would be great if it could support syntax like this: ``` w::format("{0:.2}", 123); // => "0.00" ``` The format options should be per-interpolation,...

enhancement

Libevhtp, the current HTTP library based on libevent, does not seem to parse multipart form data, which is the default for browsers. It is also required when doing things like...