google
wire
Go

Compile-time Dependency Injection for Go

Last updated Jul 8, 2026
14.4k
Stars
739
Forks
108
Issues
+4
Stars/day
Attention Score
79
Language breakdown
Go 95.8%
Shell 4.2%
Files click to expand
README

Wire: Automated Initialization in Go

Build Status [godoc][godoc]

[!WARNING]
This project is no longer maintained.
>
If you wish to update or extend wire, please do so in a fork.

Wire is a code generation tool that automates connecting components using [dependency injection][]. Dependencies between components are represented in Wire as function parameters, encouraging explicit initialization instead of global variables. Because Wire operates without runtime state or reflection, code written to be used with Wire is useful even for hand-written initialization.

For an overview, see the [introductory blog post][].

[dependency injection]: https://en.wikipedia.org/wiki/Dependency_injection [introductory blog post]: https://blog.golang.org/wire [godoc]: https://godoc.org/github.com/google/wire [travis]: https://travis-ci.com/google/wire

Installing

Install Wire by running:

go install github.com/google/wire/cmd/wire@latest

and ensuring that $GOPATH/bin is added to your $PATH.

Documentation

  • [Tutorial][]
  • [User Guide][]
  • [Best Practices][]
  • [FAQ][]
[Tutorial]: ./_tutorial/README.md [Best Practices]: ./docs/best-practices.md [FAQ]: ./docs/faq.md [User Guide]: ./docs/guide.md

Project status

As of version v0.3.0, Wire is beta and is considered feature complete. It works well for the tasks it was designed to perform, and we prefer to keep it as simple as possible.

We'll not be accepting new features at this time, but will gladly accept bug reports and fixes.

Community

For questions, please use GitHub Discussions.

This project is covered by the Go [Code of Conduct][].

[Code of Conduct]: ./CODEOFCONDUCT.md [go-cloud mailing list]: https://groups.google.com/forum/#!forum/go-cloud

🔗 More in this category

© 2026 GitRepoTrend · google/wire · Updated daily from GitHub