aboutsummaryrefslogtreecommitdiff
path: root/README
blob: 4b41d6987dbdf09dbfa4d7d4f47f1ca904445982 (plain)
1
2
3
4
5
6
7
8
9
10
# libuvh

A simple http server using libuv for eventloop, and http-parser for doing the
protocol.

To build, you need libuv. Once that is in order, build libuvh:

    $ export CPPFLAGS=-I/path/to/libuv/includes
    $ export LDFLAGS=-L/path/to/libuv/libraries
    $ make all