-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
988 lines (655 loc) · 40.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="BeanLee Blog">
<title>BeanLee Blog</title>
<meta name="author" content="Bean Lee">
<link rel="icon" href="https://beanlee.github.io/favicon.png">
<link rel="alternate" type="application/atom+xml" title="RSS" href="/atom.xml">
<script type="application/ld+json">{"@context":"http://schema.org","@type":"Website","@id":"https://beanlee.github.io","author":{"@type":"Person","name":"Bean Lee","sameAs":["https://github.com/beanlee","https://twitter.com/MrBean_Lee","https://www.linkedin.com/in/beanlee-75309387","https://instagram.com/beanlee2020"],"image":"https://beanlee.github.io/favicon.png"},"name":"BeanLee Blog","description":"记录豆子先森生活感悟、技术积累等博文","url":"https://beanlee.github.io"}</script>
<meta name="description" content="记录豆子先森生活感悟、技术积累等博文">
<meta property="og:type" content="blog">
<meta property="og:title" content="BeanLee Blog">
<meta property="og:url" content="https://beanlee.github.io/index.html">
<meta property="og:site_name" content="BeanLee Blog">
<meta property="og:description" content="记录豆子先森生活感悟、技术积累等博文">
<meta property="og:locale" content="zh-cn">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="BeanLee Blog">
<meta name="twitter:description" content="记录豆子先森生活感悟、技术积累等博文">
<meta name="twitter:creator" content="@https://twitter.com/MrBean_Lee">
<meta property="og:image" content="https://www.gravatar.com/avatar/3fe40c6cac2cee1d563a87ada4d02cc5?s=640"/>
<!--STYLES-->
<link rel="stylesheet" href="/assets/css/style-hmujtphswtnkmxr9nrbolulu5rdtlf5r16obkh0cadm91o9xxruanxhctll8.min.css">
<!--STYLES END-->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-46079069-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-46079069-1');
</script>
<script type="text/javascript">
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?db9bb97e9e15133d0f061a19cb4f6093";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body>
<div id="blog">
<!-- Define author's picture -->
<header id="header" data-behavior="2">
<i id="btn-open-sidebar" class="fa fa-lg fa-bars"></i>
<div class="header-title">
<a class="header-title-link" href="/ ">BeanLee Blog</a>
</div>
<a class="header-right-icon open-algolia-search" href="#search">
<i class="search fa-lg"></i>
</a>
</header>
<!-- Define author's picture -->
<nav id="sidebar" data-behavior="2">
<div class="sidebar-container">
<div class="sidebar-profile">
<a href="/#about">
<img class="sidebar-profile-picture" src="https://www.gravatar.com/avatar/3fe40c6cac2cee1d563a87ada4d02cc5?s=110" alt="作者的图片">
</a>
<h4 class="sidebar-profile-name">Bean Lee</h4>
<h5 class="sidebar-profile-bio"><p>author.bio</p>
</h5>
</div>
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a class="sidebar-button-link " href="/ " title="首页">
<i class="sidebar-button-icon fa fa-home" aria-hidden="true"></i>
<span class="sidebar-button-desc">首页</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="/all-archives" title="归档">
<i class="sidebar-button-icon fa fa-archive" aria-hidden="true"></i>
<span class="sidebar-button-desc">归档</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="/all-tags" title="标签">
<i class="sidebar-button-icon fa fa-tags" aria-hidden="true"></i>
<span class="sidebar-button-desc">标签</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="/links" title="链接">
<i class="sidebar-button-icon fa fa-link" aria-hidden="true"></i>
<span class="sidebar-button-desc">链接</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="/about" title="关于我">
<i class="sidebar-button-icon fa fa-question" aria-hidden="true"></i>
<span class="sidebar-button-desc">关于我</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="/beanlib" title="实验室">
<i class="sidebar-button-icon fa fa-flask" aria-hidden="true"></i>
<span class="sidebar-button-desc">实验室</span>
</a>
</li>
</ul>
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a class="sidebar-button-link " href="https://github.com/beanlee" target="_blank" rel="noopener" title="GitHub">
<i class="sidebar-button-icon fab fa-github" aria-hidden="true"></i>
<span class="sidebar-button-desc">GitHub</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="https://twitter.com/MrBean_Lee" target="_blank" rel="noopener" title="Twitter">
<i class="sidebar-button-icon fab fa-twitter" aria-hidden="true"></i>
<span class="sidebar-button-desc">Twitter</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="https://www.linkedin.com/in/beanlee-75309387" target="_blank" rel="noopener" title="LinkedIn">
<i class="sidebar-button-icon fab fa-linkedin" aria-hidden="true"></i>
<span class="sidebar-button-desc">LinkedIn</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="https://instagram.com/beanlee2020" target="_blank" rel="noopener" title="Instagram">
<i class="sidebar-button-icon fab fa-instagram" aria-hidden="true"></i>
<span class="sidebar-button-desc">Instagram</span>
</a>
</li>
</ul>
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a class="sidebar-button-link " href="/atom.xml" title="RSS">
<i class="sidebar-button-icon fa fa-rss" aria-hidden="true"></i>
<span class="sidebar-button-desc">RSS</span>
</a>
</li>
</ul>
</div>
</nav>
<div id="main" data-behavior="2"
class="
hasCoverMetaIn
">
<section class="postShorten-group main-content-wrap">
<article class="postShorten postShorten--thumbnailimg-bottom">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/posts/fe-perf-checklist-2020/">
【译】前端性能优化检查表 2020
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2021-01-11T15:17:46+08:00">
1月 11, 2021
</time>
<span>发布在 </span>
<a class="category-link" href="/categories/前端技术/">前端技术</a>
<span class="post-count"> 1,014 words, about 4 min read </span>
</div>
</div>
<div class="postShorten-excerpt">
<p>原文地址 <a href="https://www.smashingmagazine.com/2020/01/front-end-performance-checklist-2020-pdf-pages" target="_blank" rel="noopener">https://www.smashingmagazine.com/2020/01/front-end-performance-checklist-2020-pdf-pages</a></p>
<p>简单对一篇完整的检查表目录做一个翻译,极力推荐阅读原文,文中也提到了大量的有关性能优化策略和方法的关键字和链接,方便查询。</p>
<a href="/posts/fe-perf-checklist-2020/" class="postShorten-excerpt_link link">
阅读全文
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-bottom">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/posts/think-about-sourcemap/">
有关 SourceMap 的几点个人思考
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2020-11-18T18:48:37+08:00">
11月 18, 2020
</time>
<span>发布在 </span>
<a class="category-link" href="/categories/前端技术/">前端技术</a>
<span class="post-count"> 994 words, about 4 min read </span>
</div>
</div>
<div class="postShorten-excerpt">
<!-- ## 有关 SourceMap 的几点个人思考 -->
<p>这两天在组里协助排查一个 webpack dev 环境下重载时内存溢出的问题,现象是 webpack-dev-server 启动的过程中,在 <code>node 10.xx</code> 的环境下,一旦修改文件工程自动 reload 时会出现内存溢出导致服务直接中断。</p>
<p>排查原因,最终发现原来是脚手架在配置开发环境的 <code>devtool</code> 配置时,为了方便开发者 DEBUG,设置成了 <code>cheap-module-source-map</code> ,在代码修改时触发自动 load,在 loader 编译映射 sourcemap 的时候<strong>溢~出~了~</strong>,本文不会说明为什么溢出,排查的过程以及解决,其实花的时间也不长,重点说明一下 sourcemap 的作用以及使用过程的几点个人思考。</p>
<a href="/posts/think-about-sourcemap/" class="postShorten-excerpt_link link">
阅读全文
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-bottom">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/posts/note-about-unix-art-1/">
UNIX 编程艺术 读书笔记 1
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2020-11-17T19:02:20+08:00">
11月 17, 2020
</time>
<span class="post-count"> 363 words, about 1 min read </span>
</div>
</div>
<div class="postShorten-excerpt">
<!-- ## 《UNIX 编程艺术》读书笔记 1 -->
<p>以下规则很受用,不分语言,甚至有一些规则可以作为日常做事的原则,日后逐条对应写一些个人的理解。</p>
<p>有关 UNIX 编程的规则(摘自原文):</p>
<a href="/posts/note-about-unix-art-1/" class="postShorten-excerpt_link link">
阅读全文
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-bottom">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/posts/think-about-fe-of-backsystem/">
中后台前端搭建经验总结-技术细节篇(一)
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2020-10-20T20:18:13+08:00">
10月 20, 2020
</time>
<span class="post-count"> 2,971 words, about 11 min read </span>
</div>
</div>
<div class="postShorten-excerpt">
<!-- ## 中后台前端搭建经验总结-技术细节篇(一)-->
<blockquote>
<p>本篇是总结一个旧项目,项目在 2019 年 Q3 开发并上线运营,经历两个月迭代后目前已交接给其他团队维护,整理个人草稿箱发现这边还没有完成的总结,补充一些内容更新至此,内容应该是顺着回想起细节,后面再补充。</p>
</blockquote>
<p>关键词:中后台系统、从零到壹</p>
<a href="/posts/think-about-fe-of-backsystem/" class="postShorten-excerpt_link link">
阅读全文
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-bottom">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/posts/page-with-gesture/">
单品页手势实现记录
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2020-09-29T22:39:47+08:00">
9月 29, 2020
</time>
<span class="post-count"> 31 words, about 1 min read </span>
</div>
</div>
<div class="postShorten-content">
<p>撰写中,先占个坑以免自己忘了,主要记录仿抖音交互式 H5 页手势过程实现</p>
<p>
<a href="/posts/page-with-gesture/#post-footer" class="postShorten-excerpt_link link">
评论和共享
</a>
</p>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-bottom">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/posts/getting-started-about-redis/">
Redis 入门指南(第 2 版)读书笔记
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2020-09-22T13:55:28+08:00">
9月 22, 2020
</time>
<span class="post-count"> 3,011 words, about 11 min read </span>
</div>
</div>
<div class="postShorten-excerpt">
<!-- ## Redis 入门指南(第 2 版) 读书笔记 -->
<blockquote>
<p>读书笔记《Redis 入门指南》 李子骅. Redis 入门指南(第 2 版)(异步图书) (Chinese Edition) (Kindle Locations 627-632). 人民邮电出版社. Kindle Edition.</p>
</blockquote>
<p>前阵子部门团建要去外地,路上大巴车来回有将近 6、7 个小时的空闲时间,排除和身边人玩 Switch 的时间,大部分时间都用来速读一本纯技术类工具书,《Redis 入门指南(第 2 版)》,粗略自己摘录并且记录一些读书笔记,记录于此,以备自己方便查阅。内容可以较多但仅限个人记录一定有所疏漏,还是建议使用到 Redis 的开发者朋友,使用 Dash 或者其他查看 API 一类工具放手边随时查阅。</p>
<a href="/posts/getting-started-about-redis/" class="postShorten-excerpt_link link">
阅读全文
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-bottom">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/posts/about-storybook-5/">
基于 Storybook 5 打造 Style 组件库开发与文档站建设小结
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2020-07-08T18:11:14+08:00">
7月 08, 2020
</time>
<span>发布在 </span>
<a class="category-link" href="/categories/前端技术/">前端技术</a>
<span class="post-count"> 2,584 words, about 9 min read </span>
</div>
</div>
<div class="postShorten-excerpt">
<!-- ## 基于 Storybook 5 打造 Style 组件库开发与文档站建设小结 -->
<h3 id="写在前头"><a href="#写在前头" class="headerlink" title="写在前头"></a>写在前头</h3><p>前阵子一直和组里的小伙伴共同“造轮子”,开发并维护了一套 PC 端 React UI 组件库,经过了一段时间的折腾,组件库从之前的 0.x、1.x 再到最近发布的 2.0.beta 的一个过程,这其中很多东西值得拿出来分享和讨论,有好的有失败的,今天就把组件库开发过程中的 DEMO 实时重现以及后期文档站的建设的技术选型以及实践简单做一个记录总结和大家一起做一个讨论。</p>
<p>调研和选型具体细节,后面找时间再梳理输出另外一篇文章,这里介绍在使用 <code>Storybook 5</code> 的过程中的一些问题点以及经验分享。</p>
<blockquote>
<p>截止文章编写时 Storybook 6 正在进行 rc 版,作者也经历过将之前项目的 <code>5.2.x</code> 升级到 <code>5.3.x</code> 过程的阵痛,网络上关于使用 Storybook 的问题文章也比较少,除了 Storybook 官网文档以外一些问题点记录,因此成文,感兴趣可以继续阅读。有关 UI 组件库的建设,这里不做深入讨论。(就是我们暂时先不讨论 WHY 的问题,本文只讨论 HOW。)</p>
</blockquote>
<a href="/posts/about-storybook-5/" class="postShorten-excerpt_link link">
阅读全文
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-bottom">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/posts/sth-about-eslint/">
ESLint 修改点整理
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2020-06-03T21:39:00+08:00">
6月 03, 2020
</time>
<span>发布在 </span>
<a class="category-link" href="/categories/前端技术/">前端技术</a>
<span class="post-count"> 1,047 words, about 5 min read </span>
</div>
</div>
<div class="postShorten-excerpt">
<!-- ## ESLint 修改点整理 -->
<p>ESLint 为团队和项目带来的益处,这里不多说,本文主要是个人近期修改项目代码一些错误修改整理的内容。</p>
<blockquote>
<p>备注:尽量使用默认 Prettier 规则,根据实际情况略有调整。项目技术栈 React, Redux, Redux-Sagas, TypeScript。</p>
</blockquote>
<a href="/posts/sth-about-eslint/" class="postShorten-excerpt_link link">
阅读全文
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-bottom">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/posts/understand-the-javascript-seo-basics/">
【译】Google 出品 - Understand the JavaScript SEO basics
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2019-07-30T22:39:20+08:00">
7月 30, 2019
</time>
<span>发布在 </span>
<a class="category-link" href="/categories/前端技术/">前端技术</a>
<span class="post-count"> 1,495 words, about 5 min read </span>
</div>
</div>
<div class="postShorten-excerpt">
<h2 id="理解-JavaSript-SEO-基础"><a href="#理解-JavaSript-SEO-基础" class="headerlink" title="理解 JavaSript SEO 基础"></a>理解 JavaSript SEO 基础</h2><p>原文 <a href="https://developers.google.com/search/docs/guides/javascript-seo-basics" target="_blank" rel="noopener">https://developers.google.com/search/docs/guides/javascript-seo-basics</a></p>
<blockquote>
<p>你是否怀疑过由于 JavaScript 的问题可能会影响你的网页或者某一部分内容出现在 Google Search 的结果? 你通过我们的<a href="https://developers.google.com/search/docs/guides/fix-search-javascript" target="_blank" rel="noopener">故障排除指南</a>来了解如何解决 JavaScript 相关的这些问题。</p>
</blockquote>
<p>JavaScript 是 WEB 平台中重要的一部分,因为它能够提供由普通 web 网站向功能更强大的应用平台转变的众多特性。开发 JavaScript 驱动的 web 应用可以帮助你吸引新用户,同时可以通过 Google 搜索到你的 web 应用提供出来的有效内容来留存现有用户。当 Google Search 通过 Chromium 引擎来执行 JavaScript 时,你可以做一些下面这些事情去进行优化改进你的 Web 应用。</p>
<a href="/posts/understand-the-javascript-seo-basics/" class="postShorten-excerpt_link link">
阅读全文
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-bottom">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/posts/learn-serverless-1-perf/">
全栈的另一个选择:Serverless 无服务框架浅谈
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2019-05-27T09:49:55+08:00">
5月 27, 2019
</time>
<span>发布在 </span>
<a class="category-link" href="/categories/技术/">技术</a>
<span class="post-count"> 3,873 words, about 14 min read </span>
</div>
</div>
<div class="postShorten-excerpt">
<blockquote>
<p>近期在准备部门内部的一个分享,思考了一些主题,最终还是决定结合自身 Web 服务端开发经验,来分享自己调研 Serverless 无服务建构的相关内容。</p>
</blockquote>
<blockquote>
<p>以下全文是前期准备阶段调研和整理的一部分资料,梳理总结后,在制作 Slide 过程中书写逐字稿缩减而来的。分享结束后还会继续在这部分挖掘和实践,云计算中的 Serverless 是一个非常大的主题范畴,单凭这一篇文字是没办法细说全部,笔者也在路上,感兴趣的同学可以留言讨论,持续关注。</p>
</blockquote>
<a href="/posts/learn-serverless-1-perf/" class="postShorten-excerpt_link link">
阅读全文
</a>
</div>
</div>
</article>
<div class="pagination-bar">
<ul class="pagination">
<li class="pagination-next">
<a class="btn btn--default btn--small" href="/page/2/">
<span>下一页</span>
<i class="fa fa-angle-right text-base icon-ml"></i>
</a>
</li>
<li class="pagination-number">第 1 页 共 4 页</li>
</ul>
</div>
</section>
<footer id="footer" class="main-content-wrap">
<span class="copyrights">
Copyrights © 2021 Bean Lee. All Rights Reserved.
</span>
</footer>
</div>
</div>
<div id="about">
<div id="about-card">
<div id="about-btn-close">
<i class="fa fa-times"></i>
</div>
<img id="about-card-picture" src="https://www.gravatar.com/avatar/3fe40c6cac2cee1d563a87ada4d02cc5?s=110" alt="作者的图片">
<h4 id="about-card-name">Bean Lee</h4>
<div id="about-card-bio"><p>author.bio</p>
</div>
<div id="about-card-job">
<i class="fa fa-briefcase"></i>
<br>
<p>author.job</p>
</div>
<div id="about-card-location">
<i class="fa fa-map-marker-alt"></i>
<br>
Beijing
</div>
</div>
</div>
<div id="algolia-search-modal" class="modal-container">
<div class="modal">
<div class="modal-header">
<span class="close-button"><i class="fa fa-times"></i></span>
<a href="https://algolia.com" target="_blank" rel="noopener" class="searchby-algolia text-color-light link-unstyled">
<span class="searchby-algolia-text text-color-light text-small">by</span>
<img class="searchby-algolia-logo" src="https://img11.360buyimg.com/imagetools/jfs/t29587/1/1553336624/17034/4000fd99/5ce4bf63N116f7972.png">
</a>
<i class="search-icon fa fa-search"></i>
<form id="algolia-search-form">
<input type="text" id="algolia-search-input" name="search" class="form-control input--large search-input" placeholder="Search ">
</form>
</div>
<div class="modal-body">
<div class="no-result text-color-light text-center">没有找到文章</div>
<div class="results">
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://beanlee.github.io/posts/First-Blog/">
<h3 class="media-heading">开篇</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2013年11月28日
</span>
</span>
<div class="media-content hide-xs font-merryweather"></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://beanlee.github.io/posts/Finished-the-book/">
<h3 class="media-heading">英雄再见</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2013年12月4日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><h1 id="《獵命師傳奇》最终章完结"><a href="#《獵命師傳奇》最终章完结" class="headerlink" title="《獵命師傳奇》最终章完结"></a>《獵命師傳奇》最终章完结</h1><p>断断续续地在地铁上读完了这本九把刀的长篇《獵命師傳奇》,说来初识九把刀还是在看过《那些年,我们一起追的女孩儿》这部电影来的,当时只是觉得这些年台湾电影成长的很快,这位有趣自大的导演第一部电影长篇就拍的如此热血,导演本人也一定非常有趣,带着疑问和好奇,我开始在网上查阅九把刀。</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://beanlee.github.io/posts/Eassy-Programmer/">
<h3 class="media-heading">程序员都是理想主义者</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2013年12月5日
</span>
</span>
<div class="media-content hide-xs font-merryweather"></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://beanlee.github.io/posts/The-Summary-of-At/">
<h3 class="media-heading">微博等SNS@功能探索技术验证总结</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2014年1月10日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>公司阶段技术预言项,推特微博等@人员功能,断断续续3-4天时间,做了一些总结在Blog中和大家分享</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://beanlee.github.io/posts/Read-The-Book-Of-Zhihu/">
<h3 class="media-heading">书摘随笔</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2014年3月20日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>读《创业时,我们在知乎聊什么》书摘随笔一</p>
<blockquote>
<p>最小化可行产品 汪华说,你一开始的所有计划其实只是对用户和市场的假定而已,小团队的钱和资源也都有限,必须先快速地找个办法验证方向。 所以产品的第一个版本的目的,是验证用户需求和反馈,而不是做一个完美无缺、功能丰富的版本。第一版应该集中于开发出产品的核心功能和核心需求,也就是那个用户。</p>
</blockquote></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://beanlee.github.io/posts/Misfit-Shine/">
<h3 class="media-heading">有设计感的数码产品才能打动人心</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2014年4月12日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>夏日来袭,笔者对比了几款运动手环,最终入手Misfit Shine带来开箱图文和简单对比分享</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://beanlee.github.io/posts/Java-Collection-Review/">
<h3 class="media-heading">Java基础集合类复习</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2014年6月6日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Java基础集合类的问题简单整理</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://beanlee.github.io/posts/Study-Swift-1/">
<h3 class="media-heading">Swift Study 1</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2014年6月8日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Swift is an important chance to find coding passion back to me. So Do Not Lose It! Come on!</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://beanlee.github.io/posts/Mac-Tool-Series-1/">
<h3 class="media-heading">Mac Tool</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2014年6月19日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>推荐的两款软件,它们有助于我提高效率,因此来完成这篇推介文。<br>Dash 一款用来集成快速查阅文档;CheatSheet 一款用来提示快捷键。</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://beanlee.github.io/posts/OSC-Party/">
<h3 class="media-heading">OSC源创回年终盛典</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2014年11月26日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>开源中国2014年终盛典大会参会笔记</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
</div>
</div>
<div class="modal-footer">
<p class="results-count text-medium" data-message-zero="没有找到文章" data-message-one="找到 1 篇文章" data-message-other="找到 {n} 篇文章">
找到 36 篇文章
</p>
</div>
</div>
</div>
<div id="cover" style="background-image:url('https://img10.360buyimg.com/uba/jfs/t19666/213/522537036/248594/9d238021/5a936b81Nf7ab67ea.jpg');"></div>
<!--SCRIPTS-->
<script src="/assets/js/script-snykejswjcxqfzqhk8erauq9xu9tds7bleedq61lkpgsla0zkuddqzjkbdhm.min.js"></script>
<!--SCRIPTS END-->
<!-- Hotjar Tracking Code for https://beanlee.github.io -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:1333288,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
</body>
</html>