velocity模板服务器
-
运行
npm install
-
编辑
config/default.json
并另存为config/local.json
,可用的配置项:port
: 服务器的运行端口webapps
: 服务器根目录,请填写绝对路径ssiMaxDepth
: SSI指令内嵌的最大深度vm
: velocity文件的扩展名responseHeaders
: 响应头
如果velocity文件同目录下有同名的json文件,则作为相应的模拟数据,例如:
index.vm
<h1>${title}</h1>
<ul>
#foreach($item in $list)
<li>$item</li>
#end
</ul>
{{$title}}
index.json
{
"title": "hello title",
"list": [
"one",
"two",
"three"
]
}
node index.js
npm test