Package Exports
- react-native-zeroconf
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-zeroconf) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-native-zeroconf 
Basic Zeroconf implementation for React-native
Get running services advertizing themselves using Zeroconf implementations like Avahi, Bonjour or NSD.
Install
npm i -S react-native-zeroconfiOS
- Right click on the
Librariesfolder in XCode, and addRNZeroconf.xcodeproj - Go to your Build Phases, under Link Binary with Libraries, add
libRNZeroconf.a - Click on the
RNZeroconf.xcodeprojin theLibrariesfolder, search Header Search Paths and add$(SRCROOT)/../../react-native/Reactif it's not.
Android
Add the following line to the bottom of your project's
settings.gradlefile.project(':react-native-zeroconf').projectDir = new File(settingsDir, '../node_modules/react-native-zeroconf/android')Change the
includeline of your project'ssettings.gradleto include the:react-native-zeroconfproject.include ':react-native-zeroconf', ':app'Open your app's
build.gradlefile and add the following line to thedependenciesblock.compile project(":react-native-zeroconf")In your app's
MainActivity.javafile, include this line as part of theReactInstanceManager.builder()lines..addPackage(new ZeroconfReactPackage())
API
import Zeroconf from 'react-native-zeroconf'
const zeroconf = new Zeroconf()Methods
scan(type = 'http', protocol = 'tcp', domain = 'local.') Start the zeroconf scan
This will initialize the scan from the Zeroconf instance. Will stop another scan if any is running.
stop() Stop the scan
If any scan is running, stop it. Otherwise do nothing.
getServices() Returns resolved services
Will return all names of services that have been resolved.
Events
zeroconf.on('start', () => console.log('The scan has started.'))start Triggered on scan start
stop Triggered on scan stop
found Triggered when a service is found
Broadcast a service name as soon as it is found.
resolved Triggered when a service is resolved
Broadcast a service object once it is fully resolved
{
host: 'XeroxPrinter.local.',
addresses: [
'192.168.1.23',
'fe80::aebc:123:ffff:abcd'
],
name: 'Xerox Printer',
fullName: 'XeroxPrinter.local._http._tcp.',
port: 8080
}remove Triggered when a service is removed
Broadcast a service name removed from the network.