Designer News is where the design community meets.
8 years ago from Evan Knight, Design @Google
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/
Now playing
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/