ng-vdom icon indicating copy to clipboard operation
ng-vdom copied to clipboard

RFC: rename to ng-render

Open trotyl opened this issue 6 years ago • 1 comments

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);

trotyl avatar Dec 26 '18 07:12 trotyl

Shouldn't it be ngx-render? (x for Angular, not AngularJS)

LayZeeDK avatar Dec 30 '19 22:12 LayZeeDK