From 1f81ae40915f1e2967053893d9729b800f6c3768 Mon Sep 17 00:00:00 2001
From: Seong-June Kim <seong-june.kim@yale.edu>
Date: Tue, 30 Jan 2018 11:34:27 -0500
Subject: [PATCH] Fix/clean README

---
 README.md | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index dc782211c..340344cb6 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,15 @@
-** Running the module **
+## Running the module
 This module is intended to be a console-only version of the a Mirador-like viewer, with tests and the ability to manipulate the state tree through actions in the console.
 
 To run the module, first make sure you are in this directory (`minimal_redux_poc`), then:
 
+1. Run `npm install` to install the dependencies.
 1. Run the `npm run build:umd` task. This will produce an "isomorphic" webpack bundle of the module that can run in the console or browser. The bundle will be called `index.umd.js` and is placed in this same directory.
-2. Open a nodejs console (type `node`) in this directory.
-3. Require the module under a variable name, for example, `state = require('./index.umd')`.
-4. The exported module currently has most of its functionality under the "store" property, so you may prefer to include it with `state = require('./index.umd').store`.
+1. Open a nodejs console (type `node`) in this directory.
+1. Require the module under a variable name, for example, `state = require('./index.umd')`.
+1. The exported module currently has most of its functionality under the "store" property, so you may prefer to include it with `state = require('./index.umd').store`.
 
-Example Action
+### Example Action
 
 To increment the canvas index run:
 
-- 
GitLab