Back

非常不错的titanium 快速开发框架: JAST (titanium framework: jast)

发布时间: 2015-02-12 08:07:00

refer to: https://github.com/dbankier/JAST

集成了好几个好用的东东:

6to5:  让 ECMA script6 的特性可以在 ECMA script5 中实现.

ECMA 脚本: 广泛应用于 web 前段的 jscript, actionscript 和 javascript中. 

stss:  sassy tss. 跟 coffee -> js 的关系一样, 可以生成 tss 

Jade : XML的替代品,跟 haml 极其接近. 但是比haml好不少( haml写起来 比较麻烦,啰嗦,不如jade简单) refer to:  http://selinosblog.com/2014/02/24/jade-haml-or-why-i-use-jade-more-than-i-ever-used-haml/

xhr: 在Titanium中使用的http client

nano: two-way data binding. 

p.s. 来源于 tishadow作者对于我的pull request的 回信:  https://github.com/dbankier/TiShadow/pull/408

Nice idea.

The code however will break a few things (https://github.com/dbankier/TiShadow/pull/408/files#diff-935b28ad0757a15868811be4cadb49e7R222), e.g. it will break watching i18n files, won't watch for assets, etc.

If you are using other precompilers, you probably want to keep the app/ directory clean and have your coffee files in a src/ directory.

Have a look how I restructured https://github.com/dbankier/JAST recently.
That uses Jade for views, STSS for styles and ES6 for controllers.

Back