node-blog

This repo is the code behind the blog HowToNode.org

  • 所有者: creationix/node-blog
  • 平台:
  • 许可证:
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

node-blog

node-blog is a static site generator. It's built on node and is currently used to auto-generate the site http://howtonode.org/

The source code for the site is at http://github.com/creationix/howtonode.org

Here is part of the nginx config for howtonode.org:

server {
  listen   80;
  server_name howtonode.org;
  root   /home/tim/www/howtonode.org/public;
  index index.html;
  location / {
    if (-f $request_filename.html) {
      rewrite (.*) $1.html break;
    }
  }
  location /post_hook {
    proxy_pass http://127.0.0.1:4242;
  }
}

主要指标

概览
名称与所有者creationix/node-blog
主编程语言JavaScript
编程语言JavaScript (语言数: 1)
平台
许可证
所有者活动
创建于2010-01-29 17:59:08
推送于2010-02-21 06:18:37
最后一次提交2010-02-21 00:18:32
发布数0
用户参与
星数75
关注者数3
派生数11
提交数43
已启用问题?
问题数2
打开的问题数1
拉请求数0
打开的拉请求数0
关闭的拉请求数0
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?