ng-vdom
ng-vdom copied to clipboard
RFC: rename to ng-render
VDOM has severe problem in casing:
vdom/Vdom: incorrect;vDom/VDom: weird for consecutive upper case;VDOM/VDOM: ugly;
ng-render provides a more meaningful concepts, which integrates Angular with render function, also matches existing API:
import { Renderable } from 'ng-render'
@Component()
class MyComponent extends Renderable {
render() { /* ... */ }
}
Directives:
VOutlet(v-outlet)->RenderOutput(rn-outlet);
Shouldn't it be ngx-render? (x for Angular, not AngularJS)