https://github.com/frontend-labs/yosonjs
A lightweight library for managing modular scripts
https://github.com/frontend-labs/yosonjs
javascript-library modularity
Last synced: 27 days ago
JSON representation
A lightweight library for managing modular scripts
- Host: GitHub
- URL: https://github.com/frontend-labs/yosonjs
- Owner: frontend-labs
- License: mit
- Created: 2013-09-22T21:40:41.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2025-05-13T11:49:41.000Z (11 months ago)
- Last Synced: 2026-01-27T00:30:27.750Z (2 months ago)
- Topics: javascript-library, modularity
- Language: HTML
- Homepage:
- Size: 1.02 MB
- Stars: 20
- Watchers: 6
- Forks: 9
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://waffle.io/frontend-labs/yosonjs)
yOSONJS
=======
A Sandbox library in JavaScript for manage modular scripts
[](https://travis-ci.org/frontend-labs/yosonjs)
[](https://coveralls.io/r/andru255/yosonjs?branch=master)
A little example
================
Insert in your html file or proyect the js called yoson.js o the minified version.
Then Create a Module
```javascript
yOSON.AppCore.addModule('nombre-modulo', function(){
return {
init: function(){
//some code
}
}
});
```
And Run the module
```javascript
yOSON.AppCore.runModule('nombre-modulo');
```