I love OutWatch's overall design, but have some issues with consistency, modules organisation, and naming clashes (I saw the latests re-organisation commits, but I think there is more to discuss)
Purescript
names like div are really annoying to use because they clash with prelude.
name like tpe are also annoying to use because they are harder to remember
would it make sense to follow lucid design and prefix or postfix everything with an _ ?
- no more Names that conflict with base (div, id, head, map) -> only: div_; ul_, id_, etc.
- no more names that are keywords, (type -> tpe or type_ or ..., class -> cls or class or ...) -> only class_, type_, etc.
it could also help adding back an global OutWatch that reexport most useful functions
(to see some more lucid examples, github link is here: https://github.com/chrisdone/lucid)