Allay
Allay is a simple TypeScript framework that makes developing eloquent applications a breeze. The purpose of the framework is to provide an underlying state controller that handles changes of the entire application with no involvement from the developer. Allay is not a single-page application framework like React or Angular, so all rendering of elements and routing can be done with your favorite templating engines.
Components
Creating an Allay component is simple:
import { Component } from 'allay';
export default class Example extends Component {
constructor () {
super();
// Your constructor logic here
}
}
To set up the binding of the component's state with the application's, just call the parent's constructor with super()
in your components constructor.
To see more specific examples on using allay, check out the examples/
directory to see how components are made in Allay.