Config Plugins
@expo/config-plugins
A library for Expo config plugins
React Native Libraries
json
expo
react-native
react
@expo/config-plugins
React Native Libraries
javascript
npm
frontend
open source
Stars
870
Weekly
10.0M
Open issues
11
Bundle
~15 kB
Installation
npm install @expo/config-pluginsCode example
import { View, Text, StyleSheet } from "react-native";
import { ConfigPlugins } from "@expo/config-plugins";
export function Example() {
return (
<View style={styles.box}>
<Text style={styles.title}>Config Plugins</Text>
<ConfigPlugins />
</View>
);
}
const styles = StyleSheet.create({
box: { flex: 1, alignItems: "center", justifyContent: "center", gap: 8 },
title: { fontSize: 18, fontWeight: "600" },
});Pros & cons
Pros
- Actively maintained by ide
- 10.0M weekly downloads. Battle tested
- First-class TypeScript definitions
- MIT licensed
Considerations
- Adds roughly ~15 kB to your bundle
- Needs client-only rendering in SSR frameworks
- 11 open issues on GitHub