Popularity
0.2
Stable
Activity
0.0
Stable
0
1
0

Description

Simple program that embeds target files and/or directories into current directory go package source code. It generates a file containing a function that returns a []byte. Files are packed into a tar if more than one file is present, otherwise the file is encoded as is. Intended to be used with go generate.

Programming language: Go
License: European Union Public License 1.2
Tags: Resource Embedding     Go     Package     Golang    

embed alternatives and similar packages

Based on the "Resource Embedding" category.
Alternatively, view embed alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of embed or a related project?

Add another 'Resource Embedding' Package

README

embed

Simple program that embeds target files and/or directories into current directory go package source code. It generates a file containing a function that returns a []byte. Files are packed into a tar if more than one file is present, otherwise the file is encoded as is. This allows targeting prepackaged tar files without specific checks, but means that programs need to be aware if the file is NOT a tar file.

Note that each argument passed to embed is walked, thus you can add multiple directories at once.

To use the data in the program call bindata(), which returns a []byte copy of data. Generally you will then use a tar reader to read it.

Personally I used embed with the go generate command on a separate sub-package of my intended package and place handling logic for assets there.

See embed -h for details.