Skip to content

Version 0.0.2 - 2020-09-18

Compare
Choose a tag to compare
@jcbrand jcbrand released this 18 Sep 07:45
· 96 commits to master since this release
v0.0.2

Initial fork from Backbone

  • Removes the dependency on jQuery
  • Instead of the render method Views can have a toHTML method which must return a
    lit-html TemplateResult.
  • Replaces underscore with lodash
  • Imports lodash methods individually to allow for tree-shaking
  • Uses the native browser API instead of lodash
  • Drops support for older browsers (including IE) and uses ES6+ language features
  • Splits models, views and collections into separate modules
  • Adds a new ElementView class, which is a like a Backbone View, but doubles
    as an instance of HTMLElement and can be used to register a custom element or
    web-component.