Package management #85
|
Thank you for starting this project ! it's a fresh take and i really like it. One of the major benefits of working with GO has been package management. I really like/liked C, but using a library is a (very) small project in itself in this world. Will solod include the same package management for it's libraries / same experience as GO? |
Answered by
nalgeon
Jul 18, 2026
Replies: 1 comment 1 reply
|
Hey Stefan, thanks for your interest in Solod! Package management works just like in Go. Every Solod package, including the standard library, is a regular Go package. You install it with go mod init example
go get solod.dev@latestIf you want to install a third-party Solod package, you do it the same way: go get github.com/username/repo |
1 reply
Answer selected by
stefan-kiss
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey Stefan, thanks for your interest in Solod! Package management works just like in Go.
Every Solod package, including the standard library, is a regular Go package. You install it with
go getand it gets added to your project'sgo.modfile:If you want to install a third-party Solod package, you do it the same way: