devf

command module
v0.3.2 Latest Latest
Warning

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

Go to latest
Published: Nov 28, 2023 License: GPL-2.0 Imports: 20 Imported by: 0

Documentation

Overview

package devf provides livereload webserver for developers (inspired by devd). It attempts to do one thing and do it well: serve as a reverse proxy while injecting some JS to support livereloading.

The livereload is triggered by a std-input newline or some OS-signals (usually provided by another tool).

Usage:

devf [options] http-url-or-local-folders
# or using go run:     go run code.pfad.fr/devf@main [options] http-url-or-local-folders
# or using nix flakes: nix run git+https://code.pfad.fr/devf [options] http-url-or-local-folders

If `http-url-or-local-folders` contains `://`, it will be interpreted as a URL, otherwise as a local folder (multiple folders are supported: they will be looked up in order).

The flags are:

-addr string
	address to listen to (default ":8080")
-sig value
	comma-separated list of signals which will trigger a reload
	(instead of stdin newline): abrt,hup,int,kill,pipe,quit,term,usr1,usr2

Example using inotifywait on linux

Local generation of the doc of this package (make doc):

(echo "initial generation" && \
	inotifywait -m -e close_write --include "\.go$" -r .) | \
	xargs -I -n1 -d "\n" vanitydoc -html=dist/devf gitea://codeberg.org/pfad.fr/devf | \
	devf dist

Explanation:

  • generate an dummy line to trigger the initial documentation generation
  • on any change to a go file (using inotifywait),
  • re-generates the package documentation (using xargs and vanitydoc),
  • serve the content of `dist` and automatically reloads the webbrowser using devf

Example using modd

**/*.gohtml server.is_running {
	daemon: devf -sig hup http://localhost:8989
}

modd will send a sighup to devf (which will trigger a reload) whenever a .gohtml file changes or the `server.is_running` file is written to (I usually do that in my main.go, when the server is ready to accept connections).

To ensure that the livereload is injected on pages (especially error pages), make sure that the `Content-Type` header starts with `text/html`.

Advanced usage

If you need more control regarding the triggering of the reload, the reverse-proxying or of the local server, take a look at the livereload subpackage.

License

GPL-3.0-or-later. Using only the exported API of this library (or the CLI) is not considered "covered work" (so you don't need to release your work under a compatible license in such a case).

Directories

Path Synopsis
package livereload handles Server-sent events and injection of the livereload script into upstream HTML pages.
package livereload handles Server-sent events and injection of the livereload script into upstream HTML pages.

Jump to

Keyboard shortcuts

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