Pines
Pines
@951759534 没有附带,也没法配置,除非自己改源码。
HTTP Method ,Header,Status Code等相关信息,强烈推荐查阅: ## [Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content](https://tools.ietf.org/html/rfc7231)
## [The Cost Of JavaScript](https://medium.com/dev-channel/the-cost-of-javascript-84009f51e99e) 各种统计数据,满满的干货:       
## [无线性能优化:Composite](http://taobaofed.org/blog/2016/04/25/performance-composite/)

## 证书与数字签名 公钥证书(Public-Key Certificate,PKC)其实和驾照很相似,里面记有姓名、组织、邮箱 地址等个人信息,以及属于此人的**公钥**,并由 `认证机构(Certification Authority、Certifying Authority, CA)` 施加 `数字签名`。只要看到公钥证书,我们就可以知道认证机构认定该公钥的确属于此人。公钥证书也简称为 `证书(certificate )`。 鲍勃给苏珊回信,决定采用**数字签名**。他写完后先用Hash函数,生成信件的`摘要(digest)`。然后,鲍勃使用私钥,对这个摘要加密,生成`数字签名(signature)`。鲍勃将这个签名,附在信件下面,一起发给苏珊。苏珊收信后,取下数字签名,用鲍勃的公钥解密,得到信件的摘要。由此证明,这封信确实是鲍勃发出的。 后来,苏珊感觉不对劲,发现自己无法确定公钥是否真的属于鲍勃。她想到了一个办法,要求鲍勃去找 `证书中心(certificate authority,简称CA)`,为公钥做认证。证书中心用自己的私钥,对鲍勃的公钥和一些相关信息一起加密,生成 `数字证书(Digital Certificate)`。 > 这里有两对密钥: > - 一对是服务器自己的 公钥(加密在证书里面)和私钥(一般服务器自己保留),这对密钥是在HTTPS握手阶段使用,用于协商出 对话密钥(session key)。 > - 另一对是认证机构的公钥和私钥,私钥由认证机构自己保留,公钥公开。...
补充: 1. React 16 干掉了React.addons.Perf,官方现在推荐使用 `your browser’s profiling tools` 。 2. 使用[why-did-you-update](https://github.com/maicki/why-did-you-update)检测多余的render效果不错。具体可见:[High Performance React: 3 New Tools to Speed Up Your Apps](https://medium.freecodecamp.org/make-react-fast-again-tools-and-techniques-for-speeding-up-your-react-app-7ad39d3c1b82)
好文,准备尝试。
nice work~ how is the progress?
```javascript import(`../page${componentPath}`) ``` 这种写法是支持的啊。