
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
kiwi-bundle
Advanced tools

You will need NodeJS to be installed : https://nodejs.org/en/download/
For Android builds, Java and Android Studio are required
For iOS builds, you need to have Xcode installed on your Mac
Optionally you can install yarn in replacement of npm by running npm install -g yarn
Finally, if you do not have a text editor yet, give VSCode a try : https://code.visualstudio.com
Create a ./package.json file :
{
"name": "kiwibundle",
"version": "1.0.0",
"kiwi": {
"android": {
"package": "cc.blueforest.kiwibundle",
"build": 1
},
"ios": {
"bundle": "cc.blueforest.kiwibundle",
"build": 1
}
},
"scripts": {
"start": "kiwi start",
"build": "kiwi build"
},
"dependencies": {
"kiwi-bundle": "4.6.3-18"
},
"devDependencies": {
"kiwi-bundle-dev": "4.6.3-18"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
Put your own values on "name" and "kiwi.android.package", then run npm install or yarn install
To start a local server, run npm run start web or yarn start web
To build static files, run npm run build web or yarn build web
To start development environment :
npm run start metro or yarn start metronpm run start android or yarn start androidTo build production files, run npm run build android or yarn build android
Before your first start, you will need to run pod install in ./ios to install CocoaPods dependencies
Then run npm run start ios or yarn start ios
import * as Kiwi from "kiwi-bundle"
Kiwi.App({
key: "kiwibundle",
routes: { // the router will check the FIRST MATCHING ROUTE
root: { // this is the default route if no other matches
path: "/", // http://localhost:3000
},
dir: { // all routes MUST start with /
path: "/dir", // http://localhost:3000/dirè
},
dynamic: { // dynamic routes are supported with props
path: "/dir/{dynamic}", // http://localhost:3000/dir/test (props = { dynamic: "test" })
},
subdomain: { // before the first /, you can specify a subdomain
path: "subdomain/", // http://subdomain.localhost:3000
},
testSubdomain: { // you can use as many subdomains as you want
path: "test.subdomain", // http://test.subdomain.localhost:3000
},
dynamicSubdomain: { // dynamic subdomains are supported with props
path: "{domain}.subdomain/dir", // http://a.subdomain.localhost:3000/dir (props = { domain: "a" })
},
},
})
FAQs
A minimalistic React environment for all your cross-platform applications
We found that kiwi-bundle 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.