Skip to content
This repository has been archived by the owner on Dec 8, 2018. It is now read-only.

alexander-heimbuch/utterson

Repository files navigation

Utterson

Simple static blog (and page) generator written in NodeJS.

Installation

npm install utterson

Usage

TL;DR Have a look at the utterson-example repository for a basic example

var utterson = require('utterson');
utterson();

Utterson follows the mindset convention over configuration. If you are sticking to the following conventions you don't need to pass any parameter to Utterson. In any other case it is possible to configure Utterson to your needs by passing a configuration object to the function:

var config = {
    "contentDir": "content",
    "buildDir": "build",
    "templatesDir": "templates",
    "template": "default",
    "content": {
        "./": {
            "type": "pages"
        },
        "static/": {
            "type": "statics"
        }
    }
};

utterson(config);

Documentation

1 Content and Configuration

2 Templates

3 Filewriter

License

MIT-Licensed

About

Simple static blog (and page) generator written in NodeJS.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published