# 2020.8.6 今天是每日时报陪伴您的第 388 天
[文章] 微保 Serverless 实践之架构演进:https://mp.weixin.qq.com/s?__biz=MjM5MTA1MjAxMQ==&mid=2651238628&idx=1&sn=7d57bf92080a34b4950ced21badc0d39&chksm=bd4969608a3ee0760d69ec0ab1d586a2af58e70efb0e95e243ccffec37a7bda6f30ae9a7d9e5&scene=27#wechat_redirect (opens new window)
[工具] 一系列很棒的 Web 小特效:https://github.com/lindelof/awesome-web-effect (opens new window)
[类库] minimist 用于解析命令行参数:https://github.com/substack/minimist (opens new window)
# 配图 - TypeScript 新版网站上线
# 配图 - Serverless 实践之架构演进
# 配图 - minimist
$ node example/parse.js -x 3 -y 4 -n5 -abc --beep=boop foo bar baz
{ _: [ 'foo', 'bar', 'baz' ],
x: 3,
y: 4,
n: 5,
a: true,
b: true,
c: true,
beep: 'boop' }