I am new to Go, I want to create Named Pipes implementation in Go which works on both Windows and Linux.
I managed to get the code working on Ubuntu, but this one do
There is an implementation of named pipes for Windows in Go from Microsoft:
https://github.com/Microsoft/go-winio
According to https://github.com/golang/go/issues/3599
nate's package looks nice, and anyone can "go get" it.
A Windows named pipe implementation written in pure Go:
https://github.com/natefinch/npipe
Which has inspired (Win32 IO-related utilities for Go):
https://github.com/Microsoft/go-winio