Skip to content

Latest commit

 

History

1 Commit

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

uv

Solod bindings for libuv, a multi-platform library for asynchronous I/O.

Usage

  1. Install libuv for your operating system.

  2. Install the Solod bindings.

go get solod.dev/uv@latest
  1. Use it in your code.
package main

import (
	"solod.dev/so/fmt"
	"solod.dev/uv/libuv"
)

func main() {
	loop := libuv.Default_loop()
	fmt.Println("Default loop")
	libuv.Run(loop, libuv.RUN_DEFAULT)
	libuv.Loop_close(loop)
}

Examples

Event loop

Echo server

About

Solod bindings for libuv

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages