Skip to content

cortesdev/laroux.js

 
 

Repository files navigation

laroux.js

laroux.js logo

This project is a jQuery substitute for modern browsers and mobile devices. But instead of offering some wrappers and own dynamics, it simply provides helper functions to achieve the same objectives with jQuery or Zepto.

Even though keeping compactness is the primary concern of this library, lightweight versions of some concepts/components including some UI helpers and MVC.

So far, it has Ajax, Anim, CSS, Date, DOM, Events, Forms, Helpers, MVC, Stack, Templates, Timers, Triggers, UI and Vars components.

Build Status Scrutinizer Quality Score

For Users

laroux.js is right for you if you:

  • Complain people who do not know the difference between jQuery and Javascript.
  • Love working with more compact, organized libraries in smaller sizes (~28K).
  • Want working with native DOM objects instead of wrappers.
  • Get pace with debug console's autocomplete/fluent typing.
  • Did not satisfied from other libraries' performances on mobile devices.

Demos

See GitHub Page for feature demonstrations and benchmarks.

Documentation

See wiki page for documentation.

Installation

Download the latest version for releases page, and include laroux.min.js and laroux.min.css in your web project.

Sample Usage

$l.ready(function() {
    var buttons = $l(['.confirm-action']);

    $l.css.setProperty(buttons, 'background-color', 'crimson');
    $l.dom.setEvent(
        buttons,
        'click',
        function(event, element) {
            if (!confirm('Are you sure to do it?')) {
                return false; // cancel event
            }
        }
    );
});

For Developers Want To Contribute

Installation

Alternative 1: Zip Package

Download the package and launch npm install.

Alternative 2: Git

On Terminal or Command Prompt:

git clone https://github.com/larukedi/laroux.js project
cd project
npm install

Requirements

License

See LICENSE

Contributing

See contributors.md

It is publicly open for any contribution. Bugfixes and suggestions are welcome.

  • Fork the repo, push your changes to your fork, and submit a pull request.
  • If something does not work, please report it using GitHub issues.

About

Micro jquery substitute for modern browsers

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 99.1%
  • Other 0.9%