Yet another Front end framework with all the main features of the "famous" frameworks, developed only to prove myself that "we can do it". To have better performance than the solutions adopting Virtual DOM I have used the Templating & Rendering engine of lit-html while for reacting to data changes the library on-change has been used.
Check the sample app running an updated version of the framework.
Check the wiki
- Components, nested components and multiple istances of the same component
- Components API similar to Vue.js with the reactive data model proxied from the
data
property andComputed properties
- Component hooks: onInit, onPropsChange, onDestroy
- Two way data binding and data reactivity on primitives, objects and arrays
- Wrapper of the fetch API for HTTP requests
- Client side routing system based on History API, routes with parameters,
- Filters in template as pure functions
- Props from parent components to child components
- Automatic management of events on the single component instance
- Debug mode (no logging if debug:false...)
- Event bus:
.emit()
,.on()
to subscribe and.off()
to unsubscribe to custom events - Run function during bootstrap to load configurations, service inizialisations etc
- forms validation (basic)
- queue for multiple data changes triggering only one rerendering of the specific component
- Global Error handler and error messages
- data reactivity on objects shared among different components
HTML5, CSS, Javascript, lit-html, on-change
Versione 0.2.98
This project is licensed under the MIT License.