
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.
@native-base/next-adapter
Advanced tools
This project was designed to make integration of nativebase in next apps easier
Next.js is a React framework that provides simple page-based routing as well as server-side rendering. To use Next.js with native-base for web we recommend that you use a library called @native-base/next-adapter to handle the configuration and integration of the tools.
yarn add @native-base/next-adapter next-compose-plugins next-transpile-modules next-fonts -D
yarn add react-native-web native-base react-native react-native-svg react-native-safe-area-context
Re-export the custom Document component in the pages/_document.js file of your NextJs project.
react-native-web styling works.mkdir pages; touch pages/_document.jspages/_document.js
export { default } from '@native-base/next-adapter/document';
Update next.config.json with below code
Custom withNativebase function implements withPlugins function from next-compose-plugins.
WithNativebase function takes in 2 parameters :
type withNativebaseParam = {
config: ConfigType;
phase?: Array;
}
type ConfigType = {
dependencies?: Array<string>;
plugins?: Array<function>;
nextConfig?: Object;
};
[next-transpile-modules](https://github.com/martpie/next-transpile-modules) .const { withNativebase } = require("@native-base/next-adapter");
module.exports = withNativebase({
dependencies: [
],
});
const { withNativebase } = require("@native-base/next-adapter");
const sass = require("@zeit/next-sass");
module.exports = withNativebase({
plugins: [[sass]],
});
const { withNativebase } = require("@native-base/next-adapter");
module.exports = withNativebase({
nextConfig: {
projectRoot: __dirname,
webpack: (config, options) => {
config.resolve.alias = {
...(config.resolve.alias || {}),
"react-native$": "react-native-web",
};
config.resolve.extensions = [
".web.js",
".web.ts",
".web.tsx",
...config.resolve.extensions,
];
return config;
},
},
});
If the plugin should only be applied in specific phases, you can specify them here. You can use all phases next.js provides.
const withPlugins = require('next-compose-plugins');
const { PHASE_DEVELOPMENT_SERVER, PHASE_PRODUCTION_BUILD } = require('next/constants');
const sass = require('@zeit/next-sass');
module.exports = withPlugins([
[sass, {
cssModules: true,
cssLoaderOptions: {
localIdentName: '[path]___[local]___[hash:base64:5]',
},
}, [PHASE_DEVELOPMENT_SERVER, PHASE_PRODUCTION_BUILD]],
]);
screen-recording-2022-01-25-at-15211-pm_5Y7ZUfga (1).mp4
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature')git push origin feature/AmazingFeature)FAQs
1. About The Project 2. Built With 3. Usage 4. Contributing
We found that @native-base/next-adapter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 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
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.