
Research
/Security News
npm Author Qix Compromised via Phishing Email in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
react-native-wifi-light
Advanced tools
Wifi iteractive for react-native
npm i react-native-wifi-light --save
You need use enable Access WIFI Information
, with correct profile. Hotspot Configuration
is required in order to connect to networks.
You need put "Privacy - Location When In Use Usage Description" or "Privacy - Location Always and When In Use Usage Description" in Settings -> info
ACCESS_FINE_LOCATION
permissionSince Android 6, you must request the ACCESS_FINE_LOCATION
permission at runtime to use the device's Wi-Fi scanning and managing capabilities. In order to accomplish this, you can use the PermissionsAndroid API or React Native Permissions.
Example:
import { PermissionsAndroid } from 'react-native';
const granted = await PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION,
{
title: 'Location permission is required for WiFi connections',
message:
'This app needs location permission as this is required ' +
'to scan for wifi networks.',
buttonNegative: 'DENY',
buttonPositive: 'ALLOW',
},
);
if (granted === PermissionsAndroid.RESULTS.GRANTED) {
// You can now use react-native-wifi-reborn
} else {
// Permission denied
}
import Wifi from "react-native-wifi-light";
componentDidMount(){
PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION,
{
title: 'Location permission is required for WiFi connections',
message:
'This app needs location permission as this is required ' +
'to scan for wifi networks.',
buttonNegative: 'DENY',
buttonPositive: 'ALLOW',
},
)
.then((res) => {
if (res === PermissionsAndroid.RESULTS.GRANTED) {
Wifi.onScanResults = (mess) => {
this.listWifi = JSON.parse(mess.data);
console.log(this.listWifi);
this.setState({
isUpdateView: !this.state.isUpdateView,
});
};
Wifi.getWifiList();
} else {
}
})
.catch((err) => {});
}
The api documentation is in progress.
The following methods work on both Android and iOS
getWifiList(): Promise<Array<Any>>
Returns a promise that resolves a list of available Wifi SSIDs.
startScan(): Promise<Array<Any>>
Similar to getWifiList
but it forcefully starts a new WiFi scan and only passes the results when the scan is done.
onScanResults: callback(data: any)
The event wil be executed when list wifi is ready
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
FAQs
Wifi iteractive for react-native
We found that react-native-wifi-light demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.