In mixed-mode Famous, removing nodes is tedious because all the sub-nodes need to be recursively removed by the app. After removing all of a node’s child nodes, the app has to also dismount the node and remove the node from the parent. It’s unnecessary boilerplate in the application IMHO and should be handled by the engine.
My proposal is for the engine to traverse all of a node’s children and recursively remove them whenever the app removes a node. This reduces chances of memory leaks and allows for much more elegant dynamic insertion & removal of nodes.