Pog is a modern MVC style framework built on top of io.js and koa. It's built to be fast, simple and easy to configure, with sane defaults and flexible boilerplates to get you up and running as quickly as possible.
It's a work in progress, check back often for updates.
Full documentation will be coming soon.
Pog takes advatage of the latest ES6 updates, and requies either io.js or node.js 0.12+ with the --harmony flag.
$ npm install pog -g
$ pog myapp
Pog uses Jade by default, but you also have the option of handlebars or nunjucks (more coming soon).
$ pog myapp --html nunjucks
$ pog myapp --html handlebars
Assuming you have io.js installed
$ gulp start
or
$ iojs server.js
or if you prefer to stick with node and have at least version 0.12 installed:
$ node --harmony server.js
A full getting starting guide is in the works, in the meantime, check out the docs below (still a work in progress).