summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Jacobson <owen.jacobson@grimoire.ca>2015-01-06 03:01:29 -0500
committerOwen Jacobson <owen.jacobson@grimoire.ca>2015-01-06 03:01:29 -0500
commit9d54cdf88ea73b0b8ecdc32007bb831b40426b0d (patch)
tree9ec124a413f8ace1f5783e202246ae67cc348aea
parent9a2e65064767fb00730300608985747e6172ab02 (diff)
Webapp rambling.
-rw-r--r--wiki/dev/webapps.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/wiki/dev/webapps.md b/wiki/dev/webapps.md
new file mode 100644
index 0000000..c4d99aa
--- /dev/null
+++ b/wiki/dev/webapps.md
@@ -0,0 +1,5 @@
+# Webapps From The Ground Up
+
+What does a web application do? It sequences side effects and computation. (This should sound familiar: it's what _every_ program does.)
+
+Modern web frameworks do their level best to hide this from you, encouraging code to freely intermix computation, data access, event publishing, logging, responses, _asynchronous_ responses, and the rest. This will damn you to an eternity of debugging.