React Native macOS utility for launching an application on macOS.
npm install react-native-macos-app-opener
npm i react-native-macos-app-opener --save
`Link native modules to your project automatically with:
`
react-native-macos link
`
Or you can follow the same pattern seen in React Native iOS Library Linking.Details
The utility leverages NSWorkspace to launch an application passed through a parameter to AppOpener. If the application is already opened, the system will bring it to the front. If the application is closed, it will launch it.Usage
`
import AppOpener from 'react-native-macos-app-opener';AppOpener.openApp('Finder');
``