序言
Vapor是 Swift 最流行的 Web 网络框架。它可以为你的网站或 API 提供精美的页面展示和简易的使用方式。
image.png在 macOS 上安装
要在 macOS 上使用 Vapor,你将需要 Swift 5.2 或更高版本。
0x00 安装 Xcode
必须安装 Xcode11 或更高版本。
安装后,打开 Terminal 输入以下命令打印 Swift 的版本,检查版本号以确保安装成功。
swift --version
执行之后应该能够看到 Swift 的版本信息已打印。
Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)
Target: x86_64-apple-darwin20.1.0
Vapor 4 需要 Swift 5.2 或更高版本。
0x01 Toolbox
现在你已经安装了 Swift,让我们安装 Vapor Toolbox。 使用 Vapor 不需要此 CLI 工具,但是它包含一些实用的程序,例如新项目创建。
Toolbox 通过 Homebrew 分发。如果你还没有安装 Homebrew,请访问 brew.sh 查看安装说明。
brew install vapor
经过一段时间的等待,可以在命令式输入 Vapor 包含的可用命令列表。
vapor --help
Usage: vapor <command>
Vapor Toolbox (Server-side Swift web framework)
Commands:
build Builds an app in the console.
clean Cleans temporary files.
heroku Commands for working with Heroku
new Generates a new app.
run Runs an app from the console.
supervisor Commands for working with Supervisord
xcode Opens an app in Xcode.
Use `vapor <command> [--help,-h]` for more information on a command.
网友评论