node.js模板引擎

master
宇天 2017-02-05 14:54:47 +08:00
commit fba09df449
3 changed files with 43 additions and 0 deletions

11
Readme.md Normal file
View File

@ -0,0 +1,11 @@
# smartyx
>Node.js的模板引擎理念源于PHP的smarty但不是smarty的Node.js实现。
>因为这不是PHPNode.js有自己的特点所以未不打算照搬smarty更不会按php的语法。仅仅是吸收smarty中优秀的理念。
**注**
目前该0.0.1版本只是为了占位正式版将于近日发布版本号并从1.0.0开始命名。

10
lib/main.js Normal file
View File

@ -0,0 +1,10 @@
/**
*
* @authors yutent (yutent@doui.cc)
* @date 2017-02-05 14:44:11
*
*/
"use strict";

22
package.json Normal file
View File

@ -0,0 +1,22 @@
{
"name": "smartyx",
"version": "0.0.1",
"description": "nodeJS模板引擎理念源自于PHP的smarty模板引擎",
"keywords": [
"dojs",
"smarty",
"template",
"ejs",
"jade"
],
"author": "宇天 <yutent@doui.cc>",
"repository": {
"type": "git",
"url": "https://git.oschina.net/yutent/smartyx.git"
},
"dependencies": {
"dojs-extend": "^1.1.2"
},
"devDependencies": {},
"main": "lib/main.js"
}