
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
reactnativecomponents
Advanced tools
React Native Components Library, 封装常用的组件,提供IOS和Android统一的API接口
数据访问API
构造一个Database对象
databaseName 数据库名字(默认:REACT_NATIVE_DEFAULT_DATABASE_NAME)
let db = new Database(); let myDb = new Database('myDB');
let db = new Database();
let collection = db.collection('user_collection');
let user = {
age: 19
};
await collection.insert(user);
user = await collection.findOne();
user.name = 'Hello';
collection.update(user);
await collection.delete(user);
媒体访问工具
需要先链接 RCTCameraRoll 库,然后在链接 SitbRCTMediaMananger库
SitbRCTMediaMananger库在 ~/react-native-components/ios/SitbRCTMediaMananger
git clone git@github.com:sitb-software/ReactNativeComponents.git
cd ReactNativeComponents/Examples && npm install
//android
react-native run-android
react-native run-ios
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
FAQs
React Native Components
We found that reactnativecomponents demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.