Search Articles — Sudonull

Search Results

In this project

Headless CMS on Go without CGO and frameworks

https://sudonull.com/headless-cms-on-go-without-cgo-and-frameworks

Minimal headless CMS on pure Go: SQLite without CGO, net/http routing, Bitrix24 integration. Zero deps, 20 MB binary. Instructions for middle/senior dev.

From the web

Jul 7, 2026 ·

https://pkg.go.dev/cmd/cgo

Jul 7, 2026 · Cgo enables the creation of Go packages that call C code. To use cgo write normal Go code that imports a pseudo-package "C". The Go code can then refer to types such as C.size_t, variables such as C.stdout, or functions such as C.putchar.

Jan 27, 2023 ·

https://www.youtube.com/watch?v=84XbNWY3uT0

Jan 27, 2023 · In this video, we learn how to use Go’s cgo so that we can run C code in our go programs. Visit my website https://hoani.net/guides/software/gol... for more details on this technique.

Dec 14, 2023 ·

https://github.com/golang/go/wiki/cgo

Dec 14, 2023 · Contribute to golang/go development by creating an account on GitHub.

Sep 13, 2022 ·

https://www.golinuxcloud.com/cgo-tutorial/

Sep 13, 2022 · CGO is a powerful Go tool that makes it possible to run C code in a Go application and handles communication between C code and Go code. This allows C code to be used in a Go application and to leverage the huge amount of existing C libraries.

Oct 9, 2023 ·

https://dev.to/metal3d/understand-how-to-use-c-libraries-in-go-with-cgo-3dbn

Oct 9, 2023 · CGO is provided with Go, but you'll need a C compiler like GCC on Ming (for Windows). CGO will use the "C" package where all C functions and variables are accessibles.

Trending Now