statik

command module
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 24, 2019 License: Apache-2.0 Imports: 11 Imported by: 0

README

statik

Build Status

statik allows you to embed a directory of static files into your Go binary to be later served from an http.FileSystem.

This project is fork from rakyll/statik with some changes:

  • Go 1.13.x compatible
  • Assets are loaded as string instead of Register func

Usage

Install the command line tool first.

go get github.com/mitjaziv/statik

statik is a tiny program that reads a directory and generates a source file that contains its contents. The generated source file registers the directory contents to be used by statik file system.

The command below will walk on the public path and generate a package called statik under the current working directory.

$ statik -src=/path/to/your/project/public

The command below will filter only files on listed extensions.

$ statik -include=*.jpg,*.txt,*.html,*.css,*.js

In your program, all your need to do is to import the generated package, initialize a new statik file system and serve.

import (
	"github.com/mitjaziv/statik/example/statik"
	"github.com/mitjaziv/statik/fs"
)

  // ...

  statikFS, err := fs.New(statik.Assets)
  if err != nil {
    log.Fatal(err)
  }
  
  // Serve the contents over HTTP.
  http.Handle("/public/", http.StripPrefix("/public/", http.FileServer(statikFS)))
  http.ListenAndServe(":8080", nil)

Visit http://localhost:8080/public/path/to/file to see your file.

You can also read the content of a single file:

import (
	"github.com/mitjaziv/statik/example/statik"
	"github.com/mitjaziv/statik/fs"
)

  // ...

  statikFS, err := fs.New(statik.Assets)
  if err != nil {
    log.Fatal(err)
  }
  
  // Access individual files by their paths.
  r, err := statikFS.Open("/hello.txt")
  if err != nil {
    log.Fatal(err)
  }    
  defer r.Close()
  contents, err := ioutil.ReadAll(r)
  if err != nil {
    log.Fatal(err)
  }

  fmt.Println(string(contents))

There is also a working example under example directory, follow the instructions to build and run it.

Note: The idea and the implementation are hijacked from camlistore. I decided to decouple it from its codebase due to the fact I'm actively in need of a similar solution for many of my projects.

Documentation

Overview

Package contains a program that generates code to register a directory and its contents as zip data for statik file system.

Directories

Path Synopsis
statik
Package contains static assets.
Package contains static assets.
Package fs contains an HTTP file system that works with zip contents.
Package fs contains an HTTP file system that works with zip contents.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL