swifter
swifter copied to clipboard
Tiny http server engine written in Swift programming language.
Hello, I have a task of "reviving" someone else iOS app which uses your (Swifter) library. I've encountered quite weird problem: Here is the setup: * application has files in...
Added privacy manifest for compliance. Includes details for Stat system call usage to align with Apple's privacy requirement
From [Apple docs](https://developer.apple.com/support/third-party-SDK-requirements/): > Starting in spring 2024, you must include the privacy manifest for any SDK listed below when you submit new apps in App Store Connect that include...
the code works fine in ios version below 16.4. but in ios 16.4, the safari could not load url, the web was blank with "safari could not open the web...
Please release new version from stable branch. Last release 1.5.0 from Sep 26, 2020. Last commit (stable branch) on Nov 27, 2021
This is a port of Swifter to WinSock2 and other Win32 APIs.
Hi everyone, I'm encountering an issue with Swifter after updating my iOS app. Prior to this update, Swifter worked well, but now, after adding the entitlement `com.apple.developer.networking.multicast` as required for...
Hello 👋 Im trying to make an app that embed web app code. I have added in my project source 2 folders: - One for the app - One for...
I saw this topic here: https://github.com/httpswift/swifter/issues/292 but unfortunately I got the same issue. ``` com.apple.security.app-sandbox com.apple.security.network.client com.apple.security.network.server ``` and if I run: ``` let server = HttpServer() server["/hello"] = {...
Some times we need capture some pattern like httpServer.GET["^/.*\\.m3u8$"] = { request in } Is it possible to implement it? thanks in advance.