Pages

Wednesday, 6 November 2013

在linux vps上搭建基于nodejs的静态博客程序-harp

npm install -g harp
harp init harp-site (该命令会在当前目录下,生成harp-site目录)
cd harp-site
harp server & (预览服务器就运行在了 http://localhost:9000,示例http://as3.brite.biz:9000/.还可指定所运行的端口:harp server --port 8002 & ,示例:http://as3.brite.biz:8002/)
harp compile . output (意思为把当前目录生成到output目录。该命令会在当前目录下,生成output目录)
as3:~/harp-site# harp compile . output
as3:~/harp-site# ls
404.jade  index.jade  _layout.jade  main.less  output
as3:~/harp-site# ls output
404.html  index.html  main.css
as3:~/harp-site# cd output
as3:~/harp-site/output#

demo site: http://as3.brite.biz:9000/,http://as3.brite.biz:8002/
可惜也是只搭建了框架,还需自行设计模板。

项目地址: https://github.com/sintaxi/harp