• David BehrendDavid Behrend, 8 years ago (edited 8 years ago )

    Metalsmith is by far the best I've used.

    If you're a javascript dev you'll appreciate it's functional approach. Simply chain 'plugins' together to make your perfect workflow.

    Metalsmith(__dirname) .use(drafts()) .use(markdown()) .use(permalinks('posts/:title')) .use(templates('handlebars')) .build(function(err) { if (err) throw err; });

    http://www.metalsmith.io/

    2 points