Blueprint
================

A lightweight, simple, elegant framework for building mean applications

[![npm version](https://img.shields.io/npm/v/@onehilltech/blueprint.svg)](https://www.npmjs.com/package/@onehilltech/blueprint)
[![Build Status](https://travis-ci.org/onehilltech/blueprint.svg?branch=master)](https://travis-ci.org/onehilltech/blueprint)
[![Dependencies](https://david-dm.org/onehilltech/blueprint.svg)](https://david-dm.org/onehilltech/blueprint)
[![Coverage Status](https://coveralls.io/repos/github/onehilltech/blueprint/badge.svg?branch=master)](https://coveralls.io/github/onehilltech/blueprint?branch=master)

Features
--------

* Bootstrap common functionality from configurations
* Separation of concerns to maximize reuse of core business logic
* Declarative approach to binding routes to controllers
* Customize behavior and configuration based on execution environment
* Encapsulate application logic into reusable components
* Compose Blueprint applications from other Blueprint applications

Getting Started
----------------

Install Blueprint package into your application:

    npm install @onehilltech/blueprint --save
    npm bin
    
Add `./node_modules/.bin` to your `PATH`, and install Blueprint application:

    blueprint init

Then, start the web application:

    node ./app
    
Open your browser, and go to [http://localhost:5000/helloworld](http://localhost:5000/helloworld).

Next Steps
-----------------
    
See our [Wiki](https://github.com/onehilltech/blueprint/wiki) for more details 
on using Blueprint.
