Skip to content

Latest commit

 

History

History
76 lines (55 loc) · 1.34 KB

README_zh.md

File metadata and controls

76 lines (55 loc) · 1.34 KB

Go Reference



Typer

Typer 是一款打字机输出模拟器,让你的 log 输出更加生动!

Shown

立即体验!

先决条件

在您的个人电脑上已经安装 GoGit

将 Typer 仓库克隆到您本机

git clone https://github.com/ZenkieBear/typer

运行 main.go

go run main.go

在您的项目中使用 Typer

安装 Typer

go get github.com/ZenkieBear/typer

将 Typer 导入您的 go 文件

import "github.com/ZenkieBear/typer/typer"

使用 Typer

func some() {
	typer.Print("Hey Judy\n")
	typer.Println("Don't be afraid")
}

配置

Typer 支持自定义配置。

你可以创建一个 typer.Typer, 并根据您的喜好来定义属性。

func demo() {
  // ...
	myTyper := typer.Typer{
		Base:       300,
		FloatRange: 50,
		Printer:    fmt.Print,
	}

	if err := myTyper.Print("你好啊!"); err != nil {
		fmt.Println(err.Error())
	}
  // ...
}

许可证

Typer 使用 MIT 开源证书授权