Skip to content

Installation

Gerasimos (Makis) Maropoulos edited this page Oct 28, 2023 · 5 revisions

Neffos is a cross-platform package.

The only requirement is the Go Programming Language, version 1.21 and above.

$ go get github.com/kataras/neffos@latest

Or inside your go.mod file:

module your_project_name

go 1.21

require (
    github.com/kataras/neffos v0.0.22
)

Troubleshooting

If you get a network error during installation please make sure you set a valid GOPROXY environment variable.

go env -w GOPROXY=direct

How to update

Here is the go-get command to get the latest and greatest neffos version. Master branch is usually stable enough.

$ go get github.com/kataras/neffos@master

Continue by reading our Getting Started tutorial.