Micro Frontends for Mobile 05/25/2022
On the Web, We have seen significant benefits from including micro frontends, which break up frontend monoliths into many smaller, more manageable pieces, and make many teams work simultaneously on a large and complex product. But Micro frontends for mobile seem stuck these days. In this article, we will describe a comprehensive guide to bringing these benefits to native mobile apps, as well as cover some of the implementation options that are available for mobile. And finally, we will dive deep into a full example application to show the technique.
2022年20周:
有所得
最近在做微前端,有所得。而且之前想不通的一些问题,也通过代码想通了。
被 routing 卡住了很长时间,我想我应该是需要单独写一些文章来解释了。
这周被老司机周报约稿,哈哈哈。
2022年19周:
很难但是不得不做
经历过一个项目中的一次换人,因为不情愿,导致一系列低级操作,不应该,得改。
2022年18周:
搞定了 URL 加载系统
从后端转行 iOS 开发一年了,一直没有研究过网络请求的 API(项目上有现成的封装)。之前手写项目的时候,总感觉对 URLSession 一知半解,犹豫了很多次。这次利用假期,终于有机会能完整的读了一遍官方文档,总结了一下,于是有了这篇文章《URL 加载系统(URL Loading System)》。练习了一把,于是有了这个 repo zddhub/url-loading-system。完成后网上搜了一把,发现大都是照搬官方文档,或者是几年前的老文章,还是有满满的成就感。它至少是达到了我写文章的目的 —— 对自己有用。
我的每篇文章都有 category
,它会出现在博客的链接里,之前的文章多用 note
或者 memo
。从下一篇文章起,会增加一个新的类别 article
。
URL 加载系统(URL Loading System) 05/04/2022
URL Loading System,通过 URLs,使用标准的网络协议,与服务器交换数据。本文帮助理解 URL 加载系统,并通过示例代码练习如何使用它,示例代码已开源。