# 2019.05.05
[文章] Kent C. Dodds 写的《如何使用 React Context》:https://kentcdodds.com/blog/how-to-use-react-context-effectively (opens new window)
[文章] 《权力的游戏》3D 地图的地理要素和 mbtile 数据,是广大爱好者和官方合力贡献且维护的;基于 Mapbox customlayer,在线地址 (opens new window):https://juejin.im/post/5ccab910f265da035378ec43 (opens new window)
[类库] update-notifier 是一个 CLI 端更新通知的依赖库;他会读取 package.json
来判断当前的 CLI 工具是否需要更新:https://github.com/yeoman/update-notifier (opens new window)
[类库] yargs-parser 也是开发 CLI 端所用到的工具,用于对命令后续的参数做解析:https://github.com/yargs/yargs-parser (opens new window)
# 配图 - 权利的游戏
# 配图 - update-notifier
# 示例 - update-notifier
const updateNotifier = require('update-notifier');
const pkg = require('./package.json');
updateNotifier({pkg}).notify();
# 示例 - yargs-parser
var argv = require('yargs-parser')(process.argv.slice(2))
console.log(argv)
// node example.js --foo=33 --bar hello
// { _: [], foo: 33, bar: 'hello' }