React Native Network Scan
npm install react-native-ns
import { Ns } from 'react-native-ns';
// ...
Ns.run('ping', 'google.com', 3)
.then((result) => {
console.log(result); // 3 line
})
.catch((e) => {
console.error(e);
});
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library