【翻译】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自定义控件组件开发 第一章 第三 ...
随机推荐
- day5
作业 作业需求: 模拟实现一个ATM + 购物商城程序 额度 15000或自定义 实现购物商城,买东西加入 购物车,调用信用卡接口结账 可以提现,手续费5% 每月22号出账单,每月10号为还款日,过期 ...
- shell 指定范围产生随机数
#/bin/bash echo "---------------产生随机数---------------" read -p "请输入起始数:" a read - ...
- 限制textarea的字数(包括复制粘贴)
<textarea cols="100%" rows="10" id="tuconent" placeholder="评价( ...
- CentOS Yum 命令详解
总所周知,Redhat和Fedora的软件安装命令是rpm,但是用rpm安 装软件最大的麻烦就是需要手动寻找安装该软件所需要的一系列依赖关系,超级麻烦不说,要是软件不用了需要卸载的话由于卸载掉了某个依 ...
- 阿里云CentOS7系列一 -- 安装JDK7的方法.
最近因为数据采集以及生产环境冲突.导入windows Server 2008系统经常死机.经讨论决定把采集服务程序和生产服务进行分开.采集程序通过windows Server2008运行.而生产程序通 ...
- 怎么使用Delphi获取当前的时间,精确到毫秒
先介绍一个可能比较常用的方法,获取当前时间 var datetime: string; begin datetime:= FormatDateTime('yyyy-mm-dd hh:mm:ss', N ...
- 小书翻译完成,分享啦--《用Python操作大数据[MapReduceHadoop和Spark]》
http://files.cnblogs.com/files/aguncn/%E7%94%A8Python%E6%93%8D%E4%BD%9C%E5%A4%A7%E6%95%B0%E6%8D%AE%5 ...
- 解决Linux不能上网ping:unknown host的问题
修改配置文件:/etc/sysconfig/network-scripts/ifcfg-eth0 vim /etc/sysconfig/network-scripts/ifcfg-eth0 在里面添加 ...
- AgileEAS.NET SOA 中间件平台.Net Socket通信框架-介绍
一.前言 AgileEAS.NET SOA 中间件平台是一款基于基于敏捷并行开发思想和Microsoft .Net构件(组件)开发技术而构建的一个快速开发应用平台.用于帮助中小型软件企业建立一条适合市 ...
- asterisk简单命令
重启asterisk [root@EC2-V2 ~]# service asterisk restart 进入asterisk操作界面 [root@EC2-V2 ~]# asterisk -vvvr ...