diff --git a/.gitignore b/.gitignore
index 000d34d..d526785 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,8 @@ lib/
node_modules/
npm-debug.log
npm-debug.log*
-/build
+/dist
.npmrc
.DS_Store
+/demo/stock/dist
+dist
diff --git a/OLD_DEMO.js b/OLD_DEMO.js
new file mode 100644
index 0000000..40b3b46
--- /dev/null
+++ b/OLD_DEMO.js
@@ -0,0 +1,23 @@
+import ReactDOM from 'react-dom';
+import React from 'react';
+import { createStore, applyMiddleware, compose, combineReducers } from 'redux';
+import { Provider } from 'redux-synapse';
+import thunkMiddleware from 'redux-thunk';
+import reducers from './reducers';
+import App from './components/App';
+
+const composeEnhancers = typeof window !== 'undefined'
+ && window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ ?
+ window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__
+ : compose;
+
+const createStoreWithMiddleware = composeEnhancers(applyMiddleware(thunkMiddleware))(createStore);
+const store = createStoreWithMiddleware(combineReducers(reducers));
+
+ReactDOM.render(
+
+
+ ,
+ document.getElementById('app')
+);
+
diff --git a/README.md b/README.md
index 81026db..fbe6b98 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
# `redux-synapse`
-`redux-synapse` is a library that is heavily inspired by `react-redux` and acts as an alternative for the binding of react components to the store in a more explicit manner. The primary difference is the nature in which each component must declare explicity what updates should affect the component via its higher order component; a `synapse`.
+`redux-synapse` is a library that is heavily inspired by `react-redux` and acts as an alternative for the binding of react components to the store in a more explicit manner. The primary difference is the nature in which each component must declare explicity what updates should affect the component via its higher order component; a `synapse`. With `synapse`'s it is possible to achieve a higher level of performance, than you would with alternative libraries.
A `synapse` is declared to listen to specific messages and act upon them. This is an early release of something that I intend to grow over time and build upon to make more efficient.
diff --git a/examples/index.html b/demo/index.html
similarity index 81%
rename from examples/index.html
rename to demo/index.html
index c62d14f..2dc1f52 100644
--- a/examples/index.html
+++ b/demo/index.html
@@ -8,6 +8,6 @@
Loading Synapse Demo...
-
+