摘要: express简介: Express是一个简洁、灵活的node.js Web应用开发框架, 它提供一系列强大的功能,比如:模板解析、静态文件服务、中间件、路由控制等等,并且还可以使用插件或整合其他模块来帮助你创建各种 Web和移动设备应用,是目前最流行的基于Node.js的Web开发框架,并且支持E 阅读全文
posted @ 2017-02-09 19:28 webarn 阅读(245) 评论(0) 推荐(0) 编辑
摘要: ```javascript //引入express模块 var express = require('express'); //调用express方法,接受其返回值(返回值为对象) var app = express(); app.get('/',function (req, res) { res.send('这是主页'); }); app.get('/contact',funct... 阅读全文
posted @ 2017-02-09 15:59 webarn 阅读(240) 评论(0) 推荐(0) 编辑
摘要: NPM : Node Package Manage 安装 express框架: 1. npm install express 2. 卸载 express框架 3. npm uninstall express 网站查询:https://www.npmjs.com/ Package: 1. 安装: np 阅读全文
posted @ 2017-02-09 15:14 webarn 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 步骤: 1. 引入文件系统模块 2. 引入http模块 3. 创建服务器 3.1 判断req.url值 3.2 设置协议头 3.3 读取文件地址并使用管道流插入 4. 监听服务器 阅读全文
posted @ 2017-02-08 22:33 webarn 阅读(128) 评论(0) 推荐(0) 编辑