Software:RightJS

From HandWiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
RightJS
RightJS
Developer(s)Nikolay Nemshilov
Written inJavaScript
TypeAjax framework / JavaScript Framework
LicenseMIT
Websiterightjs.org

RightJS — is a compact JavaScript framework for developing cross-browser web-applications. RightJS based on extendable modular architecture. It has small (15k gzipped) core including many features such as DOM-manipulations, animations, forms, cookies, event processing(including non standard events), OOP implementations and others. RightJS is a direct descendant of Prototype library and analogue well-known JavaScript frameworks JQuery and Mootools.

Key features

  • Clear syntax. RightJS tries not to invent any new method names, instead of that it uses the naming principles that are already in use. It has a really clean, compact and mostly familiar syntax.
  • Unification
  • Performance
  • Calls by name
['foo', 'boo', 'moo'].each('replace', 'oo', 'aa');

$(element).onClick('addClass', 'clicked');
  • OOP DOM-wrappers
  • Optional safe mode
  • Later JavaScript specs support JavaScript(with emulation for old browsers)
  • JavaScript core extensions
  • Simplified numbers handling
  • Baked in spinners handling
  • Forms uploading handling
  • Object-oriented model
  • Open, extendable architecture
  • Uniformed events and options Handling
  • Mutated methods and chains
new Element('div').update('text').insertTo(document.body).highlight();

Browser compatibility

RightJS works on all modern and some old browsers.

Framework tested on these browsers:

External links