From 8d02790895df0a493ddccc38a8931e35c14ebd3d Mon Sep 17 00:00:00 2001 From: paldepind Date: Thu, 11 Feb 2016 20:12:56 +0100 Subject: [PATCH] Add section to readme on how to structure applications --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index c1de4c6..8e4f9e8 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ and performance. * [Core documentation](#core-documentation) * [Modules documentation](#modules-documentation) * [Helpers](#helpers) +* [Structuring applications](#structuring-applications) ## Why @@ -489,3 +490,19 @@ The view function here is only an example. In practice thunks are only relevant if you are rendering a complicated view that takes a significant computation time to generate. +## Structuring applications + +Snabbdom is a low-level virtual DOM library. It is unopinionated with +regards to how you should structure your application. + +Here are some approaches to building applications with Snabbdom. + +* [functional-frontend-architecture](https://github.com/paldepind/functional-frontend-architecture) + - a repository containing several example applications that + demonstrates an architecture that uses Snabbdom. +* [Motorcycle.js](https://github.com/motorcyclejs/core) – + is a variant of the functional and reactive Javascript framework + [Cycle.js](http://cycle.js.org/) that uses Snabbdom. + +Be sure to share it if you're building an application in another way +using Snabbdom. \ No newline at end of file