diff --git a/LICENSE b/LICENSE
index d3ca282..3264cbe 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2016 Stephen Holsinger
+Copyright (c) 2012 Stephen Holsinger
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index 9161848..cdbd09a 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,33 @@
# demandware-template-debugger
An instructional repository for techniques used in debugging Demandware templates.
+
+# Usage #
+First, make sure that the TemplateDebugger.ds file is included in the template. This can be done within its own `` block, or an existing one. Keep in mind that the include needs to be present before the `TemplateDebugger.debug()` method can be utilized. Therefore, it is recommended that a dedicated `` block be used, and placed at the top of the ISML file. It is important to delete these elements once done debugging, to avoid null reference errors or performance issues in production environments.
+
+
+ var TemplateDebugger = require('int_dev_suite/cartridge/scripts/util/TemplateDebugger.ds');
+
+
+
+Once the TemplateDebugger.ds file is included, place a `TemplateDebugger.debug()` call in any existing `` bock, or create a dedicated `` block. Any variable, either in an `` block, or an `` declaration, that was present before the `TemplateDebugger.debug()` call will be visible.
+
+Multiple `TemplateDebugger.debug()` calls may be required. You need one call for each individual breakpoint needed.
+
+
+ TemplateDebugger.debug();
+
+
+Once the required tags are in place, add a script debug breakpoint to the line with the `return` statement of the `exports.debug()` method. Run the script debugger, and navigate to the correct pipeline which will render the ISML file being debugged.
+
+# Viewing the variables in your template #
+Within the "Debug View" window, it will list the active breakpoint. From there, click the, "-toplevel-" thread. Doing so will open the Template's thread, at which point, the template variables are visible in the "Variables View" window.
+
+![Screenshot of Debug View after clicking '-toplevel-'](toplevel-debug-view.png "Top Level Debug View")
+
+# Authors & Contributors
+
+* Steve Holsinger (@sholsinger) - Original author ([see original](https://www.evernote.com/shard/s61/sh/524210c5-3830-4681-8fe2-0af02f881e7d/b986e34e00b62ddb))
+* Ethan Gaudette (@egaudette)
+
+# Contributing
+Simply submit a pull request. We also welcome issues to be entered by the community if you are unable to address the issue yourself.
diff --git a/TemplateDebugger.ds b/TemplateDebugger.ds
new file mode 100644
index 0000000..fe0a902
--- /dev/null
+++ b/TemplateDebugger.ds
@@ -0,0 +1,46 @@
+/**
+* Demandware Template Debugger
+* https://github.com/sholsinger/demandware-template-debugger
+*/
+
+/*
+ To use, make sure that the TemplateDebugger.ds file is included in the
+ template. This can be done within its own block, or an existing
+ one. Keep in mind that the include needs to be present before the
+ TemplateDebugger.debug() method can be utilized. Therefore, it is recommended
+ that a dedicated block be used, and placed at the top of the
+ .isml file. It is important to delete these elements once done debugging, to
+ avoid null reference errors.
+
+
+ var TemplateDebugger = require('int_dev_suite/cartridge/scripts/util/TemplateDebugger.ds');
+
+
+ Once the TemplateDebugger.ds file is included, place a TemplateDebugger.debuger() call in any existing bock, or create a dedicated block.
+ Any variable, either in an block, or an declaration, that was present before the TemplateDebugger.debug() call will be visible.
+ Multiple TemplateDebugger.debug() calls are required for each individual breakpoint needed.
+
+
+ TemplateDebugger.debug();
+
+
+ Once the required tags are in place, add a script debug breakpoint to the
+ return method, of the exports.debug() method. Run the script debugger, and
+ navigate to the correct pipeline which will render the .isml file being
+ debugged.
+
+ At this point, the debugger should find the hook on the
+ exports.debug() method. Within the "Debug View" window, it will list the
+ active breakpoint. From there, click the, "-toplevel-" thread.
+
+ This will open the Template's thread, at which point, the template variables
+ are visible in the "Variables View" window.
+*/
+
+/**
+ * A blank function that will give you a breakpoint (when called) within a template.
+ **/
+'use strict';
+exports.debug = function () {
+ return true;
+}
diff --git a/toplevel-debug-view.png b/toplevel-debug-view.png
new file mode 100644
index 0000000..3804c42
Binary files /dev/null and b/toplevel-debug-view.png differ