Skip to content

Releases: stasm/innerself

0.1.1

12 Sep 17:25
Compare
Choose a tag to compare
  • Dispatch the render event on roots. (#15)

    The render event provides a hook to add custom logic after the render is
    complete. It allows to restore focus, selection and caret positions after
    render.

  • Filter out null and undefined interpolations in the html helper. (#8)

  • Ignore tests and examples in npm. (#11)

0.1.0

08 Sep 00:38
Compare
Choose a tag to compare

(This is the first release to be tracked in the changelog.)

innerself is inspired by React and Redux. It offers the following familiar concepts:

  • composable components,
  • a single store,
  • a dispatch function,
  • reducers,
  • and even an optional logging middleware for debugging!

It does all of this by serializing your component tree to a string and assigning it to innerHTML of a root element. I know this sounds like I'm crazy but it actually works quite nice for small and simple UIs. See the README for more details!