The fast & flexible static site generator for Deno

Run the following to setup Lume:

deno run -Ar https://deno.land/x/lume/init.ts
deno.land/x/lume

Supports any template engine

Create pages using Markdown, Nunjucks, Liquid, JSX, TSX, JavaScript, TypeScript, Pug, Eta… or add your own engine easily.

# Galician municipalities

- O Pino
- Tordoia
- Ordes
- Cedeira

Store the data in your favorite format

Store your data using static formats like JSON or YAML. Use JavaScript or TypeScript to get the data from a Database or API.

title: Galician municipalities
items:
  - O Pino
  - Tordoia
  - Ordes
  - Cedeira

Process HTML pages and assets

Processors can compile and optimize assets like CSS or JavaScript. They can also transform the HTML code using the DOM API.

site.process([".css"], (file) => {
  file.content = customTransform(file.content);
})

Run your scripts and listen for events

You can create custom scripts like in NPM and execute them from the CLI or after any event.

site.script("deploy", "rsync -r _site/ user@host.com:/site");

And everything with a clean and intuitive API

Configure your site build in a single _config.ts or _config.js file with plugins and a simple and clean API.

import lume from "lume/mod.ts";

const site = lume();

export default site;

Who is using Lume?

Screenshot of the site

Lume

This web site.

Screenshot of the site

IBM Deep Search

Landing page for the IBM Deep Search project.

Screenshot of the site

LEEDS 2023 Data

Microsite to display data about the LEEDS 2023 Year of Culture.

Screenshot of the site

Universo Reich

Collaborative and educational project about Steve Reich.

Screenshot of the site

Angel Dollface

Personal website of Angel Dollface.

Screenshot of the site

Lume Theme Shiraha

❄️ Material 3-inspired Lume Blog Theme.

Screenshot of the site

Lume Deno Template

Another Lume Template/ With CSS & Blog (MD) Support

Screenshot of the site

Candela

Documentation site for a boat.

See more examples

What people say?

Lume is supported by

Past sponsors

How to contribute?