0.3.3 ā€¢ Published 3 months ago

teeny-site v0.3.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Teeny-Site: A simple static site generator

Teeny-Site is a fork of Teeny by Yakko Majuri

šŸƒ Quick start

npm i -g teeny-site # yarn global add teeny-site
teeny init && teeny develop

For an example of a project using Teeny, check out my personal blog's repo.

šŸ“– Backstory

You can read about Yakkos motivation for building Teeny on this blog post titled "Why I built my own static site generator".

Teeny-Site extends the features of Teeny while still trying to stay true to the initial goal of Teeny to be a sort and easy to use program for static site generation.

šŸ’» Supported commands

Initialize a Teeny project in the current directory

teeny init

Build the static HTML files and add them to public/

teeny build

Start a local Teeny server that listens for file changes

teeny develop

šŸ“„ How it works

Teeny is a super simple static site generator built to suit my needs and my needs only.

All it does is generate pages based on HTML templates and Markdown content.

It does very little and is strongly opinionated (read: I was too lazy to build customization/conditional handlers), but has allowed me to build a blog I'm happy with extremely quickly.

Essentially, there are really only 2 concepts you need to think about: templates and pages.

Templates

Templates are plain HTML and should be added to a templates/ subdirectory.

They can contain an element with the id page-content, which is where Teeny adds the HTML generated by parsing the Markdown content.

Pages

Markdown is a first-class citizen in Teeny, so all of your website's pages are defined by a Markdown file.

The file need not have any actual content though, so if you want a page to be defined purely in HTML you just need to create a template that is referenced from a page file.

To specify what template a page should use, you can specify it in the frontmatter of the page, like so:

---
template: blog
---

In the above example, Teeny will look for a template called blog.html. If no template is specified, Teeny looks for a default.html file in templates/ and uses that.

šŸ’” Example usage

Here's an example of Teeny at work.

To start a Teeny project, run teeny init. This will create the following in your current directory:

.
ā”œā”€ā”€ pages
ā”‚Ā Ā  ā””ā”€ā”€ index.md
ā”œā”€ā”€ static
ā”‚Ā Ā  ā””ā”€ā”€ main.js
ā””ā”€ā”€ templates
    ā”œā”€ā”€ default.html
    ā””ā”€ā”€ homepage.html

If you then run teeny build, you'll end up with this:

.
ā”œā”€ā”€ pages
ā”‚Ā Ā  ā””ā”€ā”€ index.md
ā”œā”€ā”€ public
ā”‚Ā Ā  ā”œā”€ā”€ index.html
ā”‚Ā Ā  ā””ā”€ā”€ main.js
ā”œā”€ā”€ static
ā”‚Ā Ā  ā””ā”€ā”€ main.js
ā””ā”€ā”€ templates
    ā”œā”€ā”€ default.html
    ā””ā”€ā”€ homepage.html

index.md uses the homepage template, and together they generate index.html. As is standard with other SSGs, static files are served from public/.

You'll also notice main.js got moved to public/ too. Teeny will actually take all non-template and non-page files from pages/, templates/, and static/ and copy them to public/, following the same structure from the origin directory.

The reason for this is that I actually didn't want to have "magic" imports, where you have to import static assets from paths that do not correspond to the actual directory structure. As a result, I decided that static files would just live inside templates/ and pages/ as necessary.

Later I did surrender to the static/ directory approach though, as there may be assets both pages and templates want to use. Imports from static/ are "magic", meaning you need to think about the output of teeny build for them to work.

The last command that Teeny supports is teeny develop. This creates an HTTP server to server files from the public/ subdirectory.

It listens for changes to the files and only builds the files affected by this changes.

šŸ¤– Advanced Features

Replace

Page specific variables can be specified in the frontmatter and are inserted into the template at places specified using double curly braces. An example of this is used in the homepage.html file.

pages/index.md
---
template: homepage
title: Teeny page
author: teeny
---

# Hello World
templates/homepage.html
<html>
    <head>
        <title>{{ title }}</title>
        <meta name="author" content="{{ author }}" />
    </head>

    <body>
        <p>My first Teeny page</p>
        <div id="page-content"></div>
        <script type="text/javascript" src="main.js"></script>
    </body>
</html>

The variables in the frontmatter will be inserted into the template. The insert is dumb and just looks for one or more matches and replaces them all.

public/index.html
<html>
    <head>
        <title>Teeny page</title>
        <meta name="author" content="teeny" />
    </head>

    <body>
        <p>My first Teeny page</p>
        <div id="page-content"><h1 id="hello-world">Hello World</h1></div>
        <script type="text/javascript" src="main.js"></script>
    </body>
</html>

šŸ”® Potential future improvements

I want to keep Teeny as tiny as possible. I deliberately put all the code in one file as a reminder to myself that this is supposed to just be a simple tool for me to build simple static blogs quickly.

However, it could use a few "developer experience" upgrades, as well as some better customization options.

0.3.3

3 months ago

0.3.2

3 months ago

0.3.1

5 months ago

0.3.0

6 months ago

0.2.9

6 months ago

0.2.8

6 months ago

0.2.7

8 months ago

0.2.6

10 months ago

0.2.5

1 year ago

0.2.4

1 year ago

0.2.3

1 year ago

0.2.2

1 year ago

0.2.1-beta

1 year ago