Skip to content
/ lume Public

🔥 Static site generator for Deno 🦕

License

Notifications You must be signed in to change notification settings

lumeland/lume

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7556113 Â· Oct 6, 2024
May 1, 2024
Sep 7, 2023
Oct 6, 2024
Oct 6, 2024
Oct 5, 2024
Sep 12, 2024
Oct 4, 2024
Oct 4, 2024
Nov 15, 2021
May 25, 2022
Nov 4, 2022
Oct 5, 2024
Mar 10, 2022
Mar 10, 2022
Jan 1, 2024
Sep 9, 2024
Jun 4, 2024
Oct 5, 2024
Sep 9, 2024
Aug 7, 2024
May 9, 2024

Repository files navigation

🔥Lume

deno.land/x/lume Contributor Covenant

Lume is the Galician word for fire but also a (yet another) static site generator for Deno.

It’s inspired by other general-purpose static site generators, such as Jekyll and Eleventy, but it’s faster, simpler and easier to use and configure, besides being super flexible.

  • Supports multiple file formats, like Markdown, YAML, JavaScript, TypeScript, JSX and Nunjucks, and it’s easy to extend.
  • You can hook any processor to transform assets, like Terser for Javascript or PostCSS for CSS.
  • It’s Deno: Forget about managing thousands of packages in node_modules or complex bundlers. Lume only installs what you need. Clean, fast and secure.


Quick start

Make sure you have Deno installed.

Create your first page, for example, using the Vento file index.vto:

---
title: Welcome to my page
---
<html>
  <head>
    <title>{{ title }}</title>
  </head>
  <body>
    <h1>{{ title }}</h1>
  </body>
</html>

Build it:

deno run -A https://deno.land/x/lume/cli.ts

This command will compile your documents to HTML and save them into the directory _site.


Please see CHANGELOG for information about the recent changes.

Licensed under the MIT License. See LICENSE for more information.