diff options
author | Julie Qiu <julie@golang.org> | 2020-06-15 09:57:50 -0400 |
---|---|---|
committer | Julie Qiu <julie@golang.org> | 2020-06-15 15:07:20 +0000 |
commit | b41a62f02a6b08127031eb532972c9245af5d68d (patch) | |
tree | 76e93115a2279070c5a3f9ebdfe82e2fc6b0bb14 | |
parent | 41e7c9cff4207ae36f08c22e02a425ab084697e0 (diff) |
content: add pkgsite article
Change-Id: I7d95fda486b82f8cc695cd6f5dda586edb206c7a
Reviewed-on: https://go-review.googlesource.com/c/blog/+/237937
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Andrew Bonventre <andybons@golang.org>
-rw-r--r-- | content/pkgsite.article | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/content/pkgsite.article b/content/pkgsite.article new file mode 100644 index 0000000..15ca815 --- /dev/null +++ b/content/pkgsite.article @@ -0,0 +1,56 @@ +# Pkg.go.dev is open source! +15 Jun 2020 + +Julie Qiu +julie@golang.org + +## + +We’re excited to announce that the codebase for +[pkg.go.dev](https://pkg.go.dev) is now open source. + +The repository lives at +[go.googlesource.com/pkgsite](https://go.googlesource.com/pkgsite) +and is mirrored to +[github.com/golang/pkgsite](https://github.com/golang/pkgsite). +We will continue using the Go issue tracker to track +[feedback](https://github.com/golang/go/labels/go.dev) +related to pkg.go.dev. + +## Contributing + +If you are interested in contributing to any +[issues related to pkg.go.dev](https://github.com/golang/go/labels/go.dev), +check out our +[contribution guidelines](https://go.googlesource.com/pkgsite/+/refs/heads/master/CONTRIBUTING.md). +We also encourage you to continue +[filing issues](https://golang.org/s/discovery-feedback) +if you run into problems or have feedback. + +## What’s Next + +We really appreciate all the feedback we’ve received so far. It has been a big +help in shaping our +[roadmap](https://go.googlesource.com/pkgsite#roadmap) for the coming year. +Now that pkg.go.dev is open source, here’s what we’ll be working on next: + +- We have some design changes planned for pkg.go.dev, + to address + [UX feedback](https://github.com/golang/go/issues?q=is%3Aissue+is%3Aopen+label%3Ago.dev+label%3AUX) + that we have received. You can expect a more cohesive search and navigation + experience. We plan to share these designs for feedback once they are ready. + +- We know that there are features available on godoc.org that users + want to see on pkg.go.dev. We’ve been keeping track of them on + [Go issue #39144](https://golang.org/issue/39144), + and will prioritize adding them in the next few months. We also plan to + continue improving our license detection algorithm based on feedback. + +- We’ll be improving our search experience based on feedback in + [Go issue #37810](https://golang.org/issue/37810), + to make it easier for users to find the dependencies they are looking for and + make better decisions around which ones to import. + +Thanks for being patient with us in the process of open sourcing pkg.go.dev. +We’re looking forward to receiving your contributions and working with you on +the future of the project. |