
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
react-native-wifi-checker
Advanced tools
Get a list of available Wifi connections
... but only for Android right now
npm install react-native-wifi-checker
Add the following lines to android/settings.gradle
include ':react-native-wifi-checker'
project(':react-native-wifi-checker').projectDir = new File(settingsDir, '../node_modules/react-native-wifi-checker/android')
Add also in your dependencies in android/app/build.gradle
compile project(':react-native-wifi-checker')
Don't forget to register the module in MainActivity.java
import com.rayglaeske.react.wifi.WifiCheckerPackage; // <--- import
public class MainActivity extends Activity implements DefaultHardwareBackBtnHandler {
......
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mReactRootView = new ReactRootView(this);
mReactInstanceManager = ReactInstanceManager.builder()
.setApplication(getApplication())
.setBundleAssetName("index.android.bundle")
.setJSMainModuleName("index.android")
.addPackage(new MainReactPackage())
.addPackage(new WifiCheckerPackage()) // <------ add this line to yout MainActivity class
.setUseDeveloperSupport(BuildConfig.DEBUG)
.setInitialLifecycleState(LifecycleState.RESUMED)
.build();
mReactRootView.startReactApplication(mReactInstanceManager, "AndroidRNSample", null);
setContentView(mReactRootView);
}
......
}
So I have to check ObjectiveC right?
var wifi = require('react-native-wifi-checker');
// get the current wifi list
wifi.getWifiList()
.then((wifiList) => {
// do something with the list for example
console.log(wifiList);
}).done();
// I also implented a scan
wifi.scan()
.then((scanned) => {
if (scanned)
console.log('cool we did a scan');
}).done();
FAQs
Get a list of available Wifi connections
We found that react-native-wifi-checker 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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.