Swift Vapor 教程(项目创建)

The future of web development.
在初次接触 Swift Vapor 时,感觉代码比较清爽,用起来逻辑比较清晰。
困难点:

  1. Swift Vapor 使用了JWT管理三方库,比较吃网络
  2. Swift Vapor 搭建环境比较复杂
  3. 初次使用Swift
    Vapor 尽量不要使用MySql。选择其他数据库,这样更容易入手。

需要安装的软件:
Swift Vapor 教程(项目创建)_第1张图片
Postman: 用于调试接口
Azure Data Studio: 用于连接创建的数据库,查看数据库信息
Docker:将创建的数据库放到Docker里面进行管理
DBeaver: 这个在初次尝试阶段暂时用不到。

安装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.
             Equivalent to `swift run App`.
             The --enable-test-discovery flag is automatically set if needed.
  supervisor Commands for working with supervisord.
       xcode Opens an app in Xcode.

Use `vapor <command> [--help,-h]` for more information on a command.

接下来就是使用命名创建 Swift Vapor 工程
如:vapor new Vapor-api
后面的Vapor-api则是项目名称

# 以下是创建时选项选择引导:
# 选择支持: Fluent
# 数据库选择: SQLite(新手不建议使用MySQL)
# 选择不支持: Leaf

等待完成就可以自动创建一个新项目

接下来打开项目

cd /Vapor-api

再使用命令:

vapor xcode

剩下就是等待加载库即可,等加载完成后运行项目,这是打印控制台就会输出

http://127.0.0.1:8080

将该字符串放到浏览器或者postman中请求,则会输出

It works!

到此简单的Swift Vapor 初体验到此结束。

你可能感兴趣的:(iOS,之旅,swift,开发语言,ios)