PengQi Shi

及时当勉励,岁月不待人

Projects

golang-learn

Go language learning ...

Shell - Released: 09 Aug 2018 - 127

frontend-learn

Frontend learning ...

Shell - Released: 06 May 2018 - 127

sactive-web

A dependency injection web framework for Node.js.

JavaScript - Released: 04 Jun 2018 - 139

apiserver

基于 Go 实现的 API server

Go - Released: 10 Nov 2018 - 107

go-packages-docs-awesome

Go 项目一些常用包的中文文档,包括 Gin,Dep,Cobra 等。

Released: 01 Mar 2019 - 47

vault-docs-Zh-CN

HashiCorp Vault 中文文档

Shell - Released: 01 Nov 2018 - 8

kube

A simple Kubernetes client, based on client-go.

Go - Released: 04 Jan 2022 - 4

blog-src

My blog source code, builded by Hugo.

JavaScript - Released: 15 Mar 2018 - 10

crt

Certificates generator.

Go - Released: 19 May 2022 - 2

jaguar

A scaffold that makes it easy to create amazing Go applications.

Go - Released: 25 Apr 2023 - 2

commitizen

The commitizen command line utility, without nodejs. Forked from commitizen-go, fixes some issues of commitizen-go and supports more new features.

Go - Released: 21 Feb 2022 - 2

jcli

A package for building Go applications.

Go - Released: 06 May 2023 - 2

errors

Package errors provides simple error handling primitives. The traditional error handling idiom in Go is roughly akin to which when applied recursively up the call stack results in error reports without context or debugging information. The errors package allows programmers to add context to the failure path in their code in a way that does not destroy the original value of the error. The e.Wrap function returns a new error that adds context to the original error by recording a stack trace at the point Wrap is called, together with the supplied message. For example If additional control is required, the e.WithStack and e.WithMessage functions destructure e.Wrap into its component operations: annotating an error with a stack trace and with a message, respectively. Using e.Wrap constructs a stack of errors, adding context to the preceding error. Depending on the nature of the error it may be necessary to reverse the operation of e.Wrap to retrieve the original error for inspection. Any error value which implements this interface can be inspected by e.Cause. e.Cause will recursively retrieve the topmost error that does not implement causer, which is assumed to be the original cause. For example: Although the causer interface is not exported by this package, it is considered a part of its stable public interface. All error values returned from this package implement fmt.Formatter and can be formatted by the fmt package. The following verbs are supported: New, Errorf, Wrap, and Wrapf record a stack trace at the point they are invoked. This information can be retrieved with the following interface: The returned e.StackTrace type is defined as The Frame type represents a call site in the stack trace. Frame supports the fmt.Formatter interface that can be used for printing information about the stack trace of this error. For example: Although the stackTracer interface is not exported by this package, it is considered a part of its stable public interface. See the documentation for Frame.Format for more details.

Go - Released: 18 Feb 2022 - 1

golib

Common libraries for Go.

Go - Released: 04 Nov 2021 - 1

log

A structured logger for Go, based on zap.

Go - Released: 18 Feb 2022 - 1

component-base

Shared code for core components

Go - Released: 09 Mar 2022 - 1

action

Inspired by Cobra. Cobra is a library for creating powerful modern CLI applications. "action" can be used to create a more fine-grained behavior of a command.

Go - Released: 29 Sep 2022 - 1