修正模块依赖
parent
536814d7d9
commit
13d6023039
|
@ -1,3 +1,5 @@
|
||||||
|
![module info](https://nodei.co/npm/smartyx.png?downloads=true&downloadRank=true&stars=true)
|
||||||
|
|
||||||
# 模板引擎
|
# 模板引擎
|
||||||
> 因为我原先是个PHPer,也一直喜欢smarty那个模板引擎,所以在nodeJS上,我也喜欢能有一款类似于smarty的的模板引擎,可惜我所知的几个引擎中,并没有smarty的理念,故自己开发了一款。
|
> 因为我原先是个PHPer,也一直喜欢smarty那个模板引擎,所以在nodeJS上,我也喜欢能有一款类似于smarty的的模板引擎,可惜我所知的几个引擎中,并没有smarty的理念,故自己开发了一款。
|
||||||
然而nodeJS并不是php,完全的模拟smarty又会失去nodeJS的味道,所以,我并不打算做nodeJS版的smarty,只是吸收了smarty的一些优秀的理念, 再结合nodeJS,开发了一套简单易用的模板引擎。
|
然而nodeJS并不是php,完全的模拟smarty又会失去nodeJS的味道,所以,我并不打算做nodeJS版的smarty,只是吸收了smarty的一些优秀的理念, 再结合nodeJS,开发了一套简单易用的模板引擎。
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
*/
|
*/
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
require('dojs-extend')
|
require('es.shim')
|
||||||
const Tool = require('./tool'),
|
const Tool = require('./tool'),
|
||||||
fs = require('fs'),
|
fs = require('fs'),
|
||||||
path = require('path'),
|
path = require('path'),
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "smartyx",
|
"name": "smartyx",
|
||||||
"version": "0.0.2",
|
"version": "0.0.3",
|
||||||
"description": "nodeJS模板引擎,理念源自于PHP的smarty模板引擎",
|
"description": "nodeJS模板引擎,理念源自于PHP的smarty模板引擎",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"dojs",
|
"dojs",
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
"url": "https://git.oschina.net/yutent/smartyx.git"
|
"url": "https://git.oschina.net/yutent/smartyx.git"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dojs-extend": "^1.1.2"
|
"es.shim": "^0.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"main": "lib/main.js"
|
"main": "lib/main.js"
|
||||||
|
|
Loading…
Reference in New Issue