hunterloftis / component-test

An experiment to see what a simple node app would look like with "Components" from the @visionmedia blog

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Express App - Components

A simple app with sign-in and dashboard views.

Concepts

  • Everything is a component (components live in lib)
  • Pyramid testing (view integrations live in test, model and controller tests live in lib/{component}/test)
  • Makefile as entry point (everything starts with make)
  • Separate code and config (config is injected into main()) ...and other 12-factor guidelines

Try it

$ git clone git://github.com/Skookum/component-test.git
$ cd component-test
$ make setup
$ make test
$ make open

Inspired by

About

An experiment to see what a simple node app would look like with "Components" from the @visionmedia blog


Languages

Language:JavaScript 99.1%Language:Perl 0.9%