【翻译】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自定义控件组件开发 第一章 第三 ...
随机推荐
- awk
cat map-matcher.log | awk -F '[' '{print $1}' | awk -F '-' '{print $2}' >result.txt cat 2.txt | a ...
- HTML页面如何判断是手机访问还是电脑访问
可以通过js来判断访问设备,代码如下: <script type="text/javascript"> var system ={}; var p = navigato ...
- VMWARE修改CPUID
在cmd shell下执行wmic cpu get ProcessorId命令,可是查看机器的cpuID,但这个命令显示的只是2组ID,实际CPUID,有4组 通过更改虚拟机配置文件.vmx可是实现任 ...
- MySql 里的IFNULL、NULLIF和ISNULL用法
MySql 里的IFNULL.NULLIF和ISNULL用法 mysql中isnull,ifnull,nullif的用法如下: isnull(expr) 的用法: 如expr 为null,那么isnu ...
- linux的相关指令命令
ls:查看当前所在的目录 whoami:查看当前所在的用户名 who:(查看所有的正在使用的用户名) id:唯一的识别编号(组所在的识别编号) uname -a:显示当前操作系统的版本 cd:切换工 ...
- TFS API : 四、工作项查询
TFS API : 四.工作项查询 本节将讲述如何查询工作项,将用户统计数据. 使用WorkItemStore.Query方法进行查询工作项,其使用的语法和SQL语法类似: Select [标题] f ...
- angular1.x的简单介绍 (一)
angular1.x作为经典的mvc框架,可以创建能够复用的组件,也可进行双向数据绑定.国内的vue.js/avaloon.js都是同类型的框架.适合使用angularjs的项目有大型信息化管理系统: ...
- 四、线程同步之Lock和Condition
Lock同步锁 Lock 在jdk1.5 提供了Lock以便执行同步操作,和synchronized不同的是Lock提供了显示的方法获取锁和释放锁.Lock提供了以下几个方法,请求和释放锁: voi ...
- [Java 8] (10) 使用Lambda完成函数组合,Map-Reduce以及并行化
好文推荐!!!!! 原文见:http://blog.csdn.net/dm_vincent/article/details/40856569 Java 8中同时存在面向对象编程(OOP)和函数式编程( ...
- C 标准库系列之ctype.h
ctype.h 主要提供了一些函数用以测试字符或字符处理的功能函数:包括字符判断检测.字符转换: 目前ASCII字符可分为以下一些类型,如:大写.小写.字母.数字.十六进制.空白字符.可打印字符.控制 ...