swifter icon indicating copy to clipboard operation
swifter copied to clipboard

Tiny http server engine written in Swift programming language.

Results 123 swifter issues
Sort by recently updated
recently updated
newest added

I've tried to use '**' in a route, but it's not working when there is only a single path element. ie. /a/**/b matches /a/x/y/b but does not match /a/x/b. It...

### Motivation To have SSL support and be able to use HTTPS. The use cases of swifter library will be much broader. Our company use swifter to run mock API...

Hello, Do you think it's possible to create HLS server to receive HLS stram with this framework ? Thanks

Could you please add prebuilt frameworks to releases. https://github.com/Carthage/Carthage#archive-prebuilt-frameworks-into-one-zip-file

enhancement

Why not based on SwiftNIO ?

question

I try to upload files by WLAN, but the speed is not as fast as expected. It looks like `let rv = [UInt8](buffer[0..

question

I'm interested in serving a single page website as local files within my iOS app. I'm using swifter's `shareFilesFromDirectory` method to serve a number of HTML, JavaScript, CSS, images, and...

Dear. Thank you for reading my issue. I have launched http server on Mac OS using your library. Your library is working well on Mac OS 10.13. but when I...

Am trying to load a local html file which takes input from images & audio folders, In native audio files are not loading inside the WKWebview . So we started...

I use this lib to start a server on iPhone, it works well on iPhone 7 plus ``` do { server["/hello"] = { .ok(.htmlBody("You asked for \($0)")) } try server.start(8080)...