-
Notifications
You must be signed in to change notification settings - Fork 3
Description
originally posted in standard/standard#141 (comment)
Something that this module could additionally do is lint the way interfaces are defined in the API section. Everyone seems to do it differently, and having some consistency would be great. Just to display some of the flavors:
browserify
b.plugin(plugin, opts)
Register a plugin
with opts
. Plugins can be a string module name or a
function the same as transforms.
plugin(b, opts)
is called with the browserify instance b
.
For more information, consult the plugins section below.
virtual-dom
Patch operations
patch(rootNode:DOMNode, patches:PatchObject) -> DOMNode newRootNode
Once we have computed the set of patches required to apply to the DOM, we need a function that can apply those patches. This is provided by the patch
function. Given a DOM root node and a set of DOM patches, the patch
function will update the DOM. After applying the patches to the DOM, the DOM should look like the new VTree
.
from2
stream = from2.obj([opts], read)
Shorthand for from2({ objectMode: true }, read)
.