Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daniel-le97/vlibuv
v bindings for libuv
https://github.com/daniel-le97/vlibuv
libuv-bindings vlang
Last synced: about 1 month ago
JSON representation
v bindings for libuv
- Host: GitHub
- URL: https://github.com/daniel-le97/vlibuv
- Owner: daniel-le97
- Created: 2024-09-24T23:42:19.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-22T03:24:13.000Z (3 months ago)
- Last Synced: 2024-12-09T14:58:00.166Z (about 2 months ago)
- Topics: libuv-bindings, vlang
- Language: V
- Homepage:
- Size: 521 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vlibuv
v bindings for libuv
## install
```
v install --git https://github.com/daniel-le97/vlibuv.git
```you may need to run 'make update' before developing
```bash
make update
```## version 0.0.2
old bindings have been moved to ./uv
```
// http_server_uv.v
import vlibuv.uv
```new bindings are now available via vlibuv
```
import vlibuv
```new bindings are not fully complete i am missing the following, but may be missing more
- fs
- pipe
- dl
- key## note
this currently compiles libuv from source or a static library on macos, other platforms have not yet been tested
passing -d uv_static, assumes libuv is installed as a static library at /usr/local/ or /opt/homebrew on macOS