
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.
kiwi-bundle-react
Advanced tools
- out-of-the box configurations for [TypeScript](https://github.com/microsoft/TypeScript), [React](https://github.com/facebook/react), [React Navigation](https://github.com/react-navigation), [Babel](https://github.com/babel/babel), [ESLint](https://githu

NodeJS needs 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, in replacement of npm, you can install yarn by running npm install -g yarn
If you want Prettier as a code formatter, you will need to install it : https://prettier.io/docs/en/install.html
Finally, if you do not have a text editor yet, give VSCode a try : https://code.visualstudio.com
Create a ./package.json file :
{
"name": "example",
"version": "1.0.0",
"scripts": {
"start": "kiwi start",
"test": "kiwi test",
"build": "kiwi build",
"clean": "kiwi clean",
"postinstall": "kiwi postinstall"
},
"bundles": {
"kiwi-bundle": {
"options": {
"app": {
"key": "example",
"name": "Example App"
}
}
}
},
"devDependencies": {
"kiwi-bundle": "3.2.11",
"kiwi-bundle-react": "2.1.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
Then run npm install or yarn install
Before launching your application you will need to create some initial files in your ./src directory
In the demo directory we have written an overview of how to use the main Kiwi Bundle React capabilities through simple examples
You can find an online version of the result right here : https://kiwi-bundle-react.demo.blueforest.cc
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
To start Jest and test your .test.ts files, run npm run test or yarn test
Run npm run clean or yarn clean
FAQs
- out-of-the box configurations for [TypeScript](https://github.com/microsoft/TypeScript), [React](https://github.com/facebook/react), [React Navigation](https://github.com/react-navigation), [Babel](https://github.com/babel/babel), [ESLint](https://githu
The npm package kiwi-bundle-react receives a total of 8 weekly downloads. As such, kiwi-bundle-react popularity was classified as not popular.
We found that kiwi-bundle-react 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.