Here you can read past volumes of HelloGitHub Monthly by category. You are currently viewing the HelloGitHub Swift collection.
Rewritten Foundation Framework in Swift. The Foundation framework is the fundamental component (standard library) for macOS and iOS. This project represents Apple's source code for the rewritten Foundation in Swift, which is faster and more secure.
Wikipedia's Official Open-Source iOS Client. Wikipedia is an online encyclopedia, and this is its iOS client which supports features such as searching for materials, viewing popular articles, saving articles, multilingual support, and night reading mode.

流行的 Swift 语言 Web 框架。核心框架基于非阻塞事件驱动库 SwiftNIO 构建,除此之外还提供了 ORM、模版引擎、用户身份验证等模块,可用来快速创建网站、接口等服务。中文文档
import Vapor let app = try Application(.detect()) defer { app.shutdown() } app.get("hello") { req in return "Hello, world." } try app.run()

Kingfisher 是一个异步下载和缓存图片的库,你可以把它看做 SDWebImage 的纯 Swift 实现和替代。它可以帮助简单地实现像是用户头像或者 table view 里面的图片的下载和缓存这样的工作,以提高 app 速度和帮助开发者节省时间,作者的中文博客
用于格式化 Swift 代码的工具。当多人合作开发项目的时候,一致的代码风格就变得至关重要。该项目可以自动统一 Swift 代码风格,支持多种编辑器和命令行方式调用,适用于 macOS 和 Linux,让 Swift 代码风格统一变得十分简单和方便。
# macOS $ brew install swiftformat # Linux $ mint install nicklockwood/SwiftFormat
