template.js的runtime运行时
单元测试保证支持如下环境:
IE | CH | FF | SF | OP | IOS | Android | Node |
---|---|---|---|---|---|---|---|
6+ | 29+ | 55+ | 9+ | 50+ | 9+ | 4+ | 4+ |
注意:编译代码依赖ES5环境,对于ie6-8需要引入es5-shim才可以兼容,可以查看demo/demo-global.html中的例子
通过npm下载安装代码
$ npm install --save @templatejs/runtime
如果你是node环境
var runtime = require('@templatejs/runtime');
如果你是webpack等环境
import runtime from '@templatejs/runtime';
如果你是requirejs环境
requirejs(['node_modules/@templatejs/runtime/dist/index.aio.js'], function (runtime) {
// xxx
})
如果你是浏览器环境
<script src="node_modules/@templatejs/runtime/dist/index.aio.js"></script>