https://github.com/lessica/swiftbonjour
https://github.com/lessica/swiftbonjour
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lessica/swiftbonjour
- Owner: Lessica
- License: mit
- Created: 2021-05-18T18:00:36.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-30T06:34:05.000Z (about 2 years ago)
- Last Synced: 2025-06-09T15:11:58.594Z (9 months ago)
- Language: Swift
- Size: 264 KB
- Stars: 15
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SwiftBonjour
Using NetService (*Bonjour*) to enable network discovery in your app.
This is a maintained derivative fork of [Ciao](https://github.com/AlTavares/Ciao).
## What's Bonjour?
Bonjour, also known as zero-configuration networking, enables automatic discovery of devices and services on a local network using industry standard IP protocols. Bonjour makes it easy to discover, publish, and resolve network services with a sophisticated, easy-to-use programming interface that is accessible from Cocoa, Ruby, Python, and other languages. [Bonjour - Apple Developer](https://developer.apple.com/bonjour/)
## Example

## Real-World Demo

## Usage
### Swift Package Manager
To use SwiftBonjour as a [Swift Package Manager](https://swift.org/package-manager/) package just add the following in your Package.swift file.
``` swift
dependencies: [
.package(url: "https://github.com/Lessica/SwiftBonjour.git")
]
```
## Other Libraries
- [GCDWebServer](https://github.com/swisspol/GCDWebServer)
## License
SwiftBonjour is released under the MIT license. See [LICENSE](https://github.com/Lessica/SwiftBonjour/blob/main/LICENSE) for details.