Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dsmurfin/nwkit
https://github.com/dsmurfin/nwkit
framework network udp
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/dsmurfin/nwkit
- Owner: dsmurfin
- Created: 2022-10-09T11:05:55.000Z (over 2 years ago)
- Default Branch: Main
- Last Pushed: 2022-10-09T13:14:59.000Z (over 2 years ago)
- Last Synced: 2024-11-07T20:55:53.418Z (3 months ago)
- Topics: framework, network, udp
- Language: Swift
- Homepage:
- Size: 41 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NWKit
A Swift Package (SPM) wrapper on Network.framework.
Note: This project is a work in progress and will change a lot.
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
### Prerequisites
Requires Swift 5.7
macOS 10.15+, iOS 13+### Installing
#### Xcode 14+
To add the package dependency to your Xcode project, select File > Swift Packages > Add Package Dependency and enter the repository URL:
https://github.com/dsmurfin/NWKit
#### Swift Package Manager
Simply add the package dependency to your Package.swift and depend on "NWKit" in the necessary targets:
``` dependencies: [
.package(url: "https://github.com/dsmurfin/NWKit", from: "0.0.1")
]
```