0.0.17-alpha • Published 8 years ago

yosonjs v0.0.17-alpha

Weekly downloads
8
License
-
Repository
github
Last release
8 years ago

Stories in Progress(https://badge.waffle.io/frontend-labs/yosonjs.png?label=in progress&title=In Progress)

yOSONJS

A Sandbox library in JavaScript for manage modular scripts

Build Status Coverage Status

A little example

Insert in your html file or proyect the js called yoson.js o the minified version.

Then Create a Module

yOSON.AppCore.addModule('nombre-modulo', function(){
    return {
        init: function(){
            //some code
        }
    }
});

And Run the module

yOSON.AppCore.runModule('nombre-modulo');