Hi everyone,
I’d like to introduce hunim, a small, fast, and unopinionated static site generator written in Nim. Hunim turns Markdown into static websites using HTML templates and reusable components. I built it for people who want a straightforward tool without a large runtime or complicated theme system.
Some of its current features include:
Getting started is intended to be simple:
nimble install hunim
hunim newsite mysite
cd mysite
hunim server
The development site will be available on localhost. To make a production build, run:
hunim
The generated site is written to public/ and can be deployed to any static host.
Hunim requires Nim 2.2 or newer and is available through Nimble.
I’d be glad to hear what the Nim community thinks, especially about the template/component model, the CLI, and which features would make hunim more useful for your own sites.