jovianlib
v0.1.5
Published
A small library with useful tools and a fully formed class system
Downloads
5
Readme
Jovian Library
A small library/framework for building applications. Comes with various tools and utilities as well as a fully formed class system for node.
require('jovianlib');
G.create('MyClass', {
/**
* @property {String} prop
* Standard javascript object poperty
*/
prop: 'value',
/**
* Intialize class
* @constructor
*/
initClass: function(config) {
// Constructor code
}
});
var cls = new MyClass();
Installation
$ npm install --save jovianlib
Features
- Fully formed class system
- Custom events processor
- JSON RPC 2.0 Implementation
- Various useful prototypes added to primitives
- Slash command and shortcode parsing
- Cross platform syntax with browser version
Documentation
In progress
Release History
- 0.1.0 Initial release