Visit是一个漂亮的人机交互的HTTP CLI 工具
Visit 是 Spatie 的一个 CLI 工具,可以以漂亮的方式查看 HTTP 响应。
把它想象成人类用的 cURL:
https://github.com/spatie
https://github.com/spatie/visit
我刚刚发布了 Visit,一个供人类发出网络请求的 CLI 工具 https://t.co/LwqfyrDNOC 在这篇博文中,我解释了这个工具可以做什么(以及为什么我不为此使用 curl): https://t.co/pWMfrH1ezf pic.twitter.com/Nv2yHHmkPL — Freek Van der Herten(@freekmurze) 2022 年 3 月 24 日
要开始访问,您可以将 URL 传递给它:
visit laravel-news.com
如果您安装了推荐的 HTML 语法高亮工具,您将看到类似于以下内容的内容:
除了传递一个 URL,你还可以做一些非常强大的事情,比如过滤 HTML 和 JSON 响应:
# Given the following HTML response, you can filter the results
# <html>
# <body>
# <div>First div</div>
# <p>First paragraph</p>
# <p>Second paragraph</p>
# </body>
# </html>
#
visit <your-url> --filter="p"
# Returns:
# <p>First paragraph</p>
# <p>Second paragraph</p>
以下是过滤后的 JSON 响应的示例:
# Given the following JSON response, you can filter the results
# {
# "firstName": "firstValue",
# "nested": {
# "secondName": "secondValue"
# }
# }
visit <your-url> --filter="nested.secondName"
# Returns `secondValue`
除了用于访问的全局作曲家 CLI,Spatie 还附带一个 spatie/laravel-visit 包,可以快速访问 Laravel 应用程序中的任何 URI。
https://github.com/spatie/laravel-visit
您甚至可以在运行 artisan visit 命令时以用户身份登录:
# Pass user.id
php artisan visit /api/user/me --user=1
# or the --user flag
php artisan visit /api/user/me [email protected]
另一个很酷的技巧是显示异常堆栈跟踪而不是呈现的异常页面:
php artisan visit /page-with-exception --show-exception
我们只是真正触及了访问可能提供的所有功能的皮毛。您可以了解有关此软件包的更多信息,获取完整的安装说明,并在 GitHub 上查看源代码。
https://github.com/spatie/visit
此外,Freek Van der Herten 写了一篇关于此包的深入博客文章,其中包含更多详细信息:
介绍访问:为人类发出网络请求而设计的 CLI 工具。
https://freek.dev/2216-introducing-visit-a-cli-tool-made-for-humans-to-make-network-requests
转:
https://laravel-news.com/visit-http-cli
相关文章