# 2019.04.15

[文章] Ali Data Frontend Team 团队成员写的精读文章《深入剖析 React Concurrent》:https://zhuanlan.zhihu.com/p/60307571 (opens new window)

[文章] 该作者整理了 ES6、ES7、ES8、ES9、ES10 的新特性,整理的非常棒:https://juejin.im/post/5ca2e1935188254416288eb2 (opens new window)

[类库] hotkeys 是用于捕获键盘输入的依赖库,调用方式很友好: https://github.com/jaywcjlove/hotkeys (opens new window)

[工具] Octotree 是一个 Chrome 扩展插件,其目的是在 GitHub 左侧,追加代码的树形结构的导航栏,方便查阅代码:https://github.com/ovity/octotree (opens new window)

[工具] The Fucking Github 是一个 Chrome 浏览器的扩展插件,可以用来很方便地查看、整理、搜索你已经 Star 过的项目和搜索 Github 上的项目:https://github.com/lvxianchao/the-fucking-github (opens new window)

你是否在 Github 上有很多 star 过的项目并且经常需要浏览它们,但是每次你都得先在浏览器里打开一个标签页,然后输入 https://github.com 再点击右侧你的头像,再点击 your stars,然后你终于看见了那些你 star 过的项目。

# 配图 - Octotree

# 配图 - The Fucking Github

# 示例 - hotkeys

import hotkeys from 'hotkeys-js';

hotkeys('f5', function(event, handler){
  // Prevent the default refresh event under WINDOWS system
  event.preventDefault() 
  alert('you pressed F5!') 
});
Last Updated: 5/13/2019, 11:21:56 AM