-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Sirius has full support for next browsers: IE9+, Firefox, Opera 12+, and Chrome\Chromium.
What makes Sirius the best web framework?
It's simplicity for development and power model of core.
Let's see all feature one by one.
Sirius has a power model support (if you work with ActiveRecord from Rails you appreciate)
MVC pattern great for client side (and server side the same) because we work with backend through ajax or websocket. Dataflow:
some event => routing => client side controller => ajax|websockets request => backend => response => client side controller => view
All changes in view reflected in the model, and vice versa. Sirius support binding between javascript object and view - you might to add new property into any object and listen changes for this property.
I think the best part of Sirius, it's a universally routing, not only for changes in url, but also for mouse or key event, and for custom javascript events of course, and scheduler job.
Models has relations, serialization, and great validators. You might create own validator it simple.
All events, message passing in framework logging, you might see what Sirius does under hood.
Select you favorite javascript template library and use.
Collection parametrized by model type, subscribe on any changes in collection, indexes for quick search by field name.