python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Go error installing dependency, producing EOF
I have just received a new notebook with Win onboard (21H2 build 19044.1415) and tried to install my Go project. After running go build I just keep receiving EOF errors.
I tried to sync dependencies i...
Jack
Votes: 0
Answers: 1
How to exclude a package while compiling WebAssembly
I am trying to compile some small Go application to WebAssembly using this command:
GOOS=js GOARCH=wasm go build .
My small app uses some function from 3rd party package that has dependency to golang....
Vladyslav Diachenko
Votes: 0
Answers: 1
How to deal with dependencies of the package under vendor folder in golang?
I am building a go binary and it is using go module through vendor to manage the dependencies. But each time I am building the binary an error like "proto.IsVersion3" is presented.
Now I thi...
No9527
Votes: 0
Answers: 1
How to structure a golang project with several go modules: a "core" module, and some "adapter" modules referencing the "core" one?
Hard to put in a single sentence, but here is the situation. I am developing a golang package, my intention is for it to be go-gettable. The core of the package provides some "central" funct...
Jairo Lozano
Votes: 0
Answers: 1