阿波罗班
简单而强大的node js类系统
安装
npm install appolo - class -- save
用法
创建简单的类
var Rectangle = Class . define ( {
area : function ( ) {
return 25 ;
}
} ) ;
var rectangle = new Rectangle ( ) ;
使用构造函数创建类
var Rectangle = Class . define ( {
constructor : function ( width , height ) {
this . height = height ;
this . width = width ;
} ,
area : function ( ) {
1