Skip to content

Instantly share code, notes, and snippets.

View kiselev-nikolay's full-sized avatar

Nikolay Kiselev kiselev-nikolay

View GitHub Profile
@jdx
jdx / client.go
Last active November 11, 2022 10:51
basic IPC example connecting node and golang together with unix socket (named pipe)
package main
import (
"io"
"log"
"net"
"time"
)
func reader(r io.Reader) {