
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
rnkit-code-push
Advanced tools
Push code updates to your react-native apps. React Native.
First, cd to your RN project directory, and install RNMK through rnpm . If you don't have rnpm, you can install RNMK from npm with the command npm i -S rnkit-code-push and link it manually (see below).
rnpm install rnkit-code-push
$npm install -S rnkit-code-push
$react-native link rnkit-code-push
node_modules/rnkit-code-push/ios/RNKitCodePush.xcodeproj to your xcode project, usually under the Libraries grouplibRNKitASPickerView.a (from Products under RNKitCodePush.xcodeproj) to build target's Linked Frameworks and Libraries listrnpm install rnkit-code-push
$npm install -S rnkit-code-push
$react-native link rnkit-code-push
android/settings.gradle:include ':rnkit-code-push'
project(':rnkit-code-push').projectDir = new File(rootProject.projectDir, '../node_modules/rnkit-code-push/android')
android/build.gradledependencies {
...
compile project(':rnkit-code-push')
}
import io.rnkit.codepush.UpdatePackage; and register it in your MainActivity (or equivalent, RN >= 0.32 MainApplication.java):@Override
protected List<ReactPackage> getPackages() {
return Arrays.asList(
new MainReactPackage(),
new UpdatePackage()
);
}
Finally, you're good to go, feel free to require rnkit-code-push in your JS files.
Have fun! :metal:
@reactnativecn - react-native-pushy ReactNative中文网推出的代码热更新服务
此项目代码fork自 react-native-pushy
Feel free to contact me or create an issue
made with ♥
FAQs
push code to your react native apps
We found that rnkit-code-push 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.