Statistics (detailed ones)
Total 277 packages analyzed and 1324 Go files
(460393 lines of code) parsed. On average,
* each Go source file imports 2.94 packages
and contains 348 lines of code.
* each package depends on 6.69 other packages,
contains 4.99 source code files, and exports
- 5.02 type names,
- 1.93 variables,
- 19.63 constants,
- 7.96 functions.
All Packages (sort packages by: | | | )
3
1. archive/tar (0) (3032) (13) (5) - implements access to tar archives.
3
2. archive/zip (0) (2179) (13) (5) - provides support for reading and writing ZIP archives.
3
3. arena (1) (108) (5) (2) - The arena package provides the ability to allocate memory for a collection of Go values and free that space manually all at once, safely.
3
4. bufio (37) (1261) (8) (1) - implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O.
9. compress/flate (3) (3216) (12) (1) - implements the DEFLATE compressed data format, described in RFC 1951.
3
10. compress/gzip (3) (540) (13) (2) - implements reading and writing of gzip format compressed files, as specified in RFC 1952.
3
11. compress/lzw (1) (583) (12) (1) - implements the Lempel-Ziv-Welch compressed data format, described in T. A. Welch, “A Technique for High-Performance Data Compression”, Computer, 17(6) (June 1984), pp 8-19.
3
12. compress/zlib (4) (374) (13) (1) - implements reading and writing of zlib format compressed data, as specified in RFC 1950.
3
13. container/heap (2) (118) (6) (1) - provides heap operations for any type that implements heap.Interface.
16. context (19) (785) (9) (1) - defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes.
18. crypto/aes (3) (965) (11) (2) - implements AES encryption (formerly Rijndael), as defined in U.S. Federal Information Processing Standards Publication 197.
3
19. crypto/cipher (8) (985) (9) (2) - implements standard block cipher modes that can be wrapped around low-level block cipher implementations.
3
20. crypto/des (2) (556) (10) (2) - implements the Data Encryption Standard (DES) and the Triple Data Encryption Algorithm (TDEA) as defined in U.S. Federal Information Processing Standards Publication 46-3.
3
21. crypto/dsa (1) (309) (13) (2) - implements the Digital Signature Algorithm, as defined in FIPS 186-3.
3
22. crypto/ecdh (3) (599) (12) (2) - implements Elliptic Curve Diffie-Hellman over NIST curves and Curve25519.
3
23. crypto/ecdsa (2) (893) (15) (2) - implements the Elliptic Curve Digital Signature Algorithm, as defined in FIPS 186-4 and SEC 1, Version 2.0.
25. crypto/elliptic (3) (937) (13) (2) - implements the standard NIST P-224, P-256, P-384, and P-521 elliptic curves over prime fields.
3
26. crypto/hmac (3) (180) (11) (1) - implements the Keyed-Hash Message Authentication Code (HMAC) as defined in U.S. Federal Information Processing Standards Publication 198.
32. crypto/internal/boring/sig (1) (17) (1) (3) - holds “code signatures” that can be called and will result in certain code sequences being linked into the final binary.
37. crypto/internal/randutil (5) (38) (7) (3) - contains internal randomness utilities for various crypto packages.
3
38. crypto/md5 (7) (320) (9) (1) - implements the MD5 hash algorithm as defined in RFC 1321.
3
39. crypto/rand (5) (279) (13) (2) - implements a cryptographically secure random number generator.
3
40. crypto/rc4 (1) (80) (7) (2) - implements RC4 encryption, as defined in Bruce Schneier's Applied Cryptography.
3
41. crypto/rsa (2) (1572) (14) (2) - implements RSA encryption as specified in PKCS #1 and RFC 8017.
3
42. crypto/sha1 (2) (401) (9) (2) - implements the SHA-1 hash algorithm as defined in RFC 3174.
3
43. crypto/sha256 (3) (423) (11) (2) - implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4.
3
44. crypto/sha512 (4) (553) (11) (2) - implements the SHA-384, SHA-512, SHA-512/224, and SHA-512/256 hash algorithms as defined in FIPS 180-4.
3
45. crypto/subtle (13) (96) (1) (2) - implements functions that are often useful in cryptographic code but require careful thought to use correctly.
3
46. crypto/tls (5) (12271) (17) (1) - partially implements TLS 1.2, as specified in RFC 5246, and TLS 1.3, as specified in RFC 8446.
3
47. crypto/x509 (2) (6058) (16) (1) - implements a subset of the X.509 standard.
3
48. crypto/x509/pkix (1) (320) (14) (2) - contains shared, low level structures used for ASN.1 parsing and serialization of X.509 certificates, CRL and OCSP.
3
49. database/sql (0) (4240) (13) (5) - provides a generic interface around SQL (or SQL-like) databases.
3
50. database/sql/driver (1) (849) (12) (1) - defines interfaces to be implemented by database drivers as used by package sql.
3
51. debug/buildinfo (0) (432) (15) (5) - provides access to information embedded in a Go binary about how it was built.
3
52. debug/dwarf (4) (4486) (12) (2) - provides access to DWARF debugging information loaded from executable files, as defined in the DWARF 2.0 Standard at http://dwarfstd.org/doc/dwarf-2.0.0.pdf.
60. encoding (5) (54) (1) (1) - defines interfaces shared by other packages that convert data to and from byte-level and textual representations.
3
61. encoding/ascii85 (0) (307) (7) (5) - implements the ascii85 data encoding as used in the btoa tool and Adobe's PostScript and PDF document formats.
3
62. encoding/asn1 (3) (2057) (13) (2) - implements parsing of DER-encoded ASN.1 data structures, as defined in ITU-T Rec X.690.
3
63. encoding/base32 (0) (552) (7) (5) - implements base32 encoding as specified by RFC 4648.
3
64. encoding/base64 (6) (630) (9) (1) - implements base64 encoding as specified by RFC 4648.
3
65. encoding/binary (46) (991) (8) (1) - implements simple translation between numbers and byte sequences and encoding and decoding of varints.
73. expvar (0) (373) (20) (5) - provides a standardized interface to public variables, such as operation counters in servers.
3
74. flag (4) (1231) (12) (1) - implements command-line flag parsing.
3
75. fmt (107) (3519) (11) (1) - implements formatted I/O with functions analogous to C's printf and scanf.
3
76. go/ast (9) (3148) (14) (1) - declares the types used to represent syntax trees for Go packages.
3
77. go/build (3) (2849) (17) (1) - gathers information about Go packages.
3
78. go/build/constraint (3) (679) (8) (2) - implements parsing and evaluation of build constraint lines.
3
79. go/constant (4) (1438) (13) (2) - implements Values representing untyped Go constants and their corresponding operations.
3
80. go/doc (1) (2684) (15) (2) - extracts source code documentation from a Go AST.
3
81. go/doc/comment (2) (2327) (12) (2) - implements parsing and reformatting of Go doc comments, (documentation comments), which are comments that immediately precede a top-level declaration of a package, const, func, type, or var.
3
82. go/format (0) (309) (17) (5) - implements standard formatting of Go source.
3
83. go/importer (0) (122) (19) (5) - provides access to export data importers.
90. go/scanner (3) (1078) (13) (2) - implements a scanner for Go source text.
3
91. go/token (17) (976) (12) (1) - defines constants representing the lexical tokens of the Go programming language and basic operations on tokens (printing, predicates).
3
92. go/types (4) (21385) (17) (1) - declares the data types and implements the algorithms for type-checking of Go packages.
133. internal/fmtsort (2) (219) (8) (2) - provides a general stable ordering mechanism for maps, on behalf of the fmt and text/template packages.
3
134. internal/fuzz (1) (4008) (17) (1) - provides common fuzzing functionality for tests built with "go test" and for programs that use fuzzing functionality in the testing package.
136. internal/godebug (12) (290) (6) (1) - makes the settings in the $GODEBUG environment variable available to other packages.
3
137. internal/godebugs (3) (68) (1) (1) - provides a table of known GODEBUG settings, for use by a variety of other packages, including internal/godebug, runtime, runtime/metrics, and cmd/go/internal/load.
3
138. internal/goexperiment (3) (229) (1) (2) - implements support for toolchain experiments.
142. internal/intern (1) (137) (7) (3) - lets you make smaller comparable values by boxing a larger comparable value (such as a 16 byte string header) down into a globally unique 8 byte pointer.
144. internal/lazyregexp (2) (78) (11) (2) - is a thin wrapper over regexp, allowing the use of global regexp variables without forcing them to be compiled at init.
3
145. internal/lazytemplate (0) (52) (14) (5) - is a thin wrapper over text/template, allowing the use of global template variables without forcing them to be parsed at init.
3
146. internal/nettrace (2) (46) (1) (2) - contains internal hooks for tracing activity in the net package.
3
147. internal/obscuretestdata (0) (65) (11) (5) - contains functionality used by tests to more easily work with testdata that must be obscured primarily due to golang.org/issue/34986.
3
148. internal/oserror (2) (18) (6) (2) - defines errors values used in the os package.
3
149. internal/pkgbits (1) (1312) (14) (2) - implements low-level coding abstractions for Unified IR's export data format.
151. internal/poll (2) (2192) (9) (2) - supports non-blocking I/O on file descriptors with polling.
3
152. internal/profile (1) (3435) (14) (1) - provides a representation of github.com/google/pprof/proto/profile.proto and methods to encode/decode/merge profiles in this format.
3
153. internal/race (3) (54) (2) (2) - contains helper functions for manually instrumenting code for the race detector.
3
154. internal/reflectlite (4) (1215) (4) (2) - implements lightweight version of reflect, not using any package except for "runtime", "unsafe", and "internal/abi"
160. internal/sysinfo (1) (31) (5) (2) - implements high level hardware information gathering that can be used for debugging or information purposes.
3
161. internal/testenv (0) (826) (14) (5) - provides information about what functionality is available in different testing environments run by the Go team.
3
162. internal/testlog (2) (102) (5) (1) - provides a back-channel communication path between tests and package os, so that cmd/go can see which environment variables and files a test consults.
3
163. internal/testpty (0) (51) (12) (5) - is a simple pseudo-terminal package for Unix systems, implemented by calling C functions via cgo.
174. log/internal (2) (12) (1) (2) - contains definitions used by both log and log/slog.
3
175. log/slog (3) (2729) (13) (1) - provides structured logging, in which log records include a message, a severity level, and various other attributes expressed as key-value pairs.
184. math/bits (26) (694) (2) (1) - implements bit counting and manipulation functions for the predeclared unsigned integer types.
3
185. math/cmplx (0) (1131) (4) (5) - provides basic constants and mathematical functions for complex numbers.
3
186. math/rand (6) (1253) (7) (1) - implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work.
3
187. mime (4) (1184) (12) (1) - implements parts of the MIME spec.
3
188. mime/multipart (1) (1009) (14) (2) - implements MIME multipart parsing, as defined in RFC 2046.
3
189. mime/quotedprintable (1) (311) (12) (3) - implements quoted-printable encoding as specified by RFC 2045.
3
190. net (17) (11619) (11) (1) - provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets.
3
191. net/http (8) (25472) (19) (1) - provides HTTP client and server implementations.
3
192. net/http/cgi (1) (635) (20) (1) - implements CGI (Common Gateway Interface) as specified in RFC 3875.
216. path/filepath (23) (1260) (11) (1) - implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths.
3
217. plugin (0) (137) (6) (5) - implements loading and symbol resolution of Go plugins.
3
218. reflect (29) (8022) (7) (1) - implements run-time reflection, allowing a program to manipulate objects with arbitrary types.
253. text/template/parse (2) (2521) (12) (2) - builds parse trees for templates as defined by text/template and html/template.
3
254. time (44) (5218) (8) (1) - provides functionality for measuring and displaying time.
3
255. time/tzdata (0) (115) (8) (5) - provides an embedded copy of the timezone database.
3
256. unicode (27) (8923) (1) (1) - provides data and functions to test some properties of Unicode code points.
3
257. unicode/utf16 (3) (133) (1) (2) - implements encoding and decoding of UTF-16 sequences.
3
258. unicode/utf8 (49) (583) (1) (1) - implements functions and constants to support text encoded in UTF-8.
3
259. unsafe (48) (269) (1) (1) - contains operations that step around the type safety of Go programs.
3
260. vendor/golang.org/x/crypto/chacha20 (1) (454) (10) (3) - implements the ChaCha20 and XChaCha20 encryption algorithms as specified in RFC 8439 and draft-irtf-cfrg-xchacha-01.
3
261. vendor/golang.org/x/crypto/chacha20poly1305 (1) (352) (13) (2) - implements the ChaCha20-Poly1305 AEAD and its extended nonce variant XChaCha20-Poly1305, as specified in RFC 8439 and draft-irtf-cfrg-xchacha-01.
3
262. vendor/golang.org/x/crypto/cryptobyte (3) (1341) (14) (2) - contains types that help with parsing and constructing length-prefixed, binary messages, including ASN.1 DER.
264. vendor/golang.org/x/crypto/hkdf (1) (93) (12) (2) - implements the HMAC-based Extract-and-Expand Key Derivation Function (HKDF) as defined in RFC 5869.
269. vendor/golang.org/x/net/http/httpproxy (1) (370) (16) (2) - provides support for HTTP proxy determination based on environment variables, as provided by net/http's ProxyFromEnvironment function.
3
270. vendor/golang.org/x/net/http2/hpack (1) (1585) (12) (2) - implements HPACK, a compression format for efficiently representing HTTP header fields in the context of HTTP/2.
3
271. vendor/golang.org/x/net/idna (3) (6345) (15) (2) - implements IDNA2008 using the compatibility processing defined by UTS (Unicode Technical Standard) #46, which defines a standard to deal with the transition from IDNA2003.
275. vendor/golang.org/x/text/transform (2) (709) (8) (4) - provides reader and writer wrappers that transform the bytes passing through as well as various transformations.
The pages are generated with Goldsv0.6.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds.