0.0.6 • Published 11 years ago

a5 v0.0.6

Weekly downloads
24
License
-
Repository
github
Last release
11 years ago

A5 CL (Core Layer) - Application Framework Library Built on A5 (http://a5js.com)

NOTE: This is an alpha test build of implementing A5 CL for NodeJS. For more info on the framework itself, see a5js.com.

Licensed under GPL-3.0

Detailed release notes coming soon, along with wiki implementation guides.

A5 CL includes A5 directly, no separate script is required to run. Requiring a5 places the framework in the global context and handles all necessary underpinnings. From here, apps in NodeJS and in the browser are coded identically.

Quick Tutorial: Hello World

require("a5")

a5.Package('testApp')

.Extends('a5.cl.CLMain')
.Class('Main', function(cls){

    cls.Main = function(app){
        cls.superclass(this);
    }    

    cls.Override.applicationLaunched = function(e){
        console.log('Hello World!');
    }

})

a5.cl.CreateApplication() 
0.0.6

11 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago