# 2019.03.05

[新闻] W3C 宣布 WebAuthn 成为正式 Web 标准:https://www.w3.org/TR/2019/REC-webauthn-1-20190304/ (opens new window)

[文章] 《在淘宝做前端的这三年 — 第二年》,第一年 (opens new window)。我在 1.11 号分享的《专为程序员编写的英语学习指南》 (opens new window)也是该作者写的:https://juejin.im/post/5c7dafe8f265da2de25bab27 (opens new window)

[文章] 如何让 React 更快:https://houssein.me/progressive-react (opens new window)

[类库] 在生产环境中,删除 Prop-Types,这样会减少文件体积节省带宽:https://github.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types (opens new window)

下方有示例

[类库] 为 Lerna 项目自动生成 change-log:https://github.com/lerna/lerna-changelog (opens new window)

[工具] 马克鳗,设计标注和测量工具:http://getmarkman.com/ (opens new window)

# 配图 - 马克鳗

# 示例 - remove prop types

// In
const Baz = (props) => (
  <div {...props} />
);

Baz.propTypes = {
  className: PropTypes.string
};

// Out
const Baz = (props) => (
  <div {...props} />
);
Last Updated: 3/5/2019, 1:16:25 PM