Express 设置process.env.NODE_ENV变量
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Express 设置process.env.NODE_ENV变量相关的知识,希望对你有一定的参考价值。
参考技术A 前提条件需要安装cross-env包安装命令:
注意问题
1.cross-env NODE_ENV=development && node ./bin/server这种写法无法获取到环境变量,需删除&&
经测试虽然可以取到process.env.NODE_ENV的内容但是和字符串'development'比较的时候一直返回的false。不知道为啥,有知道的大神请留言。万分感谢
express--app.set
app.set(name,value)
name可以自己定义,也可以定义为应用设置(application settings) ,下面介绍几个应用设置
Property | Type | Value | Default |
---|---|---|---|
|
Boolean | 支持区分大小写 | 废弃. Treats "/Foo" and "/foo" as the same. |
|
String | 设置环境模式 |
|
|
Varied |
设置ETag响应头 |
|
|
String | 指定默认的JSONP回调名称 |
|
|
String | JSON 替换的回调函数 |
|
|
Number | 在设置时,发送带有指定数量空格的修饰的JSON字符串。 | 废弃. |
|
String |
用于使用的查询解析器,要么是“simple”,要么是“extended”。simple解析器基于节点的本地查询解析器查询字符串。extended 解析器基于qs |
"extended" |
|
Boolean | strict 路由模式 | Disabled. Treats "/foo" and "/foo/" as the same by the router. |
|
Number | The number of dot-separated parts of the host to remove to access subdomain. | 2 |
|
Varied |
表明该应用程序位于一个前端代理的后面,并使用 默认情况下,信任代理是禁用的。当启用时,Express尝试通过前端代理或一系列代理来确定客户端的IP地址。要求的事情。然后,ips属性包含了客户端通过的IP地址的数组。要启用它,请使用信任代理选项表中描述的值。 信任代理设置是使用proxy-addr包实现的。要了解更多信息,请参阅其文档 |
Disabled. |
|
String or Array | 应用程序视图的目录或目录数组。如果一个数组,视图会按照数组中出现的顺序查找 eg:app.set(‘views‘, path.join(__dirname, ‘views‘)) |
|
|
Boolean | 支持视图模板编译缓存。 |
|
|
String | 当省略时使用的默认引擎扩展名 eg: app.set(‘view engine‘, ‘ejs‘) //设置模板引擎为 ejs | |
|
Boolean | Enables the "X-Powered-By: Express" HTTP header. |
|
`trust proxy` 设置选项
Type | Value |
---|---|
Boolean |
如果正确,客户端的IP地址被理解为 如果错误,程序是理解为直接面对互联网和来自req.connection.remoteAddress客户机的IP地址。这是默认设置。 |
IP addresses |
一个IP地址,子网,或一个IP地址的数组,和子网来信任。下面是预配置的子网名称列表
Set IP addresses in any of the following ways:
When specified, the IP addresses or the subnets are excluded from the address determination process, and the untrusted IP address nearest to the application server is determined as the client’s IP address. |
Number |
信任从前台代理服务器作为客户机的第n个跳转 |
Function |
Custom trust implementation. Use this only if you know what you are doing.
|
etag 设置选项
Type | Value |
---|---|
Boolean |
|
String | If "strong", enables strong ETag. If "weak", enables weak ETag. |
Function |
Custom ETag function implementation. Use this only if you know what you are doing.
|
以上是关于Express 设置process.env.NODE_ENV变量的主要内容,如果未能解决你的问题,请参考以下文章