dalijs
Version:
ES6 framework
225 lines (170 loc) • 3.92 kB
Markdown
# dali [](https://travis-ci.org/epplestun/dali)
ES6 framework for creating web applications.
## Introduction
**dali** use [babel](https://babeljs.io) to compile ES6 code into ES5.
**dali** allows to use features of ES6 and some of ES7 like decorators, class properties, export extensions or function bind syntax.
**dali is currently in development phase. We don't recommend using for production applications.**
## Installation
**dali** is available on npm.
```shell
$ npm install dalijs
```
## Decorators
Decorators make it possible to annotate and modify classes and properties at design time.
### @Component
* Name
```javascript
import {Component} from 'dali';
@Component({
name : 'my-component'
})
class MyComponent {
}
```
### @Inject
```javascript
import {Inject} from 'dali';
class Test {
myMethod() {}
}
@Inject(Test)
class MyComponent {
constructor(test) {
test.myMethod();
}
}
```
### @Directive
* Name
```javascript
import {Directive} from 'dali';
@Directive({
name : 'my-directive'
})
class MyDirective {
render(data, element, value) {
}
}
```
### @Filter
```javascript
import {Filter} from 'dali';
@Filter
export class JsonFilter {
render(value) {
return JSON.stringify(value);
}
}
```
### @RouterConfig
* Title
* Default
* Path
```javascript
import {RouterConfig} from 'dali';
@RouterConfig({
title: 'Module 1',
default: true,
path : '/path'
})
```
### @Runnable
```javascript
import {Runnable} from 'dali';
@Runnable
class Test {
}
```
### @View
* Template
* TemplateURL
```javascript
import {View} from 'dali';
@View({
templateUrl: 'module1/module1_view.html'
})
class Test {
}
```
### @Bindable
```javascript
import {Bindable} from 'dali';
class Test {
@Bindable
name;
}
```
### @Json
```javascript
import {Json} from 'dali';
@Json
class Test {
}
Test.fromJson(...)
var model = new Test();
test.toJson();
```
### @JsonPropertyOrder
```javascript
import {JsonPropertyOrder} from 'dali';
@JsonPropertyOrder('description', 'title')
class Test {
}
```
### @JsonIgnoreProperties
```javascript
import {JsonIgnoreProperties} from 'dali';
@JsonIgnoreProperties('from', 'to')
class Test {
}
```
### @JsonProperty
```javascript
import {JsonProperty} from 'dali';
class Test {
@JsonProperty
title = "title";
}
```
### @JsonIgnore
```javascript
import {JsonIgnore} from 'dali';
@Json
class Test {
@JsonIgnore
from = new Date();
}
```
### @Async
```javascript
import {Async} from 'dali';
@Async
class MyTask {
execute(a, b) {
return a+ b;
}
}
var task = new MyTask();
task.execute(2, 2).then((result) => {
console.log(result);
});
```
More info and complete example in [Seed](https://github.com/epplestun/dali-seed) project.
## License
(The MIT License)
Copyright (c) 2015 Iván Rodríguez <epplestun@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.