goldsmith/README.md

226 lines
12 KiB
Markdown
Raw Normal View History

2016-09-07 04:15:59 +00:00
# Goldsmith #
2016-01-12 10:24:19 +00:00
2016-07-09 05:55:03 +00:00
Goldsmith is a static website generator developed in Go with flexibility, extensibility, and performance as primary
2016-01-12 10:24:19 +00:00
design considerations. With Goldsmith you can easily build and deploy any type of site, whether it is a personal blog,
image gallery, or a corporate homepage; the tool no assumptions are made about your layout or file structure. Goldsmith
is trivially extensible via a plugin architecture which makes it simple to perform complex data transformations
2016-09-07 04:13:37 +00:00
concurrently.
2016-01-12 10:24:19 +00:00
2016-09-07 04:50:46 +00:00
Naturally, I use Goldsmith to generate my personal website, [FooSoft Productions](https://foosoft.net/). If you would
like to know how a Bootstrap site can be put together with this static generator, you can check out the [source content
2017-04-23 22:02:52 +00:00
files](https://github.com/FooSoft/foosoft.net.git) as well as the [plugin
2016-09-07 04:50:46 +00:00
chain](https://github.com/FooSoft/webtools/blob/master/webbuild/main.go) that makes everything happen.
2016-07-12 03:52:43 +00:00
![](https://foosoft.net/projects/goldsmith/img/gold.png)
2017-10-03 04:05:52 +00:00
## Table of Contents
* [Motivation](https://foosoft.net/projects/goldsmith/#motivation)
2018-02-22 03:14:55 +00:00
* [Components](https://foosoft.net/projects/goldsmith/#components)
2017-10-03 04:05:52 +00:00
* [Usage](https://foosoft.net/projects/goldsmith/#usage)
* [License](https://foosoft.net/projects/goldsmith/#license)
2016-01-12 10:24:19 +00:00
## Motivation ##
Why in the world would one create yet another static site generator? At first, I didn't think I needed to; after all,
there is a wide variety of open source tools freely available for use. Surely one of these applications would allow me
to build my portfolio page exactly the way I want right?
After trying several static generators, namely [Pelican](http://blog.getpelican.com/), [Hexo](https://hexo.io/), and
[Hugo](https://gohugo.io/), I found that although sometimes coming close, no tool gave me exactly what I needed.
Although I hold the authors of these applications in high regard and sincerely appreciate their contribution to the open
source community, everyone seemed overly eager to make assumptions about content organization and presentation.
Many of the static generators I've used feature extensive configuration files to support customization. Nevertheless, I
was disappointed to discovered that even though I could approach my planned design, I could never realize it. There was
always some architectural limitation preventing me from doing something with my site which seemed like basic
functionality.
* Blog posts can be tagged, but static pages cannot.
* Image files cannot be stored next to content files.
* Navbar item activated when viewing blog, but not static pages.
* Auto-generated pages behave differently from normal ones.
Upon asking on community forms, I learned that most users were content to live with such design decisions, with some
offering workarounds that would get me halfway to where I wanted to go. As I am not one to make compromises, I kept
hopping from one static site generator to another, until I discovered [Metalsmith](http://www.metalsmith.io/). Finally,
it seemed like I found a tool that gets out of my way, and lets me build my website the way I want to. After using this
tool for almost a year, I began to see its limits.
* The extension system is complicated; it's difficult to write and debug plugins.
* Quality of existing plugins varies greatly; I found many subtle issues.
* No support for parallel processing (this is a big one if you process images).
2016-09-07 04:13:37 +00:00
* A full Node.js is stack (including dependencies) is required to build sites.
2016-01-12 10:24:19 +00:00
Rather than making do with what I had indefinitely, I decided to use the knowledge I've obtained from using various
static site generators to build my own. The *Goldsmith* name is a reference to both the *Go* programming language I've
selected for this project, as well as to *Metalsmith*, my inspiration for what an static site generator could be.
The motivation behind Goldsmith can be described by the following principles:
* Keep the core small and simple.
* Enable efficient, multi-core processing.
* Add new features via user plugins.
* Customize behavior through user code.
I originally built this tool to generate my personal homepage, but I believe it can be of use to anyone who wants to
enjoy the freedom of building a static site from ground up, especially users of Metalsmith. Why craft metal when you can
be crafting gold?
2018-02-22 03:14:55 +00:00
## Components ##
2016-09-07 04:13:37 +00:00
A growing set of core plugins is provided to make it easier to get started with this tool to generate static websites.
2018-02-22 03:14:55 +00:00
### Plugins ###
2016-09-07 04:34:11 +00:00
* **[Goldsmith-Abs](https://foosoft.net/projects/goldsmith/plugins/abs/)**: Convert HTML relative file references to absolute paths.
* **[Goldsmith-Breadcrumbs](https://foosoft.net/projects/goldsmith/plugins/breadcrumbs/)**: Manage metadata required to build navigation breadcrumbs.
* **[Goldsmith-Collection](https://foosoft.net/projects/goldsmith/plugins/collection/)**: Group related pages into named collections.
2018-02-22 03:14:55 +00:00
* **[Goldsmith-Dom](https://foosoft.net/projects/goldsmith/plugins/dom/)**: Easily make changes to your site's DOM structure.
2016-09-07 04:34:11 +00:00
* **[Goldsmith-FrontMatter](https://foosoft.net/projects/goldsmith/plugins/frontmatter/)**: Extract front matter from files and store it in file metadata.
* **[Goldsmith-Index](https://foosoft.net/projects/goldsmith/plugins/index/)**: Create index pages for displaying directory listings.
* **[Goldsmith-Layout](https://foosoft.net/projects/goldsmith/plugins/layout/)**: Process partial HTML into complete pages with Go templates.
* **[Goldsmith-LiveJs](https://foosoft.net/projects/goldsmith/plugins/livejs/)**: Automatically refresh your web browser page on content change.
* **[Goldsmith-Markdown](https://foosoft.net/projects/goldsmith/plugins/markdown/)**: Process Markdown files to generate partial HTML documents.
* **[Goldsmith-Minify](https://foosoft.net/projects/goldsmith/plugins/minify/)**: Reduce the data size of various web file formats.
2018-02-22 03:14:55 +00:00
* **[Goldsmith-Paginate](https://foosoft.net/projects/goldsmith/plugins/paginate/)**: Split large collections of data into multiple pages.
* **[Goldsmith-Summary](https://foosoft.net/projects/goldsmith/plugins/summary/)**:
* **[Goldsmith-Syntax](https://foosoft.net/projects/goldsmith/plugins/syntax/)**: Enable syntax highlighting inside code blocks.
2016-09-07 04:34:11 +00:00
* **[Goldsmith-Tags](https://foosoft.net/projects/goldsmith/plugins/tags/)**: Generate metadata and index pages for tags.
* **[Goldsmith-Thumbnail](https://foosoft.net/projects/goldsmith/plugins/thumbnail/)**: Generate thumbnails for a variety of image formats.
2016-09-07 04:13:37 +00:00
2018-02-22 03:14:55 +00:00
### Filters ###
* **[Goldsmith-And](https://foosoft.net/projects/goldsmith/filters/and/)**:
* **[Goldsmith-Condition](https://foosoft.net/projects/goldsmith/filters/condition/)**:
* **[Goldsmith-Extension](https://foosoft.net/projects/goldsmith/filters/extension/)**:
* **[Goldsmith-Not](https://foosoft.net/projects/goldsmith/filters/not/)**:
* **[Goldsmith-Or](https://foosoft.net/projects/goldsmith/filters/or/)**:
* **[Goldsmith-Wildcard](https://foosoft.net/projects/goldsmith/filters/wildcard/)**:
### Other ###
* **[Goldsmith-DevServer](https://foosoft.net/projects/goldsmith/devserver/)**:
2016-01-12 10:24:19 +00:00
## Usage ##
2016-09-07 04:13:37 +00:00
Goldsmith is a pipeline-based file processor. Files are loaded in from the source directory, processed by a number of
plugins, and are finally output to the destination directory. Rather than explaining the process in detail conceptually,
I will show some code samples which show how this tool can be used in practice.
2016-01-12 10:24:19 +00:00
* Start by copying files from a source directory to a destination directory (simplest possible use case):
2016-09-07 04:13:37 +00:00
2017-09-30 00:03:53 +00:00
```go
2016-01-12 10:24:19 +00:00
goldsmith.Begin(srcDir).
End(dstDir)
```
2016-09-07 04:34:11 +00:00
* Now let's also convert our Markdown files to HTML using the
[Goldsmith-Markdown](https://foosoft.net/projects/goldsmith/plugins/markdown/) plugin:
2016-09-07 04:13:37 +00:00
2017-09-30 00:03:53 +00:00
```go
2016-01-12 10:24:19 +00:00
goldsmith.Begin(srcDir).
Chain(markdown.NewCommon()).
End(dstDir)
```
2016-09-07 04:13:37 +00:00
* If we are using *frontmatter* in our Markdown files, we can easily extract it by using the
2016-09-07 04:34:11 +00:00
[Goldsmith-Frontmatter](https://foosoft.net/projects/goldsmith/plugins/frontmatter/) plugin:
2016-09-07 04:13:37 +00:00
2017-09-30 00:03:53 +00:00
```go
2016-01-12 10:24:19 +00:00
goldsmith.Begin(srcDir).
Chain(frontmatter.New()).
Chain(markdown.NewCommon()).
End(dstDir)
```
2016-09-07 04:13:37 +00:00
* Next we want to run our generated HTML through a template to add a header, footer, and a menu; for this we can use
2016-09-07 04:34:11 +00:00
the [Goldsmith-Layout](https://foosoft.net/projects/goldsmith/plugins/layout/) plugin:
2016-09-07 04:13:37 +00:00
2017-09-30 00:03:53 +00:00
```go
2016-01-12 10:24:19 +00:00
goldsmith.Begin(srcDir).
Chain(frontmatter.New()).
Chain(markdown.NewCommon()).
2016-09-07 04:13:37 +00:00
Chain(layout.New("layoutDir/*.html")).
2016-01-12 10:24:19 +00:00
End(dstDir)
```
2016-09-07 04:13:37 +00:00
* Finally, let's minify our files to reduce data transfer and load times for our site's visitors using the
2016-09-07 04:34:11 +00:00
[Goldsmith-Minify](https://foosoft.net/projects/goldsmith/plugins/minify/) plugin:
2016-09-07 04:13:37 +00:00
2017-09-30 00:03:53 +00:00
```go
2016-01-12 10:24:19 +00:00
goldsmith.Begin(srcDir).
Chain(frontmatter.New()).
Chain(markdown.NewCommon()).
2016-09-07 04:13:37 +00:00
Chain(layout.New("layoutDir/*.html")).
2016-01-12 10:24:19 +00:00
Chain(minify.New()).
End(dstDir)
```
2016-09-07 04:13:37 +00:00
* Now that we have all of our plugins chained up, let's look at a complete example which uses the
2016-09-07 04:34:11 +00:00
[Goldsmith-DevServer](https://foosoft.net/projects/goldsmith/devserver/) library to bootstrap a development sever with live reload:
2016-09-07 04:13:37 +00:00
2017-09-30 00:03:53 +00:00
```go
2016-09-07 04:13:37 +00:00
package main
import (
"log"
"github.com/FooSoft/goldsmith"
"github.com/FooSoft/goldsmith-devserver"
2018-02-22 03:14:55 +00:00
"github.com/FooSoft/goldsmith-components/frontmatter"
"github.com/FooSoft/goldsmith-components/layout"
"github.com/FooSoft/goldsmith-components/livejs"
"github.com/FooSoft/goldsmith-components/markdown"
"github.com/FooSoft/goldsmith-components/minify"
2016-09-07 04:13:37 +00:00
)
type builder struct{}
func (b *builder) Build(srcDir, dstDir string) {
errs := goldsmith.Begin(srcDir).
Chain(frontmatter.New()).
Chain(markdown.NewCommon()).
Chain(layout.New("layoutDir/*.html")).
Chain(livejs.New()).
Chain(minify.New()).
End(dstDir)
for _, err := range errs {
log.Print(err)
}
}
func main() {
devserver.DevServe(new(builder), 8080, "srcDir", "dstDir")
}
```
I hope that this short series of examples illustrated the inherent simplicity and flexibility of the Goldsmith
pipeline-oriented approach to data processing. Files are injected into the stream at Goldsmith initialization, processed
in parallel through a set of plugins, and are finally written out to disk upon completion.
2016-01-12 10:24:19 +00:00
Files are guaranteed to flow through Goldsmith plugins in the same order, but not necessarily in the same sequence
relative to each other. Timing differences can cause certain files to finish ahead of others; fortunately this, along
2016-09-07 04:13:37 +00:00
with other threading characteristics of the tool, is abstracted from the user. The execution, while appearing to be a
mere series chained methods, will process files taking full advantage of your processor's cores.
2016-01-12 10:24:19 +00:00
## License ##
2017-07-31 00:39:30 +00:00
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.