【翻译】Express web应用开发 第一章
本章节是一个对初学者友好的Express介绍。你将学习到Express的基础知识、核心概念和实现一个Express应用的组成部分。现阶段我们不需要做太多的编码,本章节会让你熟悉和习惯Express,为接下来的章节做好准备。
别跳过这一章节,这篇材料为你的Express学习之旅提供了指南。
什么是Express?
Express是一个轻量、灵活、强大的NodeJS web开发框架。
What do we mean by minimal yet flexible and powerful?
Express is minimal because it does not come loaded with all sorts of functionality,
which makes it a bloat-free framework. Out of the box, it supports only the very
basic features of a web framework. Even the supported features are not all enabled
by default, you have the option to pick and use, according to your needs.
The flexibility in Express comes from the use of middlewares and Node modules.
Express middlewares and Node modules are pluggable JavaScript components,
which make Express apps very modular, flexible, and extensible.
Express is a powerful framework because it gives you complete access to the core
Node APIs. Anything you can do with Node, you can do it with Express too.
Express can be used to create very simple to very complex web apps. It provides
you all the tools required to create the most complex of apps, but does not force
you to use them when you don't need them.
What is Express?
[6 ]
Hearing someone tell you that Express is a minimal, flexible, and powerful web
development framework doesn't really help much in understanding it, does it?.
Many other frameworks probably claim the same thing. Let's find out what is
actually special about Express.
安装Express
如果你安装了NodeJS,安装Express就非常简单。
Express是一个Node模块,和其他Node模块一样,我们可以通过NPM(Node Package Manager)安装,NPM在安装Node的时候已经默认安装。后面会详细介绍NPM和Node模块。
Node模块两种引入形式:local和global。local模块意味着在特定的项目中使用,只对该项目可用。而global模块安装到全局,基本上都随时可以通过命令行工具使用。
Express将被安装到全局,这样我们就可以通过express命令行工具快速初始化Express项目。
【tip:Express是web应用开发框架,express是创建Express应用框架的命令行工具】
我们通过在npm install命令中制定 -g选项来将Node模块安装到全局。安装Express命令如下:
npm install express -g
这个命令将安装最新稳定版本的Express。如果你想安装一个特定版本的Express,你可以通过@参数在模块名称中指定特定的版本号。例如:
npm install express@3.0.5 -g
安装完毕后,可以通过检查版本号确定我们已经可以使用express命令:
express -v
恭喜!现在,你的系统已经可以进行Express开发了!
Express组成
好消息是,Express只有3个核心组件,如果不需要彻底掌握,这就可以帮助我们了解Express很多功能。这一节我们将简单介绍Express的每个核心模块,在后面的章节我们遇到这些核心模块时就不会毫无头绪。
application对象
application对象是Express的一个实例,通常用app变量取代。这是Express应用的主要对象,大部分功能都建立在它的基础之上。
下面是怎样创建一个Express实例:
var express = require('express');
var app = new express();
下面是对app对象的属性和方法的介绍:
Property/Method | Description |
app.set(name, value) | Sets app-specific properties |
app.get(name) | Retrieves value set by app.set() |
app.enable(name) | Enables a setting in the app |
app.disable(name) | Disables a setting in the app |
app.enabled(name) | Checks if a setting is enabled |
app.disabled(name) | Checks if a setting is disabled |
app.configure([env], callback) | Sets app settings conditionally based on the development environment |
app.use([path], function) | Loads a middleware in the app |
app.engine(ext, callback) | Registers a template engine for the app |
app.param([name], callback) | Adds logic to route parameters |
app.VERB(path, [callback...],callback) | Defines routes and handlers based on HTTP verbs |
app.all(path, [callback...], callback) | Defines routes and handlers for all HTTP verbs |
app.locals | The object to store variables accessible from any view |
app.render(view, [options], callback) | Renders view from the app |
app.routes | A list of routes defined in the app |
app.listen() | Binds and listen for connections |
request对象
当客户端向Express应用发起请求时,Http request对象将被创建。request对象包含一系列与当期请求相关的属性和变量,通常被变量req取代。
Property/Method Description
req.params Holds the values of named routes parameters
req.params(name) Returns the value of a parameter from named routes or GETparams or POST params
req.query Holds the values of a GETform submission
req.body Holds the values of a POSTform submission
req.files Holds the files uploaded via a form
req.route Provides details about the current matched route
req.cookies Cookie values
req.signedCookies Signed cookie values
req.get(header) Gets the request HTTP header
req.accepts(types) Checks if the client accepts the media types
req.accepted A list of accepted media types by the client
req.is(type) Checks if the incoming request is of the particular media type
req.ip The IP address of the client
req.ips The IP address of the client, along with that of the proxies it is connected through
req.path The request path
req.host Hostname from the HTTP header
req.fresh Checks if the request is still fresh
req.stale Checks if the request is stale
req.xhr Checks if the request came via an AJAX request
req.protocol The protocol used for making the request
req.secure Checks if it is a secure connection
req.subdomains Subdomains of the host domain name
req.url The request path, along with any query parameters
req.originalUrl Used as a backup for req.url
req.acceptedLanguages A list of accepted languages by the client
req.acceptsLanguage(langauge) Checks if the client accepts the language
req.acceptedCharsets A list of accepted charsets by the client
req.acceptsCharsets(charset) Checks if the client accepts the charset
response对象
累了。。歇歇。翻译真是个体力活
【翻译】Express web应用开发 第一章的更多相关文章
- 【翻译习作】 Windows Workflow Foundation程序开发-第一章04
1.2.3 Windows Workflow运行时 从Windows Workflow的角度看,可以将工作流活动当成是交给一个工作流处理器去执行的一系列指令或操作码.在Windows Workflo ...
- 【翻译习作】 Windows Workflow Foundation程序开发-第一章05
1.3 开发我们的第一个工作流 也许你曾经在这样的产品经理手下搞过开发:他总是在你身边转悠,并不时的问一句“你还没做完吗?”.在这一部分,我们将用一个简单的Windows Workflow程 ...
- 【翻译习作】 Windows Workflow Foundation程序开发-第一章03
1.2.2.Visual Studio 2005扩展包 微软也为Windows Workflow开发者提供了Visual Studio 2005扩展包.扩展包将许多功能集成到Visual Studio ...
- 【翻译习作】 Windows Workflow Foundation程序开发-第一章02
1.2 Windows Workflow概览 微软的Windows Workflow Foundation(简称WF)是.NET框架3.0版的一部分..NET3.0其它主要部分是Window ...
- ASP.NET自定义控件组件开发 第一章 第三篇
原文:ASP.NET自定义控件组件开发 第一章 第三篇 第三篇:第一章的完结篇 系列文章链接: ASP.NET自定义控件组件开发 第一章 待续 ASP.NET自定义控件组件开发 第一章 第二篇 接着待 ...
- ASP.NET自定义控件组件开发 第一章 第二篇 接着待续
原文:ASP.NET自定义控件组件开发 第一章 第二篇 接着待续 ASP.NET自定义控件组件开发 第一章 第二篇 接着待续 很感谢大家给我的第一篇ASP.NET控件开发的支持!在写这些之前,我也看了 ...
- ASP.NET自定义控件组件开发 第一章 待续
原文:ASP.NET自定义控件组件开发 第一章 待续 第一章:从一个简单的控件谈起 系列文章链接: ASP.NET自定义控件组件开发 第一章 待续 ASP.NET自定义控件组件开发 第一章 第二篇 接 ...
- ASP.NET自定义控件组件开发 第一章 第三篇 第一章的完结篇
ASP.NET自定义控件组件开发 第一章 第三篇 第三篇:第一章的完结篇 系列文章链接: ASP.NET自定义控件组件开发 第一章 待续 ASP.NET自定义控件组件开发 第一章 第二篇 接着待续 ...
- ASP.NET自定义控件组件开发 第一章 第一章:从一个简单的控件谈起
第一章:从一个简单的控件谈起 系列文章链接: ASP.NET自定义控件组件开发 第一章 待续 ASP.NET自定义控件组件开发 第一章 第二篇 接着待续 ASP.NET自定义控件组件开发 第一章 第三 ...
随机推荐
- 人工智能 启发式算法(A,A*)
启发式算法区别于盲目搜索算法,是搜索策略的一种.主要特点是 可以利用问题自身的一些特征信息(启发式信息)来指导搜索的过程,从而可以缩小搜索范围,提高搜索效率. 实际上,启发式算法也代表了"大 ...
- java享元模式(flyweight)
有个问题: Integer i1 = 12; Integer i2 = 12; System.out.println(i1 == i2);//输出true Integer i1 = 130; Inte ...
- 重写jquery的ajax方法
//首先备份下jquery的ajax方法 var _ajax=$.ajax; //重写jquery的ajax方法 $.ajax=function(opt){ //备份opt中error和success ...
- Flex 1046: 找不到类型,或者它不是编译时常数;1180: 调用的方法 CompPropInfo 可能未定义
导入项目之后一直报这个错误, 1046: 找不到类型,或者它不是编译时常数: 1180: 调用的方法 CompPropInfo 可能未定义 想这应该是没有把当前这个类编译进项目当中,找了半天也没有找到 ...
- iOS 微信支付总结
1.支付流程 https://pay.weixin.qq.com/wiki/doc/api/app.php?chapter=8_3 商户系统和微信支付系统主要交互说明: 步骤1:用户在商户APP中选择 ...
- Docker Container 配置独立IP
1.宿主机安装网桥工具包 要是Linux可以工作在网桥模式,必须安装网桥工具bridge-utils,运行命令: yum install bridge-utils
- HTML5窗口间同域和跨域的通信
一丶同域下的 1.如果我们要操作iframe里面的元素,首先获取到引入的页面的window.获取iframe里面的window对象. var oIframe=getElementsByTagName( ...
- java求字符串数组交集、并集和差集
import java.util.HashMap; import java.util.HashSet; import java.util.LinkedList; import java.util.Ma ...
- Learn ES2015
折腾了大半年的项目,用的angular折腾快疯了. 总算有个小结了.正好闲下来为新的项目做准备,学点新的玩意玩玩,以往ES6都没用过,感觉被大部队甩好远了,抓紧跟上大部队的脚步... 1.利用let和 ...
- win7(x64)下安装cocos2d并编译安卓项目
好吧,不为啥,就是如题. win7 x64 脑袋内存比较小,说不定明儿就忘了,今天记录一下. 没有什么经验,所有步骤基本都是百度出来的,这里边操作边记录,为了保护原创作者,这里我都附上我查找的链接. ...