Skip to content

holyzfy/velocityServer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

velocityServer

velocity模板服务器

Build Status Progress

安装

  1. 运行npm install

  2. 编辑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

About

velocity模板服务器

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published