Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/trevnorris/libuv-examples

Simple examples of how to use libuv
https://github.com/trevnorris/libuv-examples

Last synced: 16 days ago
JSON representation

Simple examples of how to use libuv

Awesome Lists containing this project

README

        

libuv examples

Each script here is a small example of how to use libuv. Each of these
were compiled against libuv v0.11.22.

The Makefile is pretty shabby, but it has a few basics. First, to build
libuv just run:

$ make libuv.a

Then you can run make against any given target file by doing:

$ BUILDFILE= make

This will compile the file to ./run. You can also specify the name of
the output file like so:

$ OUTFILE= make

That about covers it. If you see any issues/improvements PRs are more
than welcome.