首页 > 代码库 > 使用Nodejs创建基本的网站

使用Nodejs创建基本的网站

  1. 使用Web框架 -- Express

    express -g  全局安装

    express express_examplename

 install dependencies:

     $ cd express_example && npm install

run the app:

     $ DEBUG=express_example ./bin/www

结构:

    app.js  bin  node_modules  package.json  public  routes  views

   2. Express使用Jade作为模板引擎


本文出自 “飒飒秋风” 博客,请务必保留此出处http://xjhznick.blog.51cto.com/3608584/1535872