From 294dec7eb6e84003bf4f679be089acc944461d71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20M=C3=BCller?= Date: Sun, 19 Oct 2025 17:44:35 +0200 Subject: [PATCH 1/6] add basic detection for Expo Config Plugins, with filter and UI. configPlugin is a boolean or string (to support 3rd Party Config Plugins) --- components/Filters/helpers.ts | 4 +++ components/Icons/index.tsx | 15 ++++++++ components/Library/ConfigPlugin.tsx | 33 +++++++++++++++++ components/Library/MetaData.tsx | 56 ++++++++++++++++++++++------- pages/api/libraries/index.ts | 1 + react-native-libraries.schema.json | 13 +++++++ scripts/fetch-github-data.ts | 2 ++ types/index.ts | 3 ++ util/configPluginStatus.ts | 6 ++++ util/hasConfigPlugin.ts | 13 +++++++ util/search.ts | 6 ++++ 11 files changed, 139 insertions(+), 13 deletions(-) create mode 100644 components/Library/ConfigPlugin.tsx create mode 100644 util/configPluginStatus.ts create mode 100644 util/hasConfigPlugin.ts diff --git a/components/Filters/helpers.ts b/components/Filters/helpers.ts index 58d49ad28..92684af82 100644 --- a/components/Filters/helpers.ts +++ b/components/Filters/helpers.ts @@ -56,6 +56,10 @@ export const FILTER_STATUS: FilterParamsType[] = [ param: 'hasNativeCode', title: 'Uses native code', }, + { + param: 'configPlugin', + title: 'Has Expo Config Plugin', + }, { param: 'hasExample', title: 'Has example', diff --git a/components/Icons/index.tsx b/components/Icons/index.tsx index 15e90568b..7b62e84f8 100644 --- a/components/Icons/index.tsx +++ b/components/Icons/index.tsx @@ -458,6 +458,21 @@ export function NativeCode({ width = 18, height = 22, fill = colors.black }: Ico ); } +export function ConfigPlugin({ width = 18, height = 22, fill = colors.black }: IconProps) { + return ( + + + + + ); +} + export function PackageSize({ width = 18, height = 18, fill = colors.black }: IconProps) { return ( diff --git a/components/Library/ConfigPlugin.tsx b/components/Library/ConfigPlugin.tsx new file mode 100644 index 000000000..967453471 --- /dev/null +++ b/components/Library/ConfigPlugin.tsx @@ -0,0 +1,33 @@ +import { type StyleProp, type TextStyle } from 'react-native'; + +import { A, P } from '~/common/styleguide'; + +export const ConfigPluginContent = ({ + configPlugin, + linkStyles, + paragraphStyles, + hoverStyle, +}: { + configPlugin?: string | boolean; + hoverStyle?: StyleProp; + linkStyles?: StyleProp; + paragraphStyles?: StyleProp; +}) => { + const url = typeof configPlugin === 'string' ? configPlugin : undefined; + if (url) { + return ( + + Config plugin + + ); + } + return

Config plugin

; +}; + +export const getConfigPluginText = ({ configPlugin }: { configPlugin?: string | boolean }) => { + if (typeof configPlugin === 'string') { + return `Expo Config Plugin available as a separate package`; + } else if (configPlugin) { + return 'Expo config plugin included'; + } +}; diff --git a/components/Library/MetaData.tsx b/components/Library/MetaData.tsx index 487ffd8dc..0f6d46018 100644 --- a/components/Library/MetaData.tsx +++ b/components/Library/MetaData.tsx @@ -2,10 +2,12 @@ import { useContext } from 'react'; import { Platform, StyleSheet, View } from 'react-native'; import { colors, A, P, Caption, darkColors } from '~/common/styleguide'; +import { ConfigPluginContent, getConfigPluginText } from '~/components/Library/ConfigPlugin'; import Tooltip from '~/components/Tooltip'; import CustomAppearanceContext from '~/context/CustomAppearanceContext'; import { type LibraryType, type MetadataEntryType } from '~/types'; import { partition } from '~/util/arrays'; +import { getConfigPluginStatus } from '~/util/configPluginStatus'; import { formatBytes } from '~/util/formatBytes'; import { pluralize } from '~/util/strings'; @@ -23,6 +25,7 @@ import { NativeCode, PackageSize, Dependency, + ConfigPlugin, } from '../Icons'; type Props = { @@ -129,7 +132,8 @@ function generateData( ]; } -function generateSecondaryData({ github, examples }: LibraryType, isDark: boolean) { +function generateSecondaryData(library: LibraryType, isDark: boolean): MetadataEntryType[] { + const { github, examples } = library; const secondaryTextColor = { color: isDark ? darkColors.secondary : colors.gray5, }; @@ -140,6 +144,7 @@ function generateSecondaryData({ github, examples }: LibraryType, isDark: boolea textDecorationColor: colors.gray4, color: isDark ? colors.gray3 : colors.gray5, }; + const configPlugin = getConfigPluginStatus(library); return [ github.urls.homepage @@ -174,6 +179,21 @@ function generateSecondaryData({ github, examples }: LibraryType, isDark: boolea content:

Native code

, } : null, + configPlugin + ? { + id: 'configPlugin', + icon: , + content: ( + + ), + tooltip: getConfigPluginText({ configPlugin }), + } + : null, github.hasTypes ? { id: 'types', @@ -213,18 +233,28 @@ export function MetaData({ library, secondary }: Props) { <> {data .filter(entry => !!entry) - .map(({ id, icon, content }, i) => ( - - {icon} - {content} - - ))} + .map(({ id, icon, content, tooltip }, i) => { + const component = ( + + {icon} + {content} + + ); + + return tooltip ? ( + + {tooltip} + + ) : ( + component + ); + })} ); } else { diff --git a/pages/api/libraries/index.ts b/pages/api/libraries/index.ts index 91c012166..478492b58 100644 --- a/pages/api/libraries/index.ts +++ b/pages/api/libraries/index.ts @@ -79,6 +79,7 @@ export default function handler(req: NextApiRequest, res: NextApiResponse) { hasImage: parsedQuery.hasImage, hasTypes: parsedQuery.hasTypes, hasNativeCode: parsedQuery.hasNativeCode, + configPlugin: parsedQuery.configPlugin, isMaintained: parsedQuery.isMaintained, isPopular: parsedQuery.isPopular, isRecommended: parsedQuery.isRecommended, diff --git a/react-native-libraries.schema.json b/react-native-libraries.schema.json index 7a4418512..6e2e09690 100644 --- a/react-native-libraries.schema.json +++ b/react-native-libraries.schema.json @@ -185,6 +185,19 @@ "Only iOS supported" ] }, + "configPlugin": { + "$id": "#/items/properties/configPlugin", + "type": [ + "boolean", + "string" + ], + "title": "Package has Expo config plugin", + "default": false, + "examples": [ + true, + "link to 3rd Party config plugin" + ] + }, "alternatives": { "$id": "#/items/properties/alternatives", "type": "array", diff --git a/scripts/fetch-github-data.ts b/scripts/fetch-github-data.ts index 0e00c2053..1200df0db 100644 --- a/scripts/fetch-github-data.ts +++ b/scripts/fetch-github-data.ts @@ -2,6 +2,7 @@ import { config } from 'dotenv'; import { type LibraryLicenseType, type LibraryType } from '~/types'; import detectModuleType from '~/util/detectModuleType'; +import hasConfigPlugin from '~/util/hasConfigPlugin'; import hasNativeCode from '~/util/hasNativeCode'; import { parseGitHubUrl } from '~/util/parseGitHubUrl'; @@ -202,6 +203,7 @@ function createRepoDataWithResponse(json: any, monorepo: boolean): LibraryType[' newArchitecture: json.newArchitecture, isArchived: json.isArchived, hasNativeCode: hasNativeCode(json.files), + configPlugin: hasConfigPlugin(json.files), moduleType: detectModuleType(json.files, json.pasedPackageJson), }; } diff --git a/types/index.ts b/types/index.ts index 7ce911e00..5b9752ce6 100644 --- a/types/index.ts +++ b/types/index.ts @@ -33,6 +33,7 @@ export type Query = { hasImage?: string; hasTypes?: string; hasNativeCode?: string; + configPlugin?: boolean | string; isMaintained?: string; isPopular?: string; isRecommended?: string; @@ -78,6 +79,7 @@ export type LibraryType = LibraryDataEntryType & { isArchived?: boolean; isPrivate?: boolean; hasNativeCode: boolean; + configPlugin?: boolean | string; moduleType?: 'expo' | 'nitro' | 'turbo'; urls: { repo: string; @@ -138,6 +140,7 @@ export type LibraryDataEntryType = { template?: boolean; newArchitecture?: boolean | 'new-arch-only'; newArchitectureNote?: string; + configPlugin?: boolean | string; alternatives?: string[]; npmPkg?: string; examples?: string[]; diff --git a/util/configPluginStatus.ts b/util/configPluginStatus.ts new file mode 100644 index 000000000..3f7bd362f --- /dev/null +++ b/util/configPluginStatus.ts @@ -0,0 +1,6 @@ +import { type LibraryType } from '~/types'; + +export function getConfigPluginStatus({ configPlugin, github }: LibraryType) { + // Allow overriding the detected values + return configPlugin ?? github.configPlugin; +} diff --git a/util/hasConfigPlugin.ts b/util/hasConfigPlugin.ts new file mode 100644 index 000000000..e90f4fdbd --- /dev/null +++ b/util/hasConfigPlugin.ts @@ -0,0 +1,13 @@ +import { type RepositoryTreeNode } from '~/types'; + +const CONFIG_PLUGIN_FILE_NAME = 'app.plugin.js'; + +export default function hasConfigPlugin(rootFiles: { entries: RepositoryTreeNode[] } | null) { + if (!rootFiles || !rootFiles.entries.length) { + return false; + } + + return rootFiles.entries.some( + node => node.name === CONFIG_PLUGIN_FILE_NAME && node.type === 'blob' + ); +} diff --git a/util/search.ts b/util/search.ts index eb5a7b209..f5986c6d6 100644 --- a/util/search.ts +++ b/util/search.ts @@ -1,4 +1,5 @@ import { type LibraryType, type Query, type QueryFilters } from '~/types'; +import { getConfigPluginStatus } from '~/util/configPluginStatus'; import { getNewArchSupportStatus, NewArchSupportStatus } from './newArchStatus'; import { relevance } from './sorting'; @@ -80,6 +81,7 @@ export function handleFilterLibraries({ hasImage, hasTypes, hasNativeCode, + configPlugin, isMaintained, isPopular, isRecommended, @@ -175,6 +177,10 @@ export function handleFilterLibraries({ return false; } + if (configPlugin && !getConfigPluginStatus(library)) { + return false; + } + const newArchStatus = getNewArchSupportStatus(library); if ( From 331628483b4ea7110a2b0c7b4613a3beff67c5d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20M=C3=BCller?= Date: Sun, 19 Oct 2025 17:46:45 +0200 Subject: [PATCH 2/6] update data to include configPlugin field (for now only as boolean) --- assets/data.json | 20112 +++++++++++++++++++++++++-------------------- 1 file changed, 11227 insertions(+), 8885 deletions(-) diff --git a/assets/data.json b/assets/data.json index b608c44cc..a140e0e4d 100644 --- a/assets/data.json +++ b/assets/data.json @@ -60,12 +60,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-logs", "npm": { - "downloads": 265363, - "weekDownloads": 48199, + "downloads": 252263, + "weekDownloads": 46937, "size": 169609, "latestRelease": "5.5.0", "latestReleaseDate": "2025-09-07T07:05:37.951Z" @@ -75,7 +76,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.158, "topicSearchString": "log logs logger react-native expo error console colors debug file custom levels namespace debugging ios android logging" }, { @@ -134,13 +135,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-gl-image-filters", "npm": { - "downloads": 664, - "weekDownloads": 49, + "downloads": 721, + "weekDownloads": 114, "size": 96162, "latestRelease": "0.5.0", "latestReleaseDate": "2021-08-15T17:42:26.052Z" @@ -151,7 +153,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.437, + "popularity": -1.365, "topicSearchString": "react-native gl-react gl-react-native image-filters gl-react-expo gl-react-dom expo gl opengl react" }, { @@ -203,11 +205,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 2035, - "weekDownloads": 254, + "downloads": 2068, + "weekDownloads": 495, "size": 1353429, "latestRelease": "2.2.2", "latestReleaseDate": "2025-05-20T06:35:59.074Z" @@ -218,7 +221,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.106, + "popularity": 0.204, "topicSearchString": "react-native unicons icons iconscout vector vector-icons" }, { @@ -280,11 +283,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 5651, - "weekDownloads": 1079, + "downloads": 5430, + "weekDownloads": 1193, "size": 229897, "latestRelease": "3.4.0", "latestReleaseDate": "2025-09-08T11:49:40.645Z" @@ -293,7 +297,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.187, "topicSearchString": "react-native image image-editor imageeditor photo photo-editor photoeditor photoeditorsdk photoeditor-sdk sdk ios android photo-editing image-editing image-manipulation" }, { @@ -353,11 +357,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 2784, - "weekDownloads": 502, + "downloads": 2691, + "weekDownloads": 568, "size": 243217, "latestRelease": "3.4.0", "latestReleaseDate": "2025-09-08T11:49:42.691Z" @@ -367,7 +372,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.179, "topicSearchString": "react-native video video-editor videoeditor videoeditorsdk videoeditor-sdk sdk ios android video-editing video-manipulation crop filter" }, { @@ -425,12 +430,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-image-crop-picker", "npm": { - "downloads": 599153, - "weekDownloads": 117207, + "downloads": 578665, + "weekDownloads": 113189, "size": 2764375, "latestRelease": "0.51.0", "latestReleaseDate": "2025-08-08T15:21:19.746Z" @@ -494,13 +500,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-resegmented-control", "npm": { - "downloads": 169, - "weekDownloads": 31, + "downloads": 160, + "weekDownloads": 53, "size": 35854, "latestRelease": "2.4.0", "latestReleaseDate": "2020-07-14T19:44:02.409Z" @@ -510,7 +517,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.341, + "popularity": -1.214, "topicSearchString": "react-native segmented control resegmented uisegmentedcontrol segmentedcontrolios segmented-control" }, { @@ -558,12 +565,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-scales", "npm": { - "downloads": 106, - "weekDownloads": 49, + "downloads": 82, + "weekDownloads": 54, "size": 7115, "latestRelease": "1.0.2", "latestReleaseDate": "2025-02-26T07:58:05.056Z" @@ -573,7 +581,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.432, "topicSearchString": "khtwah step react-native dimensions" }, { @@ -629,12 +637,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-redux", "npm": { - "downloads": 232, - "weekDownloads": 39, + "downloads": 321, + "weekDownloads": 33, "size": 18557, "latestRelease": "1.0.12", "latestReleaseDate": "2023-02-16T10:33:58.211Z" @@ -644,7 +653,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.856, + "popularity": -0.912, "topicSearchString": "khtwah reactnative redux react-redux redux-persist react react-native react-hooks reactjs redux-thunk redux-store redux-actions" }, { @@ -689,11 +698,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 3, + "downloads": 57, "weekDownloads": 0, "size": 51594, "latestRelease": "1.1.3", @@ -755,12 +765,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-toastboard", "npm": { - "downloads": 117, - "weekDownloads": 30, + "downloads": 213, + "weekDownloads": 13, "size": 38621, "latestRelease": "2.0.4", "latestReleaseDate": "2025-01-02T15:49:14.715Z" @@ -770,7 +781,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.528, + "popularity": -0.698, "topicSearchString": "native react react-native toast toastboard toaster notifications" }, { @@ -809,7 +820,7 @@ "forks": 350, "issues": 22, "subscribers": 44, - "stars": 1096, + "stars": 1097, "dependencies": 3 }, "name": "stream-chat-react-native", @@ -820,11 +831,12 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 93060, - "weekDownloads": 26482, + "downloads": 83441, + "weekDownloads": 20299, "size": 166882, "latestRelease": "8.6.2", "latestReleaseDate": "2025-10-16T11:52:21.513Z" @@ -835,7 +847,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.242, + "popularity": 0.207, "topicSearchString": "" }, { @@ -877,7 +889,7 @@ "forks": 350, "issues": 22, "subscribers": 44, - "stars": 1096, + "stars": 1097, "dependencies": 2 }, "name": "stream-chat-expo", @@ -888,11 +900,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 107496, - "weekDownloads": 19208, + "downloads": 104948, + "weekDownloads": 21227, "size": 45804, "latestRelease": "8.6.2", "latestReleaseDate": "2025-10-16T11:52:23.324Z" @@ -904,7 +917,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.172, "topicSearchString": "" }, { @@ -957,13 +970,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-units", "npm": { - "downloads": 66, - "weekDownloads": 26, + "downloads": 47, + "weekDownloads": 21, "size": 3931, "latestRelease": "1.0.0", "latestReleaseDate": "2019-03-26T17:18:13.986Z" @@ -973,7 +987,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.153, + "popularity": -1.118, "topicSearchString": "react-native units pixels grid scale javascript ios css responsive" }, { @@ -1027,13 +1041,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-shake-event", "npm": { - "downloads": 49, - "weekDownloads": 14, + "downloads": 67, + "weekDownloads": 6, "latestRelease": "4.0.1", "latestReleaseDate": "2017-08-10T07:19:18.918Z" }, @@ -1042,7 +1057,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.495, + "popularity": -1.67, "topicSearchString": "android ios native react react-component react-native component shake shake-event shake-event-android shake-event-ios" }, { @@ -1067,7 +1082,7 @@ "forks": 1055, "issues": 364, "subscribers": 59, - "stars": 5665, + "stars": 5664, "dependencies": 0 }, "name": "react-native-splash-screen", @@ -1096,13 +1111,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-splash-screen", "npm": { - "downloads": 501132, - "weekDownloads": 96779, + "downloads": 480678, + "weekDownloads": 91850, "size": 40002, "latestRelease": "3.3.0", "latestReleaseDate": "2021-12-07T05:32:39.596Z" @@ -1116,7 +1132,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.588, "topicSearchString": "react-native component splash-screen splashscreen splash launch-screen launchscreen android ios launchimage" }, { @@ -1173,12 +1189,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "pinar", "npm": { - "downloads": 15687, - "weekDownloads": 2902, + "downloads": 14213, + "weekDownloads": 2675, "size": 76897, "latestRelease": "0.12.2", "latestReleaseDate": "2023-04-24T20:59:43.911Z" @@ -1189,7 +1206,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.16, "topicSearchString": "react react-component react-native reactnative ios android carousel carousel-component slider swiper scrollview typescript a11y" }, { @@ -1242,13 +1259,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-google-photos", "npm": { - "downloads": 45, - "weekDownloads": 5, + "downloads": 77, + "weekDownloads": 3, "size": 10211, "latestRelease": "3.0.5", "latestReleaseDate": "2019-11-15T17:03:58.769Z" @@ -1258,7 +1276,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.65, + "popularity": -1.717, "topicSearchString": "react-native video mp4upload google-photos downloader ios android blogger cloudvideo" }, { @@ -1308,13 +1326,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-reader", "npm": { - "downloads": 135, - "weekDownloads": 24, + "downloads": 1032, + "weekDownloads": 20, "size": 19192, "latestRelease": "0.9.4", "latestReleaseDate": "2023-06-24T16:11:48.956Z" @@ -1324,7 +1343,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.345, + "popularity": -0.733, "topicSearchString": "readability reader react-native ios-reader android-reader safari-reader" }, { @@ -1376,12 +1395,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-columns", "npm": { - "downloads": 22, - "weekDownloads": 10, + "downloads": 23, + "weekDownloads": 6, "size": 92673, "latestRelease": "1.0.6", "latestReleaseDate": "2018-11-30T03:18:07.921Z" @@ -1391,7 +1411,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, + "popularity": -1.51, "topicSearchString": "android column columns ios react-native component resize" }, { @@ -1418,7 +1438,7 @@ "forks": 118, "issues": 87, "subscribers": 6, - "stars": 1705, + "stars": 1706, "dependencies": 4 }, "name": "react-native-svg-transformer", @@ -1441,12 +1461,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-svg-transformer", "npm": { - "downloads": 2794229, - "weekDownloads": 520793, + "downloads": 2700816, + "weekDownloads": 518493, "size": 15412, "latestRelease": "1.5.1", "latestReleaseDate": "2025-05-02T17:07:28.039Z" @@ -1458,7 +1479,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.163, "topicSearchString": "react-native svg loader transformer" }, { @@ -1505,13 +1526,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-svg-asset-plugin", "npm": { - "downloads": 226197, - "weekDownloads": 39984, + "downloads": 216101, + "weekDownloads": 51534, "size": 19377, "latestRelease": "0.5.0", "latestReleaseDate": "2020-07-26T07:45:30.838Z" @@ -1522,7 +1544,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.6, + "popularity": -0.547, "topicSearchString": "react-native svg" }, { @@ -1579,12 +1601,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-apple-ads-attribution", "npm": { - "downloads": 15, - "weekDownloads": 2, + "downloads": 16, + "weekDownloads": 1, "size": 13910, "latestRelease": "1.0.2", "latestReleaseDate": "2018-10-18T21:16:04.927Z" @@ -1594,7 +1617,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.617, + "popularity": -1.683, "topicSearchString": "react-native react-component react-components react native ios component apple search ads attribution api iad attributiondetails" }, { @@ -1647,13 +1670,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-formawesome", "npm": { - "downloads": 563, - "weekDownloads": 3, + "downloads": 587, + "weekDownloads": 5, "size": 54240, "latestRelease": "1.0.1", "latestReleaseDate": "2019-06-13T14:02:07.321Z" @@ -1663,7 +1687,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.745, + "popularity": -1.743, "topicSearchString": "ui native react react-native validation class-validator validate.js form react-formawesome-core" }, { @@ -1719,12 +1743,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-secure-storage", "npm": { - "downloads": 12036, - "weekDownloads": 2815, + "downloads": 11317, + "weekDownloads": 2286, "size": 69030, "latestRelease": "3.0.1", "latestReleaseDate": "2024-01-29T13:14:41.158Z" @@ -1735,7 +1760,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.199, + "popularity": 0.172, "topicSearchString": "react-native ios android keychain-service keystore-service device-security keystore keychain secure-preferences token react-token multiple-values multiple-keys" }, { @@ -1778,13 +1803,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sideswipe", "npm": { - "downloads": 2364, - "weekDownloads": 516, + "downloads": 2367, + "weekDownloads": 456, "size": 200099, "latestRelease": "1.5.0", "latestReleaseDate": "2019-05-28T19:13:26.464Z" @@ -1796,7 +1822,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.564, + "popularity": -0.586, "topicSearchString": "" }, { @@ -1840,13 +1866,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-navybits-date-time-picker", "npm": { - "downloads": 115, - "weekDownloads": 6, + "downloads": 177, + "weekDownloads": 5, "size": 30605899, "latestRelease": "1.2.3", "latestReleaseDate": "2020-04-02T14:14:23.906Z" @@ -1856,7 +1883,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.456, + "popularity": -1.476, "topicSearchString": "react-native" }, { @@ -1909,13 +1936,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-image-cache-wrapper", "npm": { - "downloads": 436, - "weekDownloads": 124, + "downloads": 398, + "weekDownloads": 126, "size": 17966, "latestRelease": "1.0.7", "latestReleaseDate": "2020-03-31T15:20:41.398Z" @@ -1925,7 +1953,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.257, + "popularity": -1.229, "topicSearchString": "cache cached-image image-cache image imagebackground react-component react-native android ios" }, { @@ -1980,12 +2008,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-super-ellipse-mask", "npm": { - "downloads": 177, + "downloads": 185, "weekDownloads": 42, "size": 43811, "latestRelease": "1.0.7", @@ -1996,7 +2025,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.295, + "popularity": -1.305, "topicSearchString": "react-native squircle smooth rounded superellipse curvature continuity mask view apple smooth-corners corners rounded-corners" }, { @@ -2042,12 +2071,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-file-selector", "npm": { - "downloads": 192, + "downloads": 211, "weekDownloads": 35, "size": 413172, "latestRelease": "1.0.2", @@ -2059,7 +2089,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.344, + "popularity": -1.357, "topicSearchString": "react-native andriod ios" }, { @@ -2106,7 +2136,8 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-material-shadows", "npm": { @@ -2169,12 +2200,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-about-libraries", "npm": { - "downloads": 872, - "weekDownloads": 130, + "downloads": 832, + "weekDownloads": 126, "size": 216599, "latestRelease": "0.0.6", "latestReleaseDate": "2018-06-29T10:48:39.013Z" @@ -2184,7 +2216,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.373, + "popularity": -1.371, "topicSearchString": "react-native android ios" }, { @@ -2231,12 +2263,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-siri-wave-view", "npm": { - "downloads": 6371, - "weekDownloads": 1332, + "downloads": 6147, + "weekDownloads": 1779, "size": 4527536, "latestRelease": "0.0.9", "latestReleaseDate": "2018-06-29T06:21:04.636Z" @@ -2247,7 +2280,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.572, + "popularity": -0.504, "topicSearchString": "react-native android ios" }, { @@ -2293,13 +2326,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-lock-screen", "npm": { - "downloads": 70, - "weekDownloads": 10, + "downloads": 176, + "weekDownloads": 12, "size": 3765017, "latestRelease": "1.0.2", "latestReleaseDate": "2021-06-22T08:07:50.181Z" @@ -2309,7 +2343,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.375, + "popularity": -1.441, "topicSearchString": "react-native android ios" }, { @@ -2355,13 +2389,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-styled-dialogs", "npm": { - "downloads": 120, - "weekDownloads": 3, + "downloads": 134, + "weekDownloads": 25, "size": 3845476, "latestRelease": "1.0.2", "latestReleaseDate": "2021-07-05T13:30:27.002Z" @@ -2371,7 +2406,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.479, + "popularity": -1.339, "topicSearchString": "react-native android ios" }, { @@ -2418,12 +2453,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-morphing-text", "npm": { - "downloads": 142, - "weekDownloads": 2, + "downloads": 146, + "weekDownloads": 6, "size": 560625, "latestRelease": "0.0.4", "latestReleaseDate": "2018-05-15T11:11:42.940Z" @@ -2433,7 +2469,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.488, + "popularity": -1.465, "topicSearchString": "react-native android ios" }, { @@ -2480,13 +2516,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-chip-view", "npm": { - "downloads": 2730, - "weekDownloads": 258, + "downloads": 2695, + "weekDownloads": 233, "size": 1756711, "latestRelease": "0.0.12", "latestReleaseDate": "2019-05-18T15:03:50.189Z" @@ -2496,7 +2533,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.67, + "popularity": -0.676, "topicSearchString": "react-native android ios" }, { @@ -2551,12 +2588,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "instabug-reactnative", "npm": { - "downloads": 67332, - "weekDownloads": 12516, + "downloads": 67463, + "weekDownloads": 12551, "size": 2951899, "latestRelease": "16.0.3", "latestReleaseDate": "2025-09-11T13:21:04.948Z" @@ -2628,12 +2666,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-tableview-simple", "npm": { - "downloads": 10144, - "weekDownloads": 1188, + "downloads": 10820, + "weekDownloads": 1463, "size": 234587, "latestRelease": "4.4.1", "latestReleaseDate": "2024-06-10T16:25:13.373Z" @@ -2644,7 +2683,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.1, + "popularity": 0.115, "topicSearchString": "react-native react-component tableview uitableview crossplatform ios android javascript react css" }, { @@ -2696,12 +2735,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-localizable", "npm": { - "downloads": 17, - "weekDownloads": 5, + "downloads": 24, + "weekDownloads": 8, "size": 113603, "latestRelease": "1.0.1", "latestReleaseDate": "2018-02-16T00:33:30.706Z" @@ -2711,7 +2751,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.5, + "popularity": -1.43, "topicSearchString": "react-native react-component localizable ios android localization native javascript" }, { @@ -2762,12 +2802,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fbsdk", "npm": { - "downloads": 12530, - "weekDownloads": 3242, + "downloads": 11416, + "weekDownloads": 2124, "size": 634846, "latestRelease": "3.0.0", "latestReleaseDate": "2020-11-23T21:21:09.075Z" @@ -2782,7 +2823,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.53, + "popularity": -0.592, "topicSearchString": "react react-native react-component ios android facebook core" }, { @@ -2829,12 +2870,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-simple-toast", "npm": { - "downloads": 102917, - "weekDownloads": 18788, + "downloads": 98436, + "weekDownloads": 18254, "size": 53770, "latestRelease": "3.3.2", "latestReleaseDate": "2025-01-03T13:07:29.587Z" @@ -2845,7 +2887,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.158, "topicSearchString": "react-native ios android" }, { @@ -2899,12 +2941,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-navigation-header-buttons", "npm": { - "downloads": 22547, - "weekDownloads": 3417, + "downloads": 23551, + "weekDownloads": 2961, "size": 303649, "latestRelease": "13.0.0", "latestReleaseDate": "2024-11-24T18:14:52.213Z" @@ -2916,7 +2959,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.129, + "popularity": 0.107, "topicSearchString": "react-native ios android react-navigation hacktoberfest" }, { @@ -2974,13 +3017,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-d3multiline-chart", "npm": { - "downloads": 200, - "weekDownloads": 46, + "downloads": 427, + "weekDownloads": 33, "size": 2113779, "latestRelease": "1.0.19", "latestReleaseDate": "2019-09-12T16:15:01.163Z" @@ -2990,7 +3034,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.304, + "popularity": -1.434, "topicSearchString": "animated multiline drawing line scatterpoint charts d3.js d3v4 android ios svg multiline-graph line-graph scatterpoint-graph d3js" }, { @@ -3046,13 +3090,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bottom-toolbar", "npm": { - "downloads": 494, - "weekDownloads": 58, + "downloads": 591, + "weekDownloads": 77, "size": 10721, "latestRelease": "4.3.0", "latestReleaseDate": "2019-12-02T08:11:56.698Z" @@ -3062,7 +3107,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, + "popularity": -1.389, "topicSearchString": "react native ios toolbar bottom bar tabs react-native menubar menu tabbar android" }, { @@ -3110,13 +3155,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-navigation-props-mapper", "npm": { - "downloads": 10068, - "weekDownloads": 1788, + "downloads": 9968, + "weekDownloads": 1945, "size": 37367, "latestRelease": "3.1.0", "latestReleaseDate": "2022-02-17T18:06:27.540Z" @@ -3127,7 +3173,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.584, "topicSearchString": "react-native ios android" }, { @@ -3178,12 +3224,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "react-native-add-calendar-event", "npm": { - "downloads": 79882, - "weekDownloads": 13914, + "downloads": 77013, + "weekDownloads": 14412, "size": 120131, "latestRelease": "5.0.0", "latestReleaseDate": "2024-01-01T16:42:27.071Z" @@ -3194,7 +3241,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.159, "topicSearchString": "react-native calendar event events android ios hacktoberfest" }, { @@ -3240,13 +3287,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bottom-action-sheet", "npm": { - "downloads": 175, - "weekDownloads": 30, + "downloads": 274, + "weekDownloads": 32, "size": 78722, "latestRelease": "2.0.2", "latestReleaseDate": "2021-06-29T11:25:23.245Z" @@ -3257,7 +3305,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.354, + "popularity": -1.4, "topicSearchString": "react-native android ios" }, { @@ -3287,10 +3335,10 @@ "updatedAt": "2025-07-17T16:09:37Z", "createdAt": "2016-10-19T05:56:53Z", "pushedAt": "2025-07-17T16:09:37Z", - "forks": 2139, - "issues": 264, - "subscribers": 120, - "stars": 14031, + "forks": 2141, + "issues": 265, + "subscribers": 121, + "stars": 14041, "dependencies": 3 }, "name": "react-native-paper", @@ -3318,12 +3366,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-paper", "npm": { - "downloads": 1359522, - "weekDownloads": 256494, + "downloads": 1328688, + "weekDownloads": 249739, "size": 3763187, "latestRelease": "5.14.5", "latestReleaseDate": "2025-05-20T11:10:03.881Z" @@ -3382,13 +3431,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-popover-menu", "npm": { - "downloads": 513, - "weekDownloads": 53, + "downloads": 761, + "weekDownloads": 68, "size": 86063, "latestRelease": "2.0.2", "latestReleaseDate": "2021-06-28T12:56:27.446Z" @@ -3399,7 +3449,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.412, + "popularity": -1.424, "topicSearchString": "react-native android ios" }, { @@ -3450,13 +3500,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-face-pile", "npm": { - "downloads": 96, - "weekDownloads": 13, + "downloads": 135, + "weekDownloads": 8, "latestRelease": "1.9.0", "latestReleaseDate": "2018-01-18T04:29:19.267Z" }, @@ -3465,7 +3516,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.382, + "popularity": -1.448, "topicSearchString": "facepile face-pile react-native avatar-group avatar-list circle-avatar-list faces" }, { @@ -3514,12 +3565,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-asyncstorage", "npm": { - "downloads": 5, - "weekDownloads": 1, + "downloads": 7, + "weekDownloads": 3, "latestRelease": "1.0.0", "latestReleaseDate": "2017-08-27T15:33:07.306Z" }, @@ -3528,7 +3580,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -0.9, "topicSearchString": "react react-native asyncstorage declarative" }, { @@ -3574,13 +3626,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-shine-button", "npm": { - "downloads": 18, - "weekDownloads": 4, + "downloads": 48, + "weekDownloads": 3, "size": 3259769, "latestRelease": "2.0.0", "latestReleaseDate": "2020-02-21T11:20:22.684Z" @@ -3591,7 +3644,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -1.445, "topicSearchString": "react-native android ios" }, { @@ -3638,12 +3691,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-iconic", "npm": { - "downloads": 13, - "weekDownloads": 2, + "downloads": 31, + "weekDownloads": 0, "size": 116528, "latestRelease": "0.0.9", "latestReleaseDate": "2018-06-29T06:01:14.840Z" @@ -3654,7 +3708,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.367, + "popularity": -1, "topicSearchString": "react-native android ios" }, { @@ -3698,12 +3752,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-download-button", "npm": { - "downloads": 39, + "downloads": 44, "weekDownloads": 12, "size": 63658, "latestRelease": "1.0.0", @@ -3714,7 +3769,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.233, + "popularity": -1.26, "topicSearchString": "react-native" }, { @@ -3760,13 +3815,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-spruce", "npm": { - "downloads": 1130, - "weekDownloads": 84, + "downloads": 1131, + "weekDownloads": 85, "size": 14010875, "latestRelease": "0.0.6", "latestReleaseDate": "2018-05-21T09:28:22.758Z" @@ -3777,7 +3833,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.687, + "popularity": -0.686, "topicSearchString": "react-native android ios" }, { @@ -3835,13 +3891,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-reactive-form", "npm": { - "downloads": 7963, - "weekDownloads": 1016, + "downloads": 9547, + "weekDownloads": 1202, "size": 536377, "latestRelease": "2.0.1", "latestReleaseDate": "2022-12-06T20:46:28.841Z" @@ -3852,7 +3909,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.642, + "popularity": -0.643, "topicSearchString": "forms form reactive reactive-form form-generator form-builder android ios observer subscription react react-native form-controls" }, { @@ -3907,12 +3964,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-typography", "npm": { - "downloads": 42076, - "weekDownloads": 6658, + "downloads": 41303, + "weekDownloads": 8003, "size": 103797, "latestRelease": "1.4.1", "latestReleaseDate": "2019-06-16T15:47:42.349Z" @@ -3924,7 +3982,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.135, + "popularity": 0.165, "topicSearchString": "react-native react typography style styles typeface font typography-themes ios android" }, { @@ -3974,12 +4032,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-buttonex", "npm": { - "downloads": 278, - "weekDownloads": 3, + "downloads": 291, + "weekDownloads": 1, "size": 440712, "latestRelease": "2.0.8", "latestReleaseDate": "2018-05-22T08:05:32.773Z" @@ -3989,7 +4048,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.741, + "popularity": -1.747, "topicSearchString": "button react-native ios android expo" }, { @@ -4037,12 +4096,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-mirror", "npm": { - "downloads": 48, + "downloads": 142, "weekDownloads": 5, "latestRelease": "0.0.21", "latestReleaseDate": "2017-10-29T13:40:18.202Z" @@ -4052,7 +4112,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.659, + "popularity": -1.72, "topicSearchString": "react react-native mirror javascript" }, { @@ -4107,13 +4167,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-viewpager-carousel", "npm": { - "downloads": 418, - "weekDownloads": 96, + "downloads": 740, + "weekDownloads": 106, "size": 1132409, "latestRelease": "0.3.2", "latestReleaseDate": "2019-01-27T22:19:55.062Z" @@ -4123,7 +4184,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.304, + "popularity": -1.378, "topicSearchString": "react react-native viewpager carousel rondell android ios tabbar pager-component swipe swipeview" }, { @@ -4174,13 +4235,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-event-listeners", "npm": { - "downloads": 93692, - "weekDownloads": 16980, + "downloads": 88637, + "weekDownloads": 17165, "size": 17345, "latestRelease": "1.0.7", "latestReleaseDate": "2020-01-14T15:52:40.290Z" @@ -4191,7 +4253,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.585, "topicSearchString": "react react-native event-listeners listeners events event-listener" }, { @@ -4238,13 +4300,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-signature-capture", "npm": { - "downloads": 53204, - "weekDownloads": 12586, + "downloads": 48559, + "weekDownloads": 10690, "size": 220600982, "latestRelease": "0.4.12", "latestReleaseDate": "2021-06-08T02:54:24.738Z" @@ -4257,7 +4320,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.549, + "popularity": -0.563, "topicSearchString": "react-component react-native ios signature" }, { @@ -4280,9 +4343,9 @@ "createdAt": "2017-04-25T15:12:58Z", "pushedAt": "2025-10-16T15:04:59Z", "forks": 585, - "issues": 370, + "issues": 371, "subscribers": 15, - "stars": 1733, + "stars": 1738, "dependencies": 2 }, "name": "react-native-pdf", @@ -4311,12 +4374,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-pdf", "npm": { - "downloads": 1068036, - "weekDownloads": 197257, + "downloads": 1030645, + "weekDownloads": 199024, "size": 288552, "latestRelease": "7.0.3", "latestReleaseDate": "2025-10-16T15:09:02.183Z" @@ -4329,7 +4393,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.164, "topicSearchString": "react-component react-native android ios pdf view viewer java objective-c" }, { @@ -4377,13 +4441,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-multiple-select", "npm": { - "downloads": 21442, - "weekDownloads": 3819, + "downloads": 21190, + "weekDownloads": 3780, "size": 44830, "latestRelease": "0.5.12", "latestReleaseDate": "2022-10-18T23:45:15.060Z" @@ -4396,7 +4461,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.598, "topicSearchString": "reactnative multiselect multi-select react-native" }, { @@ -4422,7 +4487,7 @@ "forks": 261, "issues": 124, "subscribers": 8, - "stars": 787, + "stars": 788, "dependencies": 0 }, "name": "react-native-orientation-locker", @@ -4449,12 +4514,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-orientation-locker", "npm": { - "downloads": 479005, - "weekDownloads": 92701, + "downloads": 455386, + "weekDownloads": 90084, "size": 498704, "latestRelease": "1.7.0", "latestReleaseDate": "2024-04-20T15:16:06.405Z" @@ -4466,7 +4532,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.168, "topicSearchString": "orientation react-native android ios windows screen listener locker" }, { @@ -4488,7 +4554,7 @@ "updatedAt": "2025-09-24T21:55:41Z", "createdAt": "2016-02-19T11:03:31Z", "pushedAt": "2025-09-24T21:55:41Z", - "forks": 367, + "forks": 366, "issues": 67, "subscribers": 49, "stars": 1580, @@ -4524,12 +4590,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-onesignal", "npm": { - "downloads": 310364, - "weekDownloads": 63260, + "downloads": 297467, + "weekDownloads": 58136, "size": 364522, "latestRelease": "5.2.13", "latestReleaseDate": "2025-07-01T20:54:57.093Z" @@ -4541,7 +4608,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.166, "topicSearchString": "react-component react-native ios android notifications push apns fcm gcm onesignal push-notifications mobile onesignal-instructions onesignal-notifications" }, { @@ -4596,12 +4663,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-linkedin-login", "npm": { - "downloads": 2352, - "weekDownloads": 407, + "downloads": 3373, + "weekDownloads": 595, "latestRelease": "1.44.1", "latestReleaseDate": "2017-05-28T16:09:00.081Z" }, @@ -4610,7 +4678,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, + "popularity": -0.6, "topicSearchString": "react react-component react-native native ios android linkedin login sdk linkedin-sdk signin" }, { @@ -4664,12 +4732,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-drawer", "npm": { - "downloads": 35821, - "weekDownloads": 6255, + "downloads": 35160, + "weekDownloads": 5872, "size": 33046, "latestRelease": "2.5.1", "latestReleaseDate": "2018-10-02T17:00:34.305Z" @@ -4682,7 +4751,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": -0.608, "topicSearchString": "react react-native react-component drawer side-menu menu ios android material-design" }, { @@ -4711,7 +4780,7 @@ "forks": 1920, "issues": 293, "subscribers": 109, - "stars": 8605, + "stars": 8607, "dependencies": 0 }, "name": "react-native-image-picker", @@ -4737,12 +4806,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-image-picker", "npm": { - "downloads": 1238849, - "weekDownloads": 236072, + "downloads": 1198370, + "weekDownloads": 233230, "size": 189165, "latestRelease": "8.2.1", "latestReleaseDate": "2025-05-04T08:25:47.097Z" @@ -4755,7 +4825,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.165, "topicSearchString": "react-native image-picker react native image picker" }, { @@ -4784,7 +4854,7 @@ "forks": 210, "issues": 27, "subscribers": 12, - "stars": 1563, + "stars": 1564, "dependencies": 0 }, "name": "react-native-keyboard-spacer", @@ -4810,12 +4880,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-keyboard-spacer", "npm": { - "downloads": 36280, - "weekDownloads": 6116, + "downloads": 35419, + "weekDownloads": 6555, "latestRelease": "0.4.1", "latestReleaseDate": "2017-10-08T07:54:19.900Z" }, @@ -4826,7 +4897,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, + "popularity": -0.593, "topicSearchString": "react-component react-native ios keyboard spacer helper clean-code" }, { @@ -4883,12 +4954,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-mixpanel", "npm": { - "downloads": 7668, - "weekDownloads": 1290, + "downloads": 7630, + "weekDownloads": 1342, "size": 125473, "latestRelease": "1.2.5", "latestReleaseDate": "2020-12-01T16:30:32.601Z" @@ -4899,7 +4971,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, + "popularity": -0.6, "topicSearchString": "react-native react-component tracking mixpanel mixpanel-sdk android ios-app xcode notifications mixpanel-ios-sdk java mobile-app" }, { @@ -4933,10 +5005,10 @@ "updatedAt": "2025-10-13T15:01:58Z", "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-13T15:01:58Z", - "forks": 4930, - "issues": 850, + "forks": 4929, + "issues": 851, "subscribers": 308, - "stars": 24210, + "stars": 24216, "dependencies": 5 }, "name": "@react-navigation/native", @@ -4959,11 +5031,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8550858, - "weekDownloads": 1611003, + "downloads": 8327886, + "weekDownloads": 1597265, "size": 234741, "latestRelease": "7.1.18", "latestReleaseDate": "2025-10-04T21:47:51.238Z" @@ -4977,7 +5050,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.163, "topicSearchString": "react-native react-navigation ios android" }, { @@ -5025,12 +5098,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "native-navigation", "npm": { - "downloads": 112, - "weekDownloads": 2, + "downloads": 134, + "weekDownloads": 0, "latestRelease": "0.2.1", "latestReleaseDate": "2017-04-17T23:03:30.453Z" }, @@ -5041,7 +5115,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.485, + "popularity": -1, "topicSearchString": "react-native react navigation navigator" }, { @@ -5064,9 +5138,9 @@ "createdAt": "2016-03-11T11:22:54Z", "pushedAt": "2025-09-16T08:42:25Z", "forks": 2541, - "issues": 255, + "issues": 257, "subscribers": 475, - "stars": 13142, + "stars": 13141, "dependencies": 8 }, "name": "react-native-navigation", @@ -5090,12 +5164,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-navigation", "npm": { - "downloads": 211886, - "weekDownloads": 36656, + "downloads": 226324, + "weekDownloads": 34005, "size": 4672645, "latestRelease": "8.3.2", "latestReleaseDate": "2025-09-16T08:42:23.184Z" @@ -5108,7 +5183,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.128, "topicSearchString": "react-native navigation navigator hacktoberfest" }, { @@ -5160,13 +5235,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "gl-react-expo", "npm": { - "downloads": 2830, - "weekDownloads": 463, + "downloads": 2984, + "weekDownloads": 406, "size": 17343, "latestRelease": "5.2.1", "latestReleaseDate": "2022-05-28T20:16:25.253Z" @@ -5178,7 +5254,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.611, + "popularity": -0.634, "topicSearchString": "gl-react gl opengl react react-native expo react-component" }, { @@ -5231,13 +5307,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-pages", "npm": { - "downloads": 10347, - "weekDownloads": 2210, + "downloads": 9519, + "weekDownloads": 1834, "size": 17057, "latestRelease": "0.9.0", "latestReleaseDate": "2019-10-07T18:38:59.702Z" @@ -5248,7 +5325,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.568, + "popularity": -0.586, "topicSearchString": "react react-component react-native ios android pageview viewpager pager swiper" }, { @@ -5298,13 +5375,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-page-control", "npm": { - "downloads": 16810, - "weekDownloads": 4980, + "downloads": 13812, + "weekDownloads": 4334, "size": 8234, "latestRelease": "1.1.2", "latestReleaseDate": "2020-02-17T10:31:32.875Z" @@ -5315,7 +5393,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.248, + "popularity": -0.483, "topicSearchString": "react react-native react-component page-control pagecontrol uipagecontrol" }, { @@ -5351,9 +5429,9 @@ "createdAt": "2017-01-27T18:24:50Z", "pushedAt": "2025-09-02T14:36:37Z", "forks": 1747, - "issues": 9, + "issues": 8, "subscribers": 221, - "stars": 17044, + "stars": 17045, "dependencies": 0 }, "name": "lottie-react-native", @@ -5379,11 +5457,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 2598871, - "weekDownloads": 497084, + "downloads": 2499871, + "weekDownloads": 494187, "size": 289361, "latestRelease": "7.3.4", "latestReleaseDate": "2025-09-02T14:36:45.999Z" @@ -5395,7 +5474,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.168, "topicSearchString": "lottie animation react react-native keyframe" }, { @@ -5423,9 +5502,9 @@ "createdAt": "2015-12-29T19:54:20Z", "pushedAt": "2025-10-14T14:17:09Z", "forks": 4696, - "issues": 64, - "subscribers": 213, - "stars": 15743, + "issues": 66, + "subscribers": 212, + "stars": 15746, "dependencies": 1 }, "name": "react-native-maps", @@ -5453,12 +5532,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-maps", "npm": { - "downloads": 1909025, - "weekDownloads": 368796, + "downloads": 1864900, + "weekDownloads": 364726, "size": 1879742, "latestRelease": "1.26.17", "latestReleaseDate": "2025-10-14T14:17:16.130Z" @@ -5470,7 +5550,7 @@ "Known", "Recently updated" ], - "popularity": 0.164, + "popularity": 0.166, "topicSearchString": "react react-native react-component map mapview google-maps mapkit maps" }, { @@ -5526,13 +5606,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-maps-directions", "npm": { - "downloads": 59947, - "weekDownloads": 10530, + "downloads": 58669, + "weekDownloads": 11742, "size": 34838, "latestRelease": "1.9.0", "latestReleaseDate": "2022-07-27T21:51:59.432Z" @@ -5544,7 +5625,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, + "popularity": -0.58, "topicSearchString": "react-native component maps directions google-maps ios android google-maps-api mapkit" }, { @@ -5606,12 +5687,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animatable", "npm": { - "downloads": 2094570, - "weekDownloads": 400869, + "downloads": 2018587, + "weekDownloads": 394610, "size": 59839, "latestRelease": "1.4.0", "latestReleaseDate": "2023-10-26T16:45:30.755Z" @@ -5625,7 +5707,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.166, "topicSearchString": "react-native react-component component react mobile ios android ui fade bounce slide animatable transition animation" }, { @@ -5677,12 +5759,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-calendario", "npm": { - "downloads": 14482, - "weekDownloads": 2171, + "downloads": 14628, + "weekDownloads": 2555, "size": 185917, "latestRelease": "3.5.2", "latestReleaseDate": "2024-04-16T14:44:17.810Z" @@ -5693,7 +5776,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.127, + "popularity": 0.149, "topicSearchString": "react-native calendar android ios typescript" }, { @@ -5727,10 +5810,10 @@ "updatedAt": "2025-06-09T09:42:33Z", "createdAt": "2016-11-11T12:17:27Z", "pushedAt": "2025-06-09T09:42:33Z", - "forks": 2879, + "forks": 2877, "issues": 153, "subscribers": 349, - "stars": 10117, + "stars": 10119, "dependencies": 8 }, "name": "react-native-calendars", @@ -5756,12 +5839,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-calendars", "npm": { - "downloads": 1080496, - "weekDownloads": 202547, + "downloads": 1057710, + "weekDownloads": 200541, "size": 429994, "latestRelease": "1.1313.0", "latestReleaseDate": "2025-06-24T13:09:10.634Z" @@ -5774,7 +5858,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.161, "topicSearchString": "react-native android ios calendar ui-components hacktoberfest" }, { @@ -5829,11 +5913,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 7577431, - "weekDownloads": 1452132, + "downloads": 7384493, + "weekDownloads": 1436784, "size": 6013893, "latestRelease": "15.0.2", "latestReleaseDate": "2025-08-28T13:55:49.146Z" @@ -5845,7 +5930,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.165, "topicSearchString": "expo react-native icons icon-pack" }, { @@ -5900,13 +5985,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-responsive-grid", "npm": { - "downloads": 1836, - "weekDownloads": 311, + "downloads": 3344, + "weekDownloads": 295, "size": 97762, "latestRelease": "0.41.993", "latestReleaseDate": "2020-03-18T01:12:40.847Z" @@ -5917,7 +6003,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.675, "topicSearchString": "react-native react native flexbox grid responsive responsive-layout layout orientation-changes responsive-design universal" }, { @@ -5971,13 +6057,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-step-indicator", "npm": { - "downloads": 284095, - "weekDownloads": 49925, + "downloads": 274147, + "weekDownloads": 61624, "size": 144083, "latestRelease": "1.0.3", "latestReleaseDate": "2020-06-16T18:30:52.597Z" @@ -5989,7 +6076,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, + "popularity": -0.559, "topicSearchString": "react-native ios android react-component step-indicator viewpager scrollview listview step progress-view" }, { @@ -6046,13 +6133,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-modals", "npm": { - "downloads": 7731, - "weekDownloads": 1314, + "downloads": 7702, + "weekDownloads": 1502, "size": 12374985, "latestRelease": "0.22.3", "latestReleaseDate": "2020-12-19T16:05:09.775Z" @@ -6065,7 +6153,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.584, "topicSearchString": "dialog popup react-dialog react-native modals react-component ios android react react-animate component javascript es6" }, { @@ -6125,13 +6213,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-textfield", "npm": { - "downloads": 253509, - "weekDownloads": 43876, + "downloads": 244152, + "weekDownloads": 56169, "size": 191081, "latestRelease": "0.16.1", "latestReleaseDate": "2019-10-24T20:53:07.376Z" @@ -6144,7 +6233,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, + "popularity": -0.554, "topicSearchString": "react react-component react-native ios android material input textinput field textfield floating label material-design" }, { @@ -6201,12 +6290,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-modalbox", "npm": { - "downloads": 56668, - "weekDownloads": 11003, + "downloads": 54433, + "weekDownloads": 10832, "size": 21424, "latestRelease": "2.0.2", "latestReleaseDate": "2020-10-09T23:31:47.038Z" @@ -6219,7 +6309,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.169, "topicSearchString": "react-component react-native ios android modal box modalbox window swipe" }, { @@ -6246,9 +6336,9 @@ "createdAt": "2016-09-23T16:45:46Z", "pushedAt": "2025-04-02T15:48:07Z", "forks": 633, - "issues": 71, + "issues": 72, "subscribers": 38, - "stars": 5627, + "stars": 5628, "dependencies": 1 }, "name": "react-native-modal", @@ -6277,12 +6367,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-modal", "npm": { - "downloads": 1786855, - "weekDownloads": 344582, + "downloads": 1721501, + "weekDownloads": 338552, "size": 57712, "latestRelease": "14.0.0-rc.1", "latestReleaseDate": "2025-03-15T03:54:56.538Z" @@ -6295,7 +6386,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.167, "topicSearchString": "react-native react native modal android ios backdrop simple animated animation" }, { @@ -6322,10 +6413,10 @@ "updatedAt": "2024-02-04T03:55:07Z", "createdAt": "2016-09-08T14:21:41Z", "pushedAt": "2024-02-04T03:55:07Z", - "forks": 4615, + "forks": 4617, "issues": 144, "subscribers": 372, - "stars": 25609, + "stars": 25615, "dependencies": 0 }, "name": "rneui", @@ -6353,11 +6444,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 461, - "weekDownloads": 134, + "downloads": 451, + "weekDownloads": 153, "size": 381, "latestRelease": "1.0.0-stable.0", "latestReleaseDate": "2022-05-05T08:31:29.876Z" @@ -6371,7 +6463,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.502, + "popularity": -0.461, "topicSearchString": "ui-components react-native ios android react ui mobile-app hacktoberfest cross-platform" }, { @@ -6401,10 +6493,10 @@ "updatedAt": "2025-10-16T12:44:50Z", "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-16T12:44:50Z", - "forks": 4930, - "issues": 850, + "forks": 4929, + "issues": 851, "subscribers": 308, - "stars": 24210, + "stars": 24216, "dependencies": 1 }, "name": "react-native-tab-view", @@ -6432,12 +6524,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-tab-view", "npm": { - "downloads": 2122323, - "weekDownloads": 415024, + "downloads": 2030419, + "weekDownloads": 397942, "size": 193318, "latestRelease": "4.1.3", "latestReleaseDate": "2025-08-10T16:27:21.845Z" @@ -6451,7 +6544,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.167, "topicSearchString": "component react-component react-native ios android tab swipe scrollable coverflow" }, { @@ -6508,13 +6601,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-circular-slider", "npm": { - "downloads": 1037, - "weekDownloads": 203, + "downloads": 1151, + "weekDownloads": 218, "latestRelease": "1.0.1", "latestReleaseDate": "2017-01-07T08:13:00.443Z" }, @@ -6525,7 +6619,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.589, "topicSearchString": "react react-native slider chart svg bedtime circular circle round time timer react-component clock animation" }, { @@ -6555,7 +6649,7 @@ "updatedAt": "2021-02-09T15:27:39Z", "createdAt": "2016-10-11T07:22:24Z", "pushedAt": "2021-02-09T15:27:39Z", - "forks": 2164, + "forks": 2165, "issues": 346, "subscribers": 96, "stars": 10518, @@ -6606,13 +6700,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-snap-carousel", "npm": { - "downloads": 462126, - "weekDownloads": 90331, + "downloads": 440701, + "weekDownloads": 93390, "size": 191158, "latestRelease": "3.9.1", "latestReleaseDate": "2020-05-27T05:36:20.217Z" @@ -6626,7 +6721,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.57, "topicSearchString": "react native carousel slider swiper flatlist scrollview parallax images infinite scroll scrolling items edge snap card cards stack deck tinder android ios snapping component rtl flatlist-based parallax-effect infinite-scroll advanced-effects" }, { @@ -6656,7 +6751,7 @@ "forks": 389, "issues": 41, "subscribers": 32, - "stars": 3042, + "stars": 3043, "dependencies": 1 }, "name": "react-native-modal-datetime-picker", @@ -6684,12 +6779,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-modal-datetime-picker", "npm": { - "downloads": 1857371, - "weekDownloads": 357480, + "downloads": 1777818, + "weekDownloads": 353093, "size": 43913, "latestRelease": "18.0.0", "latestReleaseDate": "2024-08-22T15:03:44.414Z" @@ -6702,7 +6798,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.169, "topicSearchString": "react-native react native date time picker android ios modal" }, { @@ -6751,12 +6847,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-universal-picker", "npm": { - "downloads": 32, - "weekDownloads": 5, + "downloads": 35, + "weekDownloads": 8, "latestRelease": "1.1.0", "latestReleaseDate": "2017-09-11T09:21:41.128Z" }, @@ -6765,7 +6862,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.607, + "popularity": -1.55, "topicSearchString": "react-native picker select dropdown ui" }, { @@ -6815,12 +6912,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-root-siblings", "npm": { - "downloads": 298246, - "weekDownloads": 56862, + "downloads": 288370, + "weekDownloads": 57504, "size": 28284, "latestRelease": "5.0.1", "latestReleaseDate": "2023-10-06T15:36:20.865Z" @@ -6832,7 +6930,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.17, "topicSearchString": "react-component react-native modal ios android" }, { @@ -6883,13 +6981,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tcp", "npm": { - "downloads": 19390, - "weekDownloads": 3602, + "downloads": 18565, + "weekDownloads": 3144, "size": 368274, "latestRelease": "4.0.0", "latestReleaseDate": "2020-04-04T19:23:20.484Z" @@ -6900,7 +6999,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.606, "topicSearchString": "react-component reactnative react-native net tcp sockets ios android" }, { @@ -6952,12 +7051,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-video", "npm": { - "downloads": 1383171, - "weekDownloads": 268093, + "downloads": 1323656, + "weekDownloads": 273526, "size": 917213, "latestRelease": "6.17.0", "latestReleaseDate": "2025-10-06T11:32:36.776Z" @@ -6971,7 +7071,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.176, "topicSearchString": "" }, { @@ -6998,7 +7098,7 @@ "createdAt": "2015-09-30T02:27:34Z", "pushedAt": "2025-08-06T19:20:44Z", "forks": 918, - "issues": 13, + "issues": 12, "subscribers": 59, "stars": 3827, "dependencies": 0 @@ -7029,12 +7129,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-share", "npm": { - "downloads": 1630062, - "weekDownloads": 315666, + "downloads": 1564969, + "weekDownloads": 314152, "size": 338218, "latestRelease": "12.2.0", "latestReleaseDate": "2025-08-06T19:20:56.149Z" @@ -7046,7 +7147,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.171, "topicSearchString": "react-native android ios windows bridge react share intent uwp" }, { @@ -7094,12 +7195,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-dialogs", "npm": { - "downloads": 9493, - "weekDownloads": 1846, + "downloads": 9581, + "weekDownloads": 1698, "size": 151866, "latestRelease": "1.1.2", "latestReleaseDate": "2023-12-13T09:30:36.724Z" @@ -7110,7 +7212,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.151, "topicSearchString": "react-native android react-component mobile-development cross-platform dialog-box" }, { @@ -7137,10 +7239,10 @@ "updatedAt": "2025-08-27T17:12:56Z", "createdAt": "2015-05-20T15:33:48Z", "pushedAt": "2025-08-27T17:12:56Z", - "forks": 473, + "forks": 472, "issues": 152, "subscribers": 38, - "stars": 3402, + "stars": 3401, "dependencies": 0 }, "name": "react-native-keychain", @@ -7169,12 +7271,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-keychain", "npm": { - "downloads": 1208804, - "weekDownloads": 223424, + "downloads": 1164942, + "weekDownloads": 235313, "size": 230397, "latestRelease": "10.0.0", "latestReleaseDate": "2025-03-23T19:16:49.565Z" @@ -7186,7 +7289,7 @@ "Known", "Lots of open issues" ], - "popularity": 0.157, + "popularity": 0.172, "topicSearchString": "react-native react-component component react mobile ios android keychain keychain-access" }, { @@ -7242,12 +7345,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-social-share", "npm": { - "downloads": 1219, - "weekDownloads": 337, + "downloads": 1316, + "weekDownloads": 245, "size": 8319613, "latestRelease": "1.6.5", "latestReleaseDate": "2019-08-28T08:25:10.360Z" @@ -7258,7 +7362,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.514, + "popularity": -0.591, "topicSearchString": "react twitter facebook slcomposeviewcontroller rctbridgemodule social react-native react-component component mobile ui popup share-popups" }, { @@ -7284,7 +7388,7 @@ "forks": 747, "issues": 15, "subscribers": 47, - "stars": 2257, + "stars": 2259, "dependencies": 0 }, "name": "react-native-ble-manager", @@ -7311,12 +7415,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-ble-manager", "npm": { - "downloads": 190413, - "weekDownloads": 35315, + "downloads": 181605, + "weekDownloads": 37021, "size": 440962, "latestRelease": "12.2.2", "latestReleaseDate": "2025-10-03T08:29:02.888Z" @@ -7327,7 +7432,7 @@ "Known", "Recently updated" ], - "popularity": 0.158, + "popularity": 0.173, "topicSearchString": "react-native android ios ble bluetooth low-energy bluetooth-low-energy" }, { @@ -7351,7 +7456,7 @@ "forks": 205, "issues": 68, "subscribers": 10, - "stars": 447, + "stars": 448, "dependencies": 0 }, "name": "react-native-mail", @@ -7377,13 +7482,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-mail", "npm": { - "downloads": 47865, - "weekDownloads": 10220, + "downloads": 45215, + "weekDownloads": 9448, "size": 228779, "latestRelease": "6.1.1", "latestReleaseDate": "2021-08-16T15:26:12.910Z" @@ -7395,7 +7501,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.569, + "popularity": -0.572, "topicSearchString": "react react-native react-component ios android email mfmailcomposeviewcontroller" }, { @@ -7419,7 +7525,7 @@ "forks": 144, "issues": 53, "subscribers": 13, - "stars": 405, + "stars": 406, "dependencies": 1 }, "name": "react-native-pdf-view", @@ -7444,13 +7550,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-pdf-view", "npm": { - "downloads": 184, - "weekDownloads": 31, + "downloads": 202, + "weekDownloads": 32, "latestRelease": "0.3.2", "latestReleaseDate": "2016-05-19T04:41:42.297Z" }, @@ -7460,7 +7567,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.356, + "popularity": -1.364, "topicSearchString": "react-component react-native android ios pdf view" }, { @@ -7513,12 +7620,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-card-io", "npm": { - "downloads": 443, - "weekDownloads": 95, + "downloads": 545, + "weekDownloads": 88, "latestRelease": "1.0.5", "latestReleaseDate": "2016-05-16T04:21:45.691Z" }, @@ -7528,7 +7636,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.317, + "popularity": -1.363, "topicSearchString": "react-component react-native card.io credit card scanner native ios android" }, { @@ -7582,12 +7690,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-awesome-card-io", "npm": { - "downloads": 10045, - "weekDownloads": 2112, + "downloads": 9192, + "weekDownloads": 2387, "size": 77005, "latestRelease": "0.9.1", "latestReleaseDate": "2022-04-07T12:53:39.030Z" @@ -7598,7 +7707,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.571, + "popularity": -0.529, "topicSearchString": "react-native react-component card.io credit-card scan android ios react card-scanning card-io" }, { @@ -7655,12 +7764,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-google-places", "npm": { - "downloads": 1908, - "weekDownloads": 344, + "downloads": 2054, + "weekDownloads": 357, "size": 1365307, "latestRelease": "3.1.2", "latestReleaseDate": "2019-08-06T14:05:27.539Z" @@ -7672,7 +7782,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.602, "topicSearchString": "react react-native react-component map places google-places google-places-api autocomplete ios android google-place-picker google-place-api google-place-autocomplete" }, { @@ -7722,11 +7832,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { "downloads": 255, - "weekDownloads": 31, + "weekDownloads": 34, "size": 298312, "latestRelease": "4.3.0", "latestReleaseDate": "2019-01-17T19:19:03.843Z" @@ -7739,7 +7850,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.397, + "popularity": -1.387, "topicSearchString": "react-native navigation expo react" }, { @@ -7790,13 +7901,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-masked-text", "npm": { - "downloads": 239100, - "weekDownloads": 45387, + "downloads": 227328, + "weekDownloads": 44279, "size": 544679, "latestRelease": "1.13.0", "latestReleaseDate": "2019-08-13T21:06:53.772Z" @@ -7809,7 +7921,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, + "popularity": -0.584, "topicSearchString": "mask text textinput react-native custom money input" }, { @@ -7863,13 +7975,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-bottom-navigation", "npm": { - "downloads": 624, - "weekDownloads": 150, + "downloads": 696, + "weekDownloads": 105, "size": 75227, "latestRelease": "1.0.5", "latestReleaseDate": "2019-12-10T11:49:15.595Z" @@ -7881,7 +7994,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.295, + "popularity": -1.371, "topicSearchString": "react-native material bottomnavigation bottom-navigation ios android react-component react-navigation component material-design" }, { @@ -7924,13 +8037,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-autogrow-textinput", "npm": { - "downloads": 11269, - "weekDownloads": 1902, + "downloads": 11517, + "weekDownloads": 2281, "size": 157435, "latestRelease": "5.4.0", "latestReleaseDate": "2020-04-23T14:24:34.669Z" @@ -7942,7 +8056,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, + "popularity": -0.582, "topicSearchString": "" }, { @@ -7992,13 +8106,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-camera-roll-picker", "npm": { - "downloads": 3226, - "weekDownloads": 468, + "downloads": 3699, + "weekDownloads": 436, "size": 16379, "latestRelease": "2.0.1", "latestReleaseDate": "2023-03-08T00:48:59.307Z" @@ -8009,7 +8124,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.627, + "popularity": -0.65, "topicSearchString": "cameraroll ios picker react-component react-native component camera-roll" }, { @@ -8060,12 +8175,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-conductor", "npm": { - "downloads": 10, - "weekDownloads": 2, + "downloads": 51, + "weekDownloads": 1, "latestRelease": "1.0.11", "latestReleaseDate": "2017-04-03T22:57:08.956Z" }, @@ -8075,7 +8191,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -1.483, "topicSearchString": "react-native animation animated tween conductor utility" }, { @@ -8134,13 +8250,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-image-progress", "npm": { - "downloads": 53157, - "weekDownloads": 10126, + "downloads": 50905, + "weekDownloads": 9188, "size": 13081, "latestRelease": "1.2.0", "latestReleaseDate": "2022-01-02T13:25:29.043Z" @@ -8152,7 +8269,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.588, + "popularity": -0.597, "topicSearchString": "react-native react-component component react mobile ios ui image progress bar progressbar spinner activityindicator loading indicator" }, { @@ -8208,12 +8325,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-app-intro", "npm": { - "downloads": 363, - "weekDownloads": 79, + "downloads": 388, + "weekDownloads": 52, "latestRelease": "1.1.5", "latestReleaseDate": "2016-10-12T01:41:43.405Z" }, @@ -8224,7 +8342,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.314, + "popularity": -1.386, "topicSearchString": "swiper producttour app intro ios android react-component react-native parallax introduction" }, { @@ -8283,12 +8401,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-lightbox", "npm": { - "downloads": 220755, - "weekDownloads": 50691, + "downloads": 203179, + "weekDownloads": 42428, "size": 14958, "latestRelease": "0.8.1", "latestReleaseDate": "2019-12-15T11:54:05.434Z" @@ -8300,7 +8419,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.555, + "popularity": -0.572, "topicSearchString": "react-native react-component component react mobile ios android ui lightbox gallery image" }, { @@ -8357,12 +8476,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-textinput-effects", "npm": { - "downloads": 4221, - "weekDownloads": 874, + "downloads": 4095, + "weekDownloads": 789, "size": 62199, "latestRelease": "0.6.3", "latestReleaseDate": "2022-08-08T19:55:29.844Z" @@ -8374,7 +8494,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.164, "topicSearchString": "react react-component react-native text-input textinput textfield animation animated ios android" }, { @@ -8428,13 +8548,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sortable-listview", "npm": { - "downloads": 12077, - "weekDownloads": 1886, + "downloads": 11729, + "weekDownloads": 1225, "size": 49743, "latestRelease": "0.2.9", "latestReleaseDate": "2019-07-28T21:38:30.309Z" @@ -8446,7 +8567,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.617, + "popularity": -0.661, "topicSearchString": "react-component ios android react-native drag drop touch listview list sort" }, { @@ -8499,12 +8620,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-foldview", "npm": { - "downloads": 49, - "weekDownloads": 14, + "downloads": 72, + "weekDownloads": 15, "size": 21848, "latestRelease": "1.2.1", "latestReleaseDate": "2018-07-28T17:09:51.988Z" @@ -8516,7 +8638,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.245, + "popularity": -1.313, "topicSearchString": "react react-native native ios andorid foldingcell folding cell view" }, { @@ -8538,7 +8660,7 @@ "updatedAt": "2023-10-26T14:04:57Z", "createdAt": "2015-11-01T05:07:41Z", "pushedAt": "2023-10-26T14:04:57Z", - "forks": 471, + "forks": 470, "issues": 108, "subscribers": 39, "stars": 3670, @@ -8576,12 +8698,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-progress", "npm": { - "downloads": 926188, - "weekDownloads": 169677, + "downloads": 892936, + "weekDownloads": 189829, "size": 46096, "latestRelease": "5.0.1", "latestReleaseDate": "2023-10-26T14:05:23.613Z" @@ -8595,7 +8718,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.181, "topicSearchString": "react-native react-component component react mobile ios ui progress progressindicator circle pie bar progressbar indeterminate spinner animation" }, { @@ -8656,11 +8779,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 5123, - "weekDownloads": 923, + "downloads": 4997, + "weekDownloads": 1087, "latestRelease": "1.2.9", "latestReleaseDate": "2017-12-18T02:50:06.405Z" }, @@ -8672,7 +8796,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.565, "topicSearchString": "component react-component react-native ios android viewpager pager pageview page tab-navigator scrollable tab navigator tab-bar tab-view" }, { @@ -8724,13 +8848,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-menu", "npm": { - "downloads": 14605, - "weekDownloads": 2175, + "downloads": 15086, + "weekDownloads": 2774, "latestRelease": "0.23.0", "latestReleaseDate": "2017-08-30T03:48:31.295Z" }, @@ -8740,7 +8865,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.623, + "popularity": -0.594, "topicSearchString": "react-native react menu spinner dropdown react-component ios android" }, { @@ -8794,13 +8919,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-button-component", "npm": { - "downloads": 122, - "weekDownloads": 23, + "downloads": 304, + "weekDownloads": 25, "size": 1663330, "latestRelease": "0.2.28", "latestReleaseDate": "2018-03-18T14:56:56.039Z" @@ -8811,7 +8937,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.336, + "popularity": -1.43, "topicSearchString": "react-button react-native button-component button component react-component ios android react javascript" }, { @@ -8859,12 +8985,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-fence-html", "npm": { - "downloads": 15, - "weekDownloads": 3, + "downloads": 42, + "weekDownloads": 0, "latestRelease": "1.0.6", "latestReleaseDate": "2016-07-04T18:18:18.953Z" }, @@ -8874,7 +9001,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -1, "topicSearchString": "react-native react-component component html" }, { @@ -8927,13 +9054,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-autolink", "npm": { - "downloads": 92212, - "weekDownloads": 14455, + "downloads": 90718, + "weekDownloads": 15785, "size": 41827, "latestRelease": "4.2.0", "latestReleaseDate": "2023-10-07T18:15:27.220Z" @@ -8944,7 +9072,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.617, + "popularity": -0.602, "topicSearchString": "react-native autolinking autolink linking autolinker links" }, { @@ -9002,13 +9130,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-hyperlink", "npm": { - "downloads": 204153, - "weekDownloads": 41678, + "downloads": 193431, + "weekDownloads": 35609, "size": 54992, "latestRelease": "0.0.22", "latestReleaseDate": "2022-08-22T15:31:49.781Z" @@ -9020,7 +9149,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.576, + "popularity": -0.594, "topicSearchString": "react react-native text link hyperlink autolink url web fuzzy-links" }, { @@ -9078,12 +9207,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-check-box", "npm": { - "downloads": 44749, - "weekDownloads": 8277, + "downloads": 42283, + "weekDownloads": 8137, "size": 12274, "latestRelease": "2.1.7", "latestReleaseDate": "2018-12-13T13:30:40.085Z" @@ -9095,7 +9225,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.586, "topicSearchString": "react-native component checkbox check-box check box react-component ios android checkbox-component" }, { @@ -9139,12 +9269,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-loading-container", "npm": { - "downloads": 52, - "weekDownloads": 5, + "downloads": 99, + "weekDownloads": 6, "latestRelease": "0.5.0", "latestReleaseDate": "2017-05-03T18:27:25.869Z" }, @@ -9153,7 +9284,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.417, + "popularity": -1.448, "topicSearchString": "" }, { @@ -9203,11 +9334,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 634, - "weekDownloads": 80, + "downloads": 759, + "weekDownloads": 122, "latestRelease": "0.1.1", "latestReleaseDate": "2017-10-21T12:14:51.256Z" }, @@ -9218,7 +9350,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.393, + "popularity": -1.363, "topicSearchString": "react-native tinder cards swipe" }, { @@ -9271,12 +9403,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-circular-progress", "npm": { - "downloads": 347126, - "weekDownloads": 67314, + "downloads": 329933, + "weekDownloads": 67492, "size": 20970, "latestRelease": "1.4.1", "latestReleaseDate": "2024-10-26T09:44:40.355Z" @@ -9288,7 +9421,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.174, "topicSearchString": "react react-native react-component progress chart react-svg fill circle animation" }, { @@ -9340,12 +9473,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-side-menu", "npm": { - "downloads": 19227, - "weekDownloads": 3099, + "downloads": 19829, + "weekDownloads": 3392, "latestRelease": "1.1.3", "latestReleaseDate": "2017-09-09T15:20:58.317Z" }, @@ -9356,7 +9490,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.613, + "popularity": -0.605, "topicSearchString": "react-native react-component ios sidebar component javascript side-menu" }, { @@ -9416,13 +9550,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-swiper", "npm": { - "downloads": 286526, - "weekDownloads": 64877, + "downloads": 265961, + "weekDownloads": 56880, "size": 66634, "latestRelease": "1.6.0", "latestReleaseDate": "2020-04-03T07:43:17.379Z" @@ -9436,7 +9571,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.558, + "popularity": -0.568, "topicSearchString": "react-component react-native ios swipe react" }, { @@ -9458,7 +9593,7 @@ "updatedAt": "2023-01-17T19:53:06Z", "createdAt": "2015-06-11T05:01:07Z", "pushedAt": "2023-01-17T19:53:06Z", - "forks": 2006, + "forks": 2004, "issues": 136, "subscribers": 136, "stars": 6945, @@ -9489,13 +9624,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-scrollable-tab-view", "npm": { - "downloads": 23737, - "weekDownloads": 4102, + "downloads": 24016, + "weekDownloads": 3858, "size": 86113, "latestRelease": "1.0.0", "latestReleaseDate": "2019-10-28T12:34:28.571Z" @@ -9509,7 +9645,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, + "popularity": -0.613, "topicSearchString": "component react-component react-native ios tab scrollable tabs swipe animated" }, { @@ -9531,7 +9667,7 @@ "updatedAt": "2021-03-26T08:20:02Z", "createdAt": "2015-08-25T11:12:44Z", "pushedAt": "2021-03-26T08:20:02Z", - "forks": 2056, + "forks": 2055, "issues": 281, "subscribers": 190, "stars": 8953, @@ -9552,13 +9688,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-router-flux", "npm": { - "downloads": 10943, - "weekDownloads": 2256, + "downloads": 11575, + "weekDownloads": 1497, "size": 1452326, "latestRelease": "4.3.1", "latestReleaseDate": "2021-03-26T08:20:25.578Z" @@ -9572,7 +9709,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.575, + "popularity": -0.64, "topicSearchString": "" }, { @@ -9606,7 +9743,7 @@ "forks": 2330, "issues": 283, "subscribers": 264, - "stars": 20345, + "stars": 20347, "dependencies": 35 }, "name": "native-base", @@ -9639,11 +9776,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 262949, - "weekDownloads": 48519, + "downloads": 257519, + "weekDownloads": 46234, "size": 8633762, "latestRelease": "3.4.28", "latestReleaseDate": "2023-03-06T08:06:31.155Z" @@ -9657,7 +9795,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.153, "topicSearchString": "android ios react native react-native native-modules react-component navbar packager nativebase ui-components native-platforms nextjs hacktoberfest" }, { @@ -9701,12 +9839,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-switcher", "npm": { - "downloads": 12, - "weekDownloads": 3, + "downloads": 10, + "weekDownloads": 0, "latestRelease": "0.1.0", "latestReleaseDate": "2015-09-22T21:55:28.603Z" }, @@ -9715,7 +9854,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.2, + "popularity": -1, "topicSearchString": "" }, { @@ -9770,12 +9909,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-swipeout", "npm": { - "downloads": 122919, - "weekDownloads": 23318, + "downloads": 120050, + "weekDownloads": 24567, "size": 114014, "latestRelease": "2.3.6", "latestReleaseDate": "2018-08-10T03:35:40.754Z" @@ -9788,7 +9928,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, + "popularity": -0.576, "topicSearchString": "react-native react-component ios swipeout button swipe ui" }, { @@ -9837,13 +9977,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-looped-carousel", "npm": { - "downloads": 1141, - "weekDownloads": 290, + "downloads": 1229, + "weekDownloads": 365, "size": 23338, "latestRelease": "0.1.13", "latestReleaseDate": "2018-05-23T21:31:36.346Z" @@ -9855,7 +9996,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.534, + "popularity": -0.497, "topicSearchString": "react native react-native carousel looped" }, { @@ -9909,12 +10050,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 1236, - "weekDownloads": 171, + "downloads": 1234, + "weekDownloads": 200, "size": 209287, "latestRelease": "3.1.1", "latestReleaseDate": "2018-04-24T09:57:31.034Z" @@ -9926,7 +10068,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.632, + "popularity": -0.612, "topicSearchString": "react-native ios android react-component react button" }, { @@ -9972,13 +10114,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-datepicker", "npm": { - "downloads": 40678, - "weekDownloads": 7662, + "downloads": 39697, + "weekDownloads": 7735, "size": 47241, "latestRelease": "1.7.2", "latestReleaseDate": "2018-04-22T11:27:28.819Z" @@ -9991,7 +10134,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.584, "topicSearchString": "react-native datepicker" }, { @@ -10046,12 +10189,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-google-places-autocomplete", "npm": { - "downloads": 461101, - "weekDownloads": 86124, + "downloads": 449860, + "weekDownloads": 86402, "size": 85271, "latestRelease": "2.5.7", "latestReleaseDate": "2024-10-04T06:06:40.473Z" @@ -10064,7 +10208,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.163, "topicSearchString": "autocomplete google places react-component react-native ios android" }, { @@ -10117,12 +10261,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-slider", "npm": { - "downloads": 48722, - "weekDownloads": 10582, + "downloads": 45994, + "weekDownloads": 9174, "latestRelease": "0.11.0", "latestReleaseDate": "2017-08-04T09:50:42.334Z" }, @@ -10134,7 +10279,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.565, + "popularity": -0.58, "topicSearchString": "react-component react-native ios android slider" }, { @@ -10188,12 +10333,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-credit-card-input", "npm": { - "downloads": 16796, - "weekDownloads": 3180, + "downloads": 16162, + "weekDownloads": 2799, "size": 804827, "latestRelease": "1.0.0", "latestReleaseDate": "2024-07-19T07:24:54.952Z" @@ -10204,7 +10350,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.147, "topicSearchString": "react-native ios android component payment credit-card" }, { @@ -10261,12 +10407,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-photo-browser", "npm": { - "downloads": 327, - "weekDownloads": 62, + "downloads": 399, + "weekDownloads": 58, "size": 146594, "latestRelease": "0.7.0", "latestReleaseDate": "2020-06-04T10:37:02.012Z" @@ -10278,7 +10425,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.337, + "popularity": -1.375, "topicSearchString": "react react-component react-native photo-browser image-gallery media-gallery ios android photos" }, { @@ -10334,12 +10481,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-pathjs-charts", "npm": { - "downloads": 383, - "weekDownloads": 83, + "downloads": 470, + "weekDownloads": 66, "size": 813630, "latestRelease": "0.0.34", "latestReleaseDate": "2018-02-19T01:42:02.629Z" @@ -10351,7 +10499,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.316, + "popularity": -1.38, "topicSearchString": "react-native svg paths-js react-pathjs-chart ios android charts graphs cross-platform radar-graphs bar-graphs" }, { @@ -10396,11 +10544,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 802020, - "weekDownloads": 147101, + "downloads": 773541, + "weekDownloads": 147710, "size": 415415, "latestRelease": "41.20.1", "latestReleaseDate": "2025-09-08T16:26:03.438Z" @@ -10412,7 +10561,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.162, "topicSearchString": "" }, { @@ -10466,13 +10615,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-action-button", "npm": { - "downloads": 19586, - "weekDownloads": 3370, + "downloads": 19555, + "weekDownloads": 2880, "size": 364481, "latestRelease": "2.8.5", "latestReleaseDate": "2018-08-29T12:38:27.449Z" @@ -10485,7 +10635,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, + "popularity": -0.625, "topicSearchString": "react-native action-button float-button multi-action-button fab actionbutton component" }, { @@ -10535,13 +10685,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-gifted-form", "npm": { - "downloads": 459, - "weekDownloads": 67, + "downloads": 532, + "weekDownloads": 57, "latestRelease": "0.1.1", "latestReleaseDate": "2017-11-15T23:34:21.066Z" }, @@ -10552,7 +10703,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.376, + "popularity": -1.409, "topicSearchString": "form react-native react react-component ios android" }, { @@ -10607,12 +10758,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-dropdownalert", "npm": { - "downloads": 51076, - "weekDownloads": 9313, + "downloads": 49387, + "weekDownloads": 8445, "size": 37781, "latestRelease": "5.2.0", "latestReleaseDate": "2025-07-12T14:33:43.362Z" @@ -10623,7 +10775,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.145, "topicSearchString": "react-native ios android dropdown alert dismiss error info warn success notification" }, { @@ -10669,13 +10821,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-read-more-text", "npm": { - "downloads": 18184, - "weekDownloads": 3417, + "downloads": 17500, + "weekDownloads": 3294, "size": 5171, "latestRelease": "1.1.2", "latestReleaseDate": "2020-02-05T12:30:33.064Z" @@ -10738,12 +10891,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-popup-menu", "npm": { - "downloads": 209828, - "weekDownloads": 40426, + "downloads": 199937, + "weekDownloads": 39581, "size": 446216, "latestRelease": "0.18.0", "latestReleaseDate": "2025-06-07T22:45:48.028Z" @@ -10754,7 +10908,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.168, "topicSearchString": "popup-menu animation react-native android ios" }, { @@ -10809,13 +10963,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-calendar-strip", "npm": { - "downloads": 30943, - "weekDownloads": 5731, + "downloads": 29702, + "weekDownloads": 5347, "size": 116646, "latestRelease": "2.2.6", "latestReleaseDate": "2022-05-11T23:12:59.391Z" @@ -10828,7 +10983,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.597, "topicSearchString": "rn calendar calendar-strip native react react-native strip javascript" }, { @@ -10882,13 +11037,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-loader", "npm": { - "downloads": 1844, - "weekDownloads": 473, + "downloads": 1710, + "weekDownloads": 410, "size": 12138, "latestRelease": "1.3.1", "latestReleaseDate": "2020-08-21T04:22:58.114Z" @@ -10899,7 +11055,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.532, + "popularity": -0.546, "topicSearchString": "react react-native react-component waiting loading spinner react-art animated-spinners android ios" }, { @@ -10950,13 +11106,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-simple-modal", "npm": { - "downloads": 1160, - "weekDownloads": 181, + "downloads": 1266, + "weekDownloads": 189, "size": 11011, "latestRelease": "9.0.1", "latestReleaseDate": "2018-06-09T11:37:11.050Z" @@ -10967,7 +11124,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.617, + "popularity": -0.623, "topicSearchString": "modal react-native dialog react-component ios android component" }, { @@ -11024,13 +11181,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sortable-list", "npm": { - "downloads": 14981, - "weekDownloads": 5728, + "downloads": 11612, + "weekDownloads": 3722, "size": 34345, "latestRelease": "0.0.25", "latestReleaseDate": "2022-04-08T18:36:21.645Z" @@ -11043,7 +11201,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.425, + "popularity": -0.478, "topicSearchString": "react-native ios react-component react component android listview scrollview scrollview-component" }, { @@ -11093,13 +11251,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-percentage-circle", "npm": { - "downloads": 279, - "weekDownloads": 30, + "downloads": 316, + "weekDownloads": 40, "size": 9057, "latestRelease": "1.0.7", "latestReleaseDate": "2018-05-03T05:39:55.301Z" @@ -11110,7 +11269,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.408, + "popularity": -1.392, "topicSearchString": "percentage circle progress bar react-native percent" }, { @@ -11161,13 +11320,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-image-header-scroll-view", "npm": { - "downloads": 5080, - "weekDownloads": 1303, + "downloads": 4585, + "weekDownloads": 1132, "size": 10207203, "latestRelease": "1.0.0", "latestReleaseDate": "2020-11-19T18:42:56.296Z" @@ -11179,7 +11339,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.532, + "popularity": -0.54, "topicSearchString": "react-native scrollview animation navbar react-component ios android" }, { @@ -11226,12 +11386,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-fade-in-image", "npm": { - "downloads": 272687, - "weekDownloads": 49534, + "downloads": 261453, + "weekDownloads": 60212, "size": 5238, "latestRelease": "1.6.1", "latestReleaseDate": "2021-06-07T19:11:06.288Z" @@ -11242,7 +11403,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.554, "topicSearchString": "" }, { @@ -11295,13 +11456,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-flip-card", "npm": { - "downloads": 36126, - "weekDownloads": 7054, + "downloads": 34475, + "weekDownloads": 6154, "size": 14146, "latestRelease": "3.5.7", "latestReleaseDate": "2023-02-13T14:43:53.130Z" @@ -11312,7 +11474,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.598, "topicSearchString": "react-component react-native ios android card flip react card-component animation" }, { @@ -11364,12 +11526,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fcm", "npm": { - "downloads": 354, - "weekDownloads": 33, + "downloads": 961, + "weekDownloads": 57, "size": 174616, "latestRelease": "16.2.4", "latestReleaseDate": "2018-11-04T01:41:40.202Z" @@ -11382,7 +11545,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.42, + "popularity": -1.45, "topicSearchString": "react-native ios android fcm firebase cloud-messaging notifications local-notifications" }, { @@ -11436,13 +11599,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-easy-toast", "npm": { - "downloads": 28006, - "weekDownloads": 4903, + "downloads": 26455, + "weekDownloads": 4875, "size": 17091, "latestRelease": "2.3.0", "latestReleaseDate": "2022-11-18T11:39:30.760Z" @@ -11454,7 +11618,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, + "popularity": -0.593, "topicSearchString": "react-native component toast toast-ios alert react-component navigator ios android react-toast" }, { @@ -11507,13 +11671,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-mentions", "npm": { - "downloads": 879, - "weekDownloads": 202, + "downloads": 903, + "weekDownloads": 190, "latestRelease": "1.1.4", "latestReleaseDate": "2018-01-09T17:19:40.466Z" }, @@ -11523,7 +11688,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.304, + "popularity": -1.321, "topicSearchString": "react-component react-native mentions textinput component ios android autocomplete hashtag" }, { @@ -11572,13 +11737,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-carousel-control", "npm": { - "downloads": 288, - "weekDownloads": 41, + "downloads": 323, + "weekDownloads": 67, "latestRelease": "2.0.1", "latestReleaseDate": "2017-10-31T12:56:59.163Z" }, @@ -11588,7 +11754,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.378, + "popularity": -1.324, "topicSearchString": "react native carousel ios android" }, { @@ -11638,13 +11804,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-settings-list", "npm": { - "downloads": 8041, - "weekDownloads": 2336, + "downloads": 7662, + "weekDownloads": 1844, "latestRelease": "1.8.0", "latestReleaseDate": "2017-11-04T02:36:51.653Z" }, @@ -11654,7 +11821,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.503, + "popularity": -0.545, "topicSearchString": "react-native react-component ios android settings-list settings" }, { @@ -11703,13 +11870,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-clean-form", "npm": { - "downloads": 108, - "weekDownloads": 12, + "downloads": 149, + "weekDownloads": 26, "latestRelease": "0.5.0", "latestReleaseDate": "2018-01-03T15:59:24.835Z" }, @@ -11719,7 +11887,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.404, + "popularity": -1.351, "topicSearchString": "react-native redux-form immutable.js styled-components redux" }, { @@ -11770,12 +11938,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-accordion", "npm": { - "downloads": 297, - "weekDownloads": 55, + "downloads": 278, + "weekDownloads": 101, "latestRelease": "1.0.1", "latestReleaseDate": "2016-07-27T03:33:50.723Z" }, @@ -11785,7 +11954,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.341, + "popularity": -1.189, "topicSearchString": "react-native react native accordion react-component component" }, { @@ -11837,12 +12006,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-viewpager", "npm": { - "downloads": 1667, - "weekDownloads": 326, + "downloads": 1710, + "weekDownloads": 340, "latestRelease": "0.2.13", "latestReleaseDate": "2016-10-27T05:25:25.971Z" }, @@ -11854,7 +12024,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.581, "topicSearchString": "component react-component react-native ios android viewpager pager" }, { @@ -11901,12 +12071,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-dropdown", "npm": { - "downloads": 1396, - "weekDownloads": 225, + "downloads": 1413, + "weekDownloads": 230, "latestRelease": "0.0.6", "latestReleaseDate": "2015-12-10T19:39:19.305Z" }, @@ -11917,7 +12088,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.613, + "popularity": -0.611, "topicSearchString": "react-component react-native" }, { @@ -11967,12 +12138,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-chooser", "npm": { - "downloads": 1197, - "weekDownloads": 33, + "downloads": 1201, + "weekDownloads": 16, "latestRelease": "1.7.0", "latestReleaseDate": "2017-11-29T07:51:25.707Z" }, @@ -11982,7 +12154,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.727, + "popularity": -0.739, "topicSearchString": "react-native chooser select picker select-tag" }, { @@ -12035,11 +12207,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 87928, - "weekDownloads": 16288, + "downloads": 85273, + "weekDownloads": 16575, "size": 119993, "latestRelease": "8.0.5", "latestReleaseDate": "2024-07-26T14:49:48.954Z" @@ -12052,7 +12225,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.165, "topicSearchString": "calendar picker date day calendar-picker-component component calendarpicker calendar-picker" }, { @@ -12109,12 +12282,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-autocomplete-input", "npm": { - "downloads": 57731, - "weekDownloads": 11308, + "downloads": 55588, + "weekDownloads": 10684, "size": 10285, "latestRelease": "5.5.6", "latestReleaseDate": "2025-01-24T22:10:43.637Z" @@ -12126,7 +12300,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.163, "topicSearchString": "react-native ios input android autocomplete" }, { @@ -12174,13 +12348,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tabs", "npm": { - "downloads": 8250, - "weekDownloads": 1241, + "downloads": 8530, + "weekDownloads": 1491, "latestRelease": "1.0.9", "latestReleaseDate": "2016-07-07T11:40:18.108Z" }, @@ -12191,7 +12366,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.622, + "popularity": -0.601, "topicSearchString": "react-native react-components tabbar tabs" }, { @@ -12237,13 +12412,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-easy-grid", "npm": { - "downloads": 53225, - "weekDownloads": 9954, + "downloads": 52787, + "weekDownloads": 9367, "size": 89860, "latestRelease": "0.2.2", "latestReleaseDate": "2019-08-12T04:06:26.368Z" @@ -12255,7 +12431,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.599, "topicSearchString": "" }, { @@ -12310,12 +12486,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-radio-buttons", "npm": { - "downloads": 3015, - "weekDownloads": 509, + "downloads": 3139, + "weekDownloads": 584, "latestRelease": "1.0.0", "latestReleaseDate": "2017-07-19T09:15:22.306Z" }, @@ -12325,7 +12502,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.592, "topicSearchString": "react-component react-native ios radio-buttons radio segmentedcontrols segmented-controls" }, { @@ -12377,13 +12554,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-gesture-password", "npm": { - "downloads": 329, - "weekDownloads": 62, + "downloads": 350, + "weekDownloads": 40, "size": 72437, "latestRelease": "0.4.0", "latestReleaseDate": "2019-12-12T02:58:46.394Z" @@ -12394,7 +12572,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.339, + "popularity": -1.402, "topicSearchString": "react-component react-native ios android gesture-password javascript interval react" }, { @@ -12438,12 +12616,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-calendar", "npm": { - "downloads": 4310, - "weekDownloads": 415, + "downloads": 4345, + "weekDownloads": 457, "latestRelease": "0.13.1", "latestReleaseDate": "2017-10-12T12:32:01.436Z" }, @@ -12454,7 +12633,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.668, + "popularity": -0.661, "topicSearchString": "" }, { @@ -12504,13 +12683,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-simple-store", "npm": { - "downloads": 2082, - "weekDownloads": 407, + "downloads": 2238, + "weekDownloads": 269, "size": 288592, "latestRelease": "2.0.2", "latestReleaseDate": "2019-09-23T17:31:18.959Z" @@ -12522,7 +12702,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.648, "topicSearchString": "react-native ios android asyncstorage data-store key-value-store" }, { @@ -12589,13 +12769,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-loading-spinner-overlay", "npm": { - "downloads": 65485, - "weekDownloads": 13401, + "downloads": 62404, + "weekDownloads": 12352, "size": 19209, "latestRelease": "3.0.1", "latestReleaseDate": "2022-07-28T15:28:53.957Z" @@ -12607,7 +12788,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.576, + "popularity": -0.582, "topicSearchString": "activity android bar full indicator ios loading modal native pop-up popup progress react react-native screen spinner view overlay portal progress-bar" }, { @@ -12632,7 +12813,7 @@ "forks": 337, "issues": 80, "subscribers": 33, - "stars": 2334, + "stars": 2335, "dependencies": 2 }, "name": "react-native-parallax-scroll-view", @@ -12660,12 +12841,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-parallax-scroll-view", "npm": { - "downloads": 8197, - "weekDownloads": 1801, + "downloads": 7869, + "weekDownloads": 1735, "size": 21543, "latestRelease": "0.21.3", "latestReleaseDate": "2018-06-20T11:28:46.845Z" @@ -12725,12 +12907,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-tabbar", "npm": { - "downloads": 1867, - "weekDownloads": 16, + "downloads": 1874, + "weekDownloads": 21, "latestRelease": "1.0.0", "latestReleaseDate": "2016-08-01T01:12:24.079Z" }, @@ -12740,7 +12923,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.743, + "popularity": -0.74, "topicSearchString": "react-native tabbar" }, { @@ -12793,12 +12976,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-message-bar", "npm": { - "downloads": 2500, - "weekDownloads": 461, + "downloads": 2597, + "weekDownloads": 391, "size": 35762, "latestRelease": "2.1.0", "latestReleaseDate": "2021-01-31T00:22:24.152Z" @@ -12809,7 +12993,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.622, "topicSearchString": "react-native react native message bar alert notification status" }, { @@ -12860,13 +13044,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-floating-label-text-input", "npm": { - "downloads": 164, - "weekDownloads": 15, + "downloads": 244, + "weekDownloads": 14, "latestRelease": "0.1.5", "latestReleaseDate": "2017-07-30T06:43:00.346Z" }, @@ -12876,7 +13061,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.421, + "popularity": -1.451, "topicSearchString": "react-native react-component ios animated floating text-input text-field" }, { @@ -12930,12 +13115,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-progress-hud", "npm": { - "downloads": 126, - "weekDownloads": 34, + "downloads": 148, + "weekDownloads": 38, "latestRelease": "1.0.4", "latestReleaseDate": "2016-04-20T14:10:06.888Z" }, @@ -12945,7 +13131,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.266, + "popularity": -1.276, "topicSearchString": "react native progress hud popup spinner loader loading react-component" }, { @@ -12996,12 +13182,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-country-picker-modal", "npm": { - "downloads": 308821, - "weekDownloads": 57377, + "downloads": 293700, + "weekDownloads": 58108, "size": 267693, "latestRelease": "2.0.0", "latestReleaseDate": "2020-07-30T07:06:27.893Z" @@ -13012,7 +13199,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.168, "topicSearchString": "react-native components country-picker country flag countries modal" }, { @@ -13062,13 +13249,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-awesome-button", "npm": { - "downloads": 36, - "weekDownloads": 13, + "downloads": 47, + "weekDownloads": 4, "latestRelease": "1.8.2", "latestReleaseDate": "2017-02-23T14:53:37.886Z" }, @@ -13078,7 +13266,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.175, + "popularity": -1.427, "topicSearchString": "react react-native react-component button awesome-button react-ui" }, { @@ -13127,13 +13315,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-svg-uri", "npm": { - "downloads": 25314, - "weekDownloads": 6117, + "downloads": 22937, + "weekDownloads": 4770, "latestRelease": "1.2.3", "latestReleaseDate": "2017-11-16T12:38:43.338Z" }, @@ -13145,7 +13334,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.545, + "popularity": -0.573, "topicSearchString": "react-native svg url uri http" }, { @@ -13174,7 +13363,7 @@ "updatedAt": "2025-08-12T13:42:02Z", "createdAt": "2020-07-29T06:05:00Z", "pushedAt": "2025-08-12T13:42:02Z", - "forks": 96, + "forks": 95, "issues": 54, "subscribers": 4, "stars": 170, @@ -13205,12 +13394,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-deck-swiper", "npm": { - "downloads": 36249, - "weekDownloads": 7454, + "downloads": 35226, + "weekDownloads": 6933, "size": 2319587, "latestRelease": "2.0.19", "latestReleaseDate": "2025-08-12T13:43:12.328Z" @@ -13220,7 +13410,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.167, "topicSearchString": "react-native component tinder cards card swipe swiper deck animation" }, { @@ -13275,11 +13465,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-webbrowser", "npm": { - "downloads": 13, + "downloads": 32, "weekDownloads": 1, "latestRelease": "0.0.6", "latestReleaseDate": "2016-03-18T22:23:40.161Z" @@ -13290,7 +13481,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.433, + "popularity": -1.471, "topicSearchString": "webview webbrowser browser web native react ios android react-native react-component" }, { @@ -13342,12 +13533,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-circular-action-menu", "npm": { - "downloads": 391, - "weekDownloads": 76, + "downloads": 378, + "weekDownloads": 77, "size": 351734, "latestRelease": "0.5.0", "latestReleaseDate": "2018-03-24T23:04:00.557Z" @@ -13358,7 +13550,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.335, + "popularity": -1.325, "topicSearchString": "react-native action-button float-button multi-action-button circular-menu arc-menu satellite-menu" }, { @@ -13412,11 +13604,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-stateless-form", "npm": { - "downloads": 109, + "downloads": 163, "weekDownloads": 3, "latestRelease": "0.3.2", "latestReleaseDate": "2017-12-19T17:06:33.287Z" @@ -13426,7 +13619,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.476, + "popularity": -1.484, "topicSearchString": "react native react-native form stateless presentational components ios android" }, { @@ -13478,13 +13671,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-segmented-control-tab", "npm": { - "downloads": 195477, - "weekDownloads": 15852, + "downloads": 207430, + "weekDownloads": 23518, "size": 31987, "latestRelease": "4.0.0", "latestReleaseDate": "2021-08-26T20:19:00.819Z" @@ -13496,7 +13690,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.681, + "popularity": -0.654, "topicSearchString": "react-native custom component segmentedcontrolios segmentedcontroltab ios android controlled-segmentedcontroltab" }, { @@ -13544,12 +13738,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-atoz-list", "npm": { - "downloads": 4043, - "weekDownloads": 219, + "downloads": 4096, + "weekDownloads": 536, "size": 287850, "latestRelease": "1.0.5", "latestReleaseDate": "2020-02-25T13:41:46.935Z" @@ -13560,7 +13755,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.704, + "popularity": -0.639, "topicSearchString": "selectlist alphabetlist contactlist" }, { @@ -13610,11 +13805,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2005, - "weekDownloads": 288, + "downloads": 1932, + "weekDownloads": 475, "size": 5962, "latestRelease": "2.0.0", "latestReleaseDate": "2018-06-26T21:17:47.807Z" @@ -13625,7 +13821,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.628, + "popularity": -0.541, "topicSearchString": "react-native responsive image pixel-ratio" }, { @@ -13673,11 +13869,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 12, - "weekDownloads": 0, + "downloads": 44, + "weekDownloads": 3, "latestRelease": "4.0.0", "latestReleaseDate": "2018-01-31T18:01:53.054Z" }, @@ -13686,7 +13883,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -1.69, "topicSearchString": "react-native link" }, { @@ -13736,12 +13933,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-emoji-picker", "npm": { - "downloads": 715, - "weekDownloads": 217, + "downloads": 623, + "weekDownloads": 159, "latestRelease": "0.2.2", "latestReleaseDate": "2016-08-01T13:28:52.091Z" }, @@ -13750,7 +13948,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.242, + "popularity": -1.282, "topicSearchString": "react-native react-component ios emoji emoji-picker" }, { @@ -13800,11 +13998,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 32, - "weekDownloads": 2, + "downloads": 41, + "weekDownloads": 4, "latestRelease": "1.1.1", "latestReleaseDate": "2016-09-09T09:54:37.059Z" }, @@ -13813,7 +14012,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.443, + "popularity": -1.411, "topicSearchString": "react-native smart badge component" }, { @@ -13864,12 +14063,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "tcomb-form-native", "npm": { - "downloads": 14267, - "weekDownloads": 2556, + "downloads": 13409, + "weekDownloads": 1710, "size": 189906, "latestRelease": "0.6.20", "latestReleaseDate": "2018-10-11T09:07:58.706Z" @@ -13882,7 +14082,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, + "popularity": -0.642, "topicSearchString": "tcomb form forms react react-native react-component" }, { @@ -13931,12 +14131,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-infinite-scroll-view", "npm": { - "downloads": 43691, - "weekDownloads": 9117, + "downloads": 41583, + "weekDownloads": 8153, "size": 55756, "latestRelease": "0.4.5", "latestReleaseDate": "2018-08-28T21:38:16.977Z" @@ -13947,7 +14148,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.573, + "popularity": -0.583, "topicSearchString": "react-native infinite pagination scroll-view" }, { @@ -13994,13 +14195,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-invertible-scroll-view", "npm": { - "downloads": 5007, - "weekDownloads": 733, + "downloads": 4846, + "weekDownloads": 841, "size": 13028, "latestRelease": "2.0.0", "latestReleaseDate": "2019-07-23T18:56:21.467Z" @@ -14011,7 +14213,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.626, + "popularity": -0.602, "topicSearchString": "react-native invertible scroll-view" }, { @@ -14061,12 +14263,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-root-modal", "npm": { - "downloads": 2145, - "weekDownloads": 534, + "downloads": 2096, + "weekDownloads": 499, "size": 7122, "latestRelease": "5.0.1", "latestReleaseDate": "2021-03-03T08:00:41.624Z" @@ -14077,7 +14280,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.212, + "popularity": 0.202, "topicSearchString": "react-component react-native ios android modal popover" }, { @@ -14126,12 +14329,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-emoji", "npm": { - "downloads": 9591, - "weekDownloads": 1458, + "downloads": 9688, + "weekDownloads": 1656, "size": 3197, "latestRelease": "1.8.0", "latestReleaseDate": "2019-06-05T17:35:14.441Z" @@ -14142,7 +14346,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.621, + "popularity": -0.605, "topicSearchString": "react-native emoji react-component ios" }, { @@ -14196,13 +14400,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-simple-markdown", "npm": { - "downloads": 4619, - "weekDownloads": 829, + "downloads": 5066, + "weekDownloads": 899, "latestRelease": "1.1.0", "latestReleaseDate": "2018-01-18T08:07:20.100Z" }, @@ -14212,7 +14417,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.599, "topicSearchString": "react-native native markdown md parse parser ios android react library" }, { @@ -14263,13 +14468,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-statusbar-alert", "npm": { - "downloads": 1366, - "weekDownloads": 226, + "downloads": 1373, + "weekDownloads": 331, "latestRelease": "0.4.0", "latestReleaseDate": "2017-10-16T07:14:37.134Z" }, @@ -14279,7 +14485,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.609, + "popularity": -0.545, "topicSearchString": "react-native status-bar alert banner ios android statusbar" }, { @@ -14330,13 +14536,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-text", "npm": { - "downloads": 2569, - "weekDownloads": 415, + "downloads": 2628, + "weekDownloads": 394, "size": 19122, "latestRelease": "1.2.2", "latestReleaseDate": "2021-05-11T06:51:59.171Z" @@ -14347,7 +14554,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.613, + "popularity": -0.622, "topicSearchString": "react-native scaled ios android text react" }, { @@ -14404,13 +14611,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-immutable-list-view", "npm": { - "downloads": 663, - "weekDownloads": 126, + "downloads": 776, + "weekDownloads": 119, "size": 129212, "latestRelease": "2.0.0", "latestReleaseDate": "2019-10-19T01:55:35.246Z" @@ -14421,7 +14629,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.338, + "popularity": -1.369, "topicSearchString": "react listview datasource pure immutable list map set react-native immutablejs component flatlist virtualizedlist" }, { @@ -14476,13 +14684,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-search-header", "npm": { - "downloads": 193, - "weekDownloads": 32, + "downloads": 392, + "weekDownloads": 39, "size": 1669279, "latestRelease": "0.3.5", "latestReleaseDate": "2019-09-09T22:28:24.157Z" @@ -14493,7 +14702,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.358, + "popularity": -1.415, "topicSearchString": "search-header react-native android ios search header mobile material-design component ui uikit" }, { @@ -14543,13 +14752,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-device-monitor", "npm": { - "downloads": 7, - "weekDownloads": 1, + "downloads": 12, + "weekDownloads": 0, "latestRelease": "2.0.0", "latestReleaseDate": "2017-10-25T16:05:41.345Z" }, @@ -14558,7 +14768,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -1, "topicSearchString": "react-native device keyboard net-info android ios" }, { @@ -14608,13 +14818,14 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "unmaintained": true, "npmPkg": "react-native-fbads", "npm": { - "downloads": 1828, - "weekDownloads": 424, + "downloads": 1927, + "weekDownloads": 342, "size": 212607, "latestRelease": "7.1.1", "latestReleaseDate": "2023-08-17T07:58:18.332Z" @@ -14625,7 +14836,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.553, + "popularity": -0.599, "topicSearchString": "react-native facebook audience-network native-ads facebook-sdk javascript" }, { @@ -14684,11 +14895,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 491958, - "weekDownloads": 89436, + "downloads": 474616, + "weekDownloads": 99144, "size": 240896, "latestRelease": "6.8.0", "latestReleaseDate": "2025-07-22T16:41:27.839Z" @@ -14699,7 +14911,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.178, "topicSearchString": "react-native react-component ios android branch metrics deeplink deep link attribution universal-links app-links analytics react deep-linking" }, { @@ -14750,13 +14962,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-social-auth", "npm": { - "downloads": 385, - "weekDownloads": 54, + "downloads": 407, + "weekDownloads": 49, "latestRelease": "2.0.0", "latestReleaseDate": "2017-08-02T16:40:41.429Z" }, @@ -14765,7 +14978,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.38, + "popularity": -1.397, "topicSearchString": "react-native module auth ios android facebook twitter native" }, { @@ -14819,12 +15032,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-keep-awake", "npm": { - "downloads": 159324, - "weekDownloads": 32552, + "downloads": 150224, + "weekDownloads": 34922, "size": 26051, "latestRelease": "4.0.0", "latestReleaseDate": "2018-10-28T22:11:26.129Z" @@ -14836,7 +15050,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.576, + "popularity": -0.552, "topicSearchString": "react-native ios android awake screen lock sleep" }, { @@ -14896,13 +15110,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-send-intent", "npm": { - "downloads": 36281, - "weekDownloads": 7864, + "downloads": 33530, + "weekDownloads": 7006, "size": 59468, "latestRelease": "1.3.0", "latestReleaseDate": "2021-09-28T12:20:30.889Z" @@ -14913,7 +15128,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.566, + "popularity": -0.572, "topicSearchString": "react react-native react-component intent email send sent share text phone sms call calls dial number maps android" }, { @@ -14959,13 +15174,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-android-statusbar", "npm": { - "downloads": 39, - "weekDownloads": 10, + "downloads": 53, + "weekDownloads": 3, "latestRelease": "0.1.3", "latestReleaseDate": "2016-08-16T14:49:49.829Z" }, @@ -14974,7 +15190,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.278, + "popularity": -1.45, "topicSearchString": "react-component react-native android" }, { @@ -15023,13 +15239,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-smart-splash-screen", "npm": { - "downloads": 316, - "weekDownloads": 18, + "downloads": 472, + "weekDownloads": 23, "latestRelease": "2.3.5", "latestReleaseDate": "2017-08-17T11:33:32.341Z" }, @@ -15039,7 +15256,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.451, + "popularity": -1.459, "topicSearchString": "react-native smart splash screen splashscreen component" }, { @@ -15093,13 +15310,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-splash-screen", "npm": { - "downloads": 49, - "weekDownloads": 6, + "downloads": 118, + "weekDownloads": 10, "latestRelease": "5.2.0", "latestReleaseDate": "2017-09-12T00:03:14.833Z" }, @@ -15109,7 +15327,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.391, + "popularity": -1.426, "topicSearchString": "react-native react-component ios android splashscreen splash launchui show hide mobile splash-screen" }, { @@ -15158,13 +15376,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-effects-view", "npm": { - "downloads": 80, - "weekDownloads": 31, + "downloads": 74, + "weekDownloads": 28, "latestRelease": "0.4.0", "latestReleaseDate": "2016-09-02T19:00:55.877Z" }, @@ -15174,7 +15393,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.156, + "popularity": -1.171, "topicSearchString": "react react-native react-component ios blur uiview view" }, { @@ -15222,13 +15441,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-location", "npm": { - "downloads": 16129, - "weekDownloads": 3258, + "downloads": 14896, + "weekDownloads": 2674, "size": 583629, "latestRelease": "2.5.0", "latestReleaseDate": "2019-08-10T21:59:20.669Z" @@ -15240,7 +15460,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.578, + "popularity": -0.597, "topicSearchString": "react-native react-component ios android location" }, { @@ -15265,7 +15485,7 @@ "forks": 766, "issues": 9, "subscribers": 34, - "stars": 4282, + "stars": 4280, "dependencies": 0 }, "name": "react-native-permissions", @@ -15291,12 +15511,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-permissions", "npm": { - "downloads": 2230916, - "weekDownloads": 420803, + "downloads": 2152913, + "weekDownloads": 428145, "size": 427050, "latestRelease": "5.4.2", "latestReleaseDate": "2025-07-22T17:24:24.646Z" @@ -15308,7 +15529,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.169, "topicSearchString": "react-native windows permission authorization react permissions" }, { @@ -15335,7 +15556,7 @@ "forks": 340, "issues": 111, "subscribers": 15, - "stars": 2858, + "stars": 2859, "dependencies": 1 }, "name": "react-native-view-shot", @@ -15362,12 +15583,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-view-shot", "npm": { - "downloads": 1278250, - "weekDownloads": 244173, + "downloads": 1239906, + "weekDownloads": 248349, "size": 1721726, "latestRelease": "4.0.3", "latestReleaseDate": "2024-12-06T21:21:10.380Z" @@ -15381,7 +15603,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.17, "topicSearchString": "react-native screenshot viewshot view-snapshot snapshot rasterize capture" }, { @@ -15439,13 +15661,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-safari-view", "npm": { - "downloads": 36625, - "weekDownloads": 6837, + "downloads": 35812, + "weekDownloads": 6476, "latestRelease": "2.1.0", "latestReleaseDate": "2017-10-02T15:25:24.353Z" }, @@ -15455,7 +15678,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.596, "topicSearchString": "react-native react native webview web view safari safariview react-component component apple safari-view-controller" }, { @@ -15504,13 +15727,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-oauth", "npm": { - "downloads": 8942, - "weekDownloads": 1066, + "downloads": 8753, + "weekDownloads": 590, "size": 54105060, "latestRelease": "2.1.18", "latestReleaseDate": "2018-07-29T21:51:17.724Z" @@ -15523,7 +15747,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.649, + "popularity": -0.693, "topicSearchString": "react react-native firestack firebase oauth twitter" }, { @@ -15575,12 +15799,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-motion-manager", "npm": { - "downloads": 262, - "weekDownloads": 11, + "downloads": 285, + "weekDownloads": 7, "latestRelease": "0.0.7", "latestReleaseDate": "2017-09-27T12:17:54.830Z" }, @@ -15590,7 +15815,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.464, + "popularity": -1.479, "topicSearchString": "react-component react-native ios cmmotionmanager motionmanager gyroscope accelerometer magnetometer" }, { @@ -15643,13 +15868,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-apple-healthkit", "npm": { - "downloads": 1055, - "weekDownloads": 237, + "downloads": 1070, + "weekDownloads": 194, "size": 259249, "latestRelease": "0.8.0", "latestReleaseDate": "2020-01-21T15:34:44.210Z" @@ -15661,7 +15887,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.559, + "popularity": -0.595, "topicSearchString": "apple health-kit healthkit reactnative react-native react native ios" }, { @@ -15688,7 +15914,7 @@ "forks": 562, "issues": 5, "subscribers": 26, - "stars": 1678, + "stars": 1679, "dependencies": 0 }, "name": "react-native-contacts", @@ -15717,12 +15943,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-contacts", "npm": { - "downloads": 244839, - "weekDownloads": 49139, + "downloads": 235356, + "weekDownloads": 47390, "size": 305189, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-03T23:44:18.566Z" @@ -15779,13 +16006,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-background-job", "npm": { - "downloads": 3199, - "weekDownloads": 827, + "downloads": 2927, + "weekDownloads": 592, "size": 118071, "latestRelease": "2.3.1", "latestReleaseDate": "2019-08-02T14:35:33.022Z" @@ -15797,7 +16025,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.53, + "popularity": -0.578, "topicSearchString": "react-native background-job scheduled-jobs background-jobs" }, { @@ -15846,12 +16074,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-geocoder", "npm": { - "downloads": 13590, - "weekDownloads": 2227, + "downloads": 13142, + "weekDownloads": 2009, "latestRelease": "0.5.0", "latestReleaseDate": "2017-10-11T13:10:35.420Z" }, @@ -15861,7 +16090,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.611, + "popularity": -0.62, "topicSearchString": "react-component react-native geocoding ios android" }, { @@ -15908,12 +16137,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-orientation-listener", "npm": { - "downloads": 36, - "weekDownloads": 5, + "downloads": 88, + "weekDownloads": 2, "latestRelease": "0.0.4", "latestReleaseDate": "2016-03-07T01:32:49.989Z" }, @@ -15923,7 +16153,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.375, + "popularity": -1.48, "topicSearchString": "react-native orientation device-orientation" }, { @@ -15976,12 +16206,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-device-display", "npm": { - "downloads": 14, - "weekDownloads": 1, + "downloads": 61, + "weekDownloads": 2, "latestRelease": "1.0.4", "latestReleaseDate": "2015-07-24T12:53:31.048Z" }, @@ -15990,7 +16221,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.433, + "popularity": -1.471, "topicSearchString": "react-component react-native ios display viewport device orientation orientation-changes universal-apps device-detection" }, { @@ -16018,7 +16249,7 @@ "forks": 190, "issues": 0, "subscribers": 21, - "stars": 1582, + "stars": 1583, "dependencies": 0 }, "name": "react-native-background-fetch", @@ -16042,12 +16273,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-background-fetch", "npm": { - "downloads": 232237, - "weekDownloads": 42348, + "downloads": 227296, + "weekDownloads": 41141, "size": 2021445, "latestRelease": "4.2.8", "latestReleaseDate": "2025-05-02T13:36:50.699Z" @@ -16058,7 +16290,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.154, "topicSearchString": "react-native react-component ios background fetch" }, { @@ -16110,12 +16342,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-stripe", "npm": { - "downloads": 104, - "weekDownloads": 14, + "downloads": 155, + "weekDownloads": 10, "latestRelease": "1.2.2", "latestReleaseDate": "2017-05-01T12:37:02.644Z" }, @@ -16124,7 +16357,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.383, + "popularity": -1.444, "topicSearchString": "android ios login native react react-component react-native sdk stripe" }, { @@ -16176,12 +16409,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-speech", "npm": { - "downloads": 98, - "weekDownloads": 21, + "downloads": 113, + "weekDownloads": 19, "latestRelease": "0.1.2", "latestReleaseDate": "2016-01-09T20:44:09.432Z" }, @@ -16191,7 +16425,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.317, + "popularity": -1.354, "topicSearchString": "react-native react native siri speech speak speech-to-text react-component component" }, { @@ -16235,12 +16469,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-wordpress-editor", "npm": { - "downloads": 8336, - "weekDownloads": 1321, + "downloads": 8760, + "weekDownloads": 1895, "latestRelease": "2.0.1", "latestReleaseDate": "2016-11-20T16:50:28.964Z" }, @@ -16252,7 +16487,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.615, + "popularity": -0.566, "topicSearchString": "" }, { @@ -16298,13 +16533,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-search-bar", "npm": { - "downloads": 2102, - "weekDownloads": 261, + "downloads": 2549, + "weekDownloads": 430, "size": 59417, "latestRelease": "3.5.1", "latestReleaseDate": "2019-10-20T12:37:56.570Z" @@ -16316,7 +16552,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.644, + "popularity": -0.606, "topicSearchString": "search-bar react-component react-native ios" }, { @@ -16367,12 +16603,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-digits", "npm": { - "downloads": 21, - "weekDownloads": 6, + "downloads": 58, + "weekDownloads": 8, "latestRelease": "0.3.0", "latestReleaseDate": "2016-07-08T15:12:49.573Z" }, @@ -16381,7 +16618,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.2, + "popularity": -1.377, "topicSearchString": "react-native component fabric twitter authentication digits android" }, { @@ -16438,12 +16675,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-directed-scrollview", "npm": { - "downloads": 36, - "weekDownloads": 9, + "downloads": 108, + "weekDownloads": 7, "size": 48332, "latestRelease": "2.0.0", "latestReleaseDate": "2018-12-15T21:28:09.576Z" @@ -16454,7 +16692,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.275, + "popularity": -1.444, "topicSearchString": "react-component react-native ios android scrollview horizontal vertical direction native scroll react javascript reactnative" }, { @@ -16510,12 +16748,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-keyboard-input", "npm": { - "downloads": 3010, - "weekDownloads": 851, + "downloads": 2965, + "weekDownloads": 332, "size": 566469, "latestRelease": "6.0.2", "latestReleaseDate": "2020-07-05T14:34:55.296Z" @@ -16527,7 +16766,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.51, + "popularity": -0.655, "topicSearchString": "react-native react react-component custom-input input ios android keyboard-input keyboard keyboard-component inputaccessoryview" }, { @@ -16575,12 +16814,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-privacy-snapshot", "npm": { - "downloads": 515, - "weekDownloads": 68, + "downloads": 499, + "weekDownloads": 87, "latestRelease": "1.0.0", "latestReleaseDate": "2015-10-07T04:29:45.840Z" }, @@ -16590,7 +16830,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.388, + "popularity": -1.351, "topicSearchString": "react-native react-component privacy snapshot secure" }, { @@ -16639,13 +16879,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-android-sms-listener", "npm": { - "downloads": 1271, - "weekDownloads": 287, + "downloads": 1313, + "weekDownloads": 291, "size": 12426, "latestRelease": "0.8.0", "latestReleaseDate": "2020-09-09T12:29:22.306Z" @@ -16656,7 +16897,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.558, + "popularity": -0.561, "topicSearchString": "react native react-native android sms listener sms-listener" }, { @@ -16708,13 +16949,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-network-info", "npm": { - "downloads": 64363, - "weekDownloads": 11749, + "downloads": 62429, + "weekDownloads": 11920, "size": 76749, "latestRelease": "5.2.1", "latestReleaseDate": "2019-09-30T21:50:41.952Z" @@ -16725,7 +16967,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, + "popularity": -0.588, "topicSearchString": "react-component react-native ios network lan android-library ios-lib android networking" }, { @@ -16767,13 +17009,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-nodeify", "npm": { - "downloads": 72568, - "weekDownloads": 13724, + "downloads": 69652, + "weekDownloads": 12751, "size": 44267, "latestRelease": "10.3.0", "latestReleaseDate": "2021-04-19T16:37:11.401Z" @@ -16784,7 +17027,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, + "popularity": -0.594, "topicSearchString": "" }, { @@ -16829,13 +17072,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-extra-dimensions-android", "npm": { - "downloads": 21046, - "weekDownloads": 4651, + "downloads": 19137, + "weekDownloads": 4958, "size": 1238433, "latestRelease": "1.2.5", "latestReleaseDate": "2019-04-02T23:28:46.770Z" @@ -16846,7 +17090,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.562, + "popularity": -0.53, "topicSearchString": "react-native react android" }, { @@ -16899,12 +17143,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-proximity", "npm": { - "downloads": 119, - "weekDownloads": 33, + "downloads": 148, + "weekDownloads": 22, "latestRelease": "3.0.0", "latestReleaseDate": "2017-12-15T09:33:50.122Z" }, @@ -16914,7 +17159,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.264, + "popularity": -1.371, "topicSearchString": "react-native react native proximity proximity-sensor sensor iphone ios android" }, { @@ -16972,13 +17217,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-calendar-events", "npm": { - "downloads": 104163, - "weekDownloads": 21103, + "downloads": 100442, + "weekDownloads": 20548, "size": 156428, "latestRelease": "2.2.0", "latestReleaseDate": "2021-01-08T10:28:24.288Z" @@ -16990,7 +17236,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.578, + "popularity": -0.576, "topicSearchString": "react-native react-component ios android eventkit reminders calendar-events android-calendar-events ios-calendar-events alarms calendar-api recurring-events ios-calendar-api android-calendar-api module" }, { @@ -17042,13 +17288,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-photo-view", "npm": { - "downloads": 3279, - "weekDownloads": 475, + "downloads": 3407, + "weekDownloads": 614, "latestRelease": "1.5.2", "latestReleaseDate": "2017-09-27T18:09:07.508Z" }, @@ -17060,7 +17307,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.627, + "popularity": -0.597, "topicSearchString": "react-native react-component ios android gallery lightbox pinch pinch-to-zoom mobile" }, { @@ -17112,13 +17359,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-kit", "npm": { - "downloads": 3368, - "weekDownloads": 90, + "downloads": 3509, + "weekDownloads": 136, "size": 221221, "latestRelease": "0.6.0-beta.1", "latestReleaseDate": "2020-02-18T09:02:17.970Z" @@ -17132,7 +17380,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.727, + "popularity": -0.717, "topicSearchString": "react native react-component react-native component ios android material-design materialkit" }, { @@ -17183,12 +17431,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-i18n", "npm": { - "downloads": 274629, - "weekDownloads": 50287, + "downloads": 264728, + "weekDownloads": 61475, "size": 291743, "latestRelease": "2.0.15", "latestReleaseDate": "2018-07-18T21:11:32.687Z" @@ -17200,7 +17449,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.553, "topicSearchString": "react-native react-component ios i18n" }, { @@ -17246,12 +17495,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-image-zoom", "npm": { - "downloads": 696, - "weekDownloads": 198, + "downloads": 667, + "weekDownloads": 151, "latestRelease": "0.32.0", "latestReleaseDate": "2016-10-06T16:04:53.787Z" }, @@ -17261,7 +17511,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.257, + "popularity": -1.306, "topicSearchString": "react-native android react-component" }, { @@ -17308,13 +17558,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tooltip", "npm": { - "downloads": 2467, - "weekDownloads": 598, + "downloads": 2314, + "weekDownloads": 660, "size": 52763, "latestRelease": "5.2.0", "latestReleaseDate": "2018-02-08T16:32:39.485Z" @@ -17325,7 +17576,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.544, + "popularity": -0.507, "topicSearchString": "react react-native react-component ios tooltip" }, { @@ -17376,13 +17627,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bottom-sheet-behavior", "npm": { - "downloads": 6068, - "weekDownloads": 407, + "downloads": 6265, + "weekDownloads": 1820, "size": 115151372, "latestRelease": "2.0.0", "latestReleaseDate": "2019-05-29T10:06:17.607Z" @@ -17394,7 +17646,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.693, + "popularity": -0.503, "topicSearchString": "android react-native bottom-sheet-behavior coordinatorlayout bottomsheet bottomsheetbehavior google-maps floatingactionbutton nestedscrollview" }, { @@ -17440,12 +17692,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-intercom", "npm": { - "downloads": 7835, - "weekDownloads": 1324, + "downloads": 7984, + "weekDownloads": 1509, "size": 135825, "latestRelease": "21.1.1", "latestReleaseDate": "2021-12-09T00:40:37.727Z" @@ -17457,7 +17710,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.589, "topicSearchString": "" }, { @@ -17510,13 +17763,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-globalize", "npm": { - "downloads": 4647, - "weekDownloads": 823, + "downloads": 5305, + "weekDownloads": 719, "size": 23146620, "latestRelease": "4.5.1", "latestReleaseDate": "2021-01-03T19:34:07.301Z" @@ -17527,7 +17781,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.635, "topicSearchString": "react-native internationalization globalization localization i18n l10n currency datetime language" }, { @@ -17549,10 +17803,10 @@ "updatedAt": "2025-06-17T01:59:37Z", "createdAt": "2015-07-27T12:49:29Z", "pushedAt": "2025-06-17T01:59:37Z", - "forks": 264, + "forks": 262, "issues": 24, "subscribers": 44, - "stars": 3044, + "stars": 3045, "dependencies": 2 }, "name": "react-native-storage", @@ -17576,12 +17830,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-storage", "npm": { - "downloads": 54345, - "weekDownloads": 13427, + "downloads": 51883, + "weekDownloads": 11751, "size": 124306, "latestRelease": "1.0.1", "latestReleaseDate": "2019-04-11T15:47:20.329Z" @@ -17592,7 +17847,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.21, + "popularity": 0.193, "topicSearchString": "react-native localstorage asyncstorage reactjs sync" }, { @@ -17648,12 +17903,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-extended-stylesheet", "npm": { - "downloads": 47702, - "weekDownloads": 8918, + "downloads": 45495, + "weekDownloads": 8806, "size": 381852, "latestRelease": "0.12.0", "latestReleaseDate": "2019-07-05T17:13:46.237Z" @@ -17665,7 +17921,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.165, "topicSearchString": "react react-native react-component component mobile ios android stylesheets theme theming style styling" }, { @@ -17722,12 +17978,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-style-tachyons", "npm": { - "downloads": 3620, - "weekDownloads": 494, + "downloads": 3711, + "weekDownloads": 683, "size": 87713, "latestRelease": "4.2.9", "latestReleaseDate": "2025-02-01T06:48:02.539Z" @@ -17738,7 +17995,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.116, + "popularity": 0.156, "topicSearchString": "react react-native android ios stylesheet style responsive mobile performance design css typography css-modules" }, { @@ -17794,12 +18051,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-google-analytics", "npm": { - "downloads": 730, - "weekDownloads": 142, + "downloads": 771, + "weekDownloads": 150, "latestRelease": "1.3.2", "latestReleaseDate": "2016-05-27T06:49:33.573Z" }, @@ -17857,13 +18115,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "pouchdb-react-native", "npm": { - "downloads": 6111, - "weekDownloads": 294, + "downloads": 6565, + "weekDownloads": 326, "size": 6085, "latestRelease": "6.4.1", "latestReleaseDate": "2018-03-22T17:45:58.701Z" @@ -17874,7 +18133,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.709, + "popularity": -0.708, "topicSearchString": "pouchdb react-native asyncstorage offlinefirst" }, { @@ -17929,12 +18188,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-db-models", "npm": { - "downloads": 25, - "weekDownloads": 4, + "downloads": 45, + "weekDownloads": 12, "latestRelease": "0.1.3", "latestReleaseDate": "2016-02-14T01:47:16.059Z" }, @@ -17944,7 +18204,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.34, + "popularity": -1.26, "topicSearchString": "react-native asyncstorage database local-db db-events rerender emmit-database-operations models data-store ios" }, { @@ -17994,13 +18254,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "cairn", "npm": { - "downloads": 48, - "weekDownloads": 3, + "downloads": 65, + "weekDownloads": 5, "latestRelease": "0.8.0", "latestReleaseDate": "2017-06-12T17:42:11.291Z" }, @@ -18009,7 +18270,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.445, + "popularity": -1.433, "topicSearchString": "react react-native css styling styles cairn" }, { @@ -18058,13 +18319,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-slowlog", "npm": { - "downloads": 2961, - "weekDownloads": 369, + "downloads": 2869, + "weekDownloads": 441, "latestRelease": "1.0.2", "latestReleaseDate": "2017-02-08T09:40:22.247Z" }, @@ -18074,7 +18336,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.644, + "popularity": -0.619, "topicSearchString": "performance react-native debugging infrastructure tools" }, { @@ -18125,12 +18387,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-console-panel", "npm": { - "downloads": 971, - "weekDownloads": 177, + "downloads": 977, + "weekDownloads": 47, "latestRelease": "0.1.0", "latestReleaseDate": "2016-09-07T02:37:03.251Z" }, @@ -18140,7 +18403,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.345, + "popularity": -1.459, "topicSearchString": "react-component react-native ios android console debug-panel" }, { @@ -18192,12 +18455,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-dismiss-keyboard", "npm": { - "downloads": 22511, - "weekDownloads": 4188, + "downloads": 22277, + "weekDownloads": 2819, "latestRelease": "1.0.0", "latestReleaseDate": "2016-05-12T16:56:35.961Z" }, @@ -18206,7 +18470,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.642, "topicSearchString": "react-component react react-native ios android keyboard dismiss" }, { @@ -18253,12 +18517,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-popup", "npm": { - "downloads": 94, - "weekDownloads": 16, + "downloads": 159, + "weekDownloads": 22, "latestRelease": "0.6.1", "latestReleaseDate": "2016-11-14T06:56:10.980Z" }, @@ -18268,7 +18533,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.355, + "popularity": -1.381, "topicSearchString": "react-native popup" }, { @@ -18324,11 +18589,12 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 189229, - "weekDownloads": 34284, + "downloads": 182759, + "weekDownloads": 35472, "size": 93156, "latestRelease": "3.0.11", "latestReleaseDate": "2024-11-25T14:32:14.877Z" @@ -18340,7 +18606,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.165, "topicSearchString": "react-native react android ios images image image-resizer scaling scale resize jpeg" }, { @@ -18393,11 +18659,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 1477, - "weekDownloads": 251, + "downloads": 1545, + "weekDownloads": 189, "latestRelease": "1.0.7", "latestReleaseDate": "2017-10-16T03:44:01.130Z" }, @@ -18407,7 +18674,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, + "popularity": -0.646, "topicSearchString": "react-native react-component ios android toast position remobile mobile" }, { @@ -18458,12 +18725,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-lazyload", "npm": { - "downloads": 1043, - "weekDownloads": 293, + "downloads": 1087, + "weekDownloads": 357, "latestRelease": "1.1.0", "latestReleaseDate": "2016-08-26T12:26:38.140Z" }, @@ -18473,7 +18741,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.511, + "popularity": -0.47, "topicSearchString": "react-component react-native ios android lazyload load" }, { @@ -18530,12 +18798,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-nav", "npm": { - "downloads": 882, - "weekDownloads": 116, + "downloads": 1022, + "weekDownloads": 94, "latestRelease": "2.0.2", "latestReleaseDate": "2017-08-10T02:33:46.517Z" }, @@ -18545,7 +18814,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.388, + "popularity": -0.672, "topicSearchString": "react native ios android navigation bar component customizable navbar nav app react-native" }, { @@ -18596,12 +18865,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-imation", "npm": { - "downloads": 50, - "weekDownloads": 6, + "downloads": 113, + "weekDownloads": 1, "latestRelease": "0.5.3", "latestReleaseDate": "2015-11-27T08:32:54.684Z" }, @@ -18611,7 +18881,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.391, + "popularity": -1.492, "topicSearchString": "react react-native react-component animation tweening easing" }, { @@ -18661,12 +18931,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-android-tablayout", "npm": { - "downloads": 31, - "weekDownloads": 4, + "downloads": 136, + "weekDownloads": 3, "latestRelease": "0.3.0", "latestReleaseDate": "2016-06-23T18:34:47.746Z" }, @@ -18676,7 +18947,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.386, + "popularity": -1.481, "topicSearchString": "react-component react-native android tablayout design support" }, { @@ -18699,7 +18970,7 @@ "updatedAt": "2018-01-04T19:07:12Z", "createdAt": "2015-10-23T14:50:37Z", "pushedAt": "2018-01-04T19:07:12Z", - "forks": 273, + "forks": 272, "issues": 40, "subscribers": 37, "stars": 1619, @@ -18729,12 +19000,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gifted-listview", "npm": { - "downloads": 120, - "weekDownloads": 11, + "downloads": 147, + "weekDownloads": 9, "latestRelease": "0.0.15", "latestReleaseDate": "2016-05-12T14:45:53.931Z" }, @@ -18745,7 +19017,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.421, + "popularity": -1.447, "topicSearchString": "pull-to-refresh refreshable listview infinite-scrolling react-component react-native ios android" }, { @@ -18772,7 +19044,7 @@ "createdAt": "2017-06-18T17:57:06Z", "pushedAt": "2024-09-21T01:05:50Z", "forks": 56, - "issues": 2, + "issues": 3, "subscribers": 5, "stars": 440, "dependencies": 0 @@ -18803,12 +19075,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-simple-dialogs", "npm": { - "downloads": 8141, - "weekDownloads": 1633, + "downloads": 7876, + "weekDownloads": 1385, "size": 57180, "latestRelease": "2.1.1", "latestReleaseDate": "2025-06-11T17:09:34.794Z" @@ -18819,7 +19092,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.149, "topicSearchString": "react-native android ios dialog modal popup confirm progress cross-platform hacktoberfest" }, { @@ -18869,12 +19142,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-keyboard-manager", "npm": { - "downloads": 110910, - "weekDownloads": 23082, + "downloads": 104509, + "weekDownloads": 21724, "size": 45031, "latestRelease": "6.5.16-0", "latestReleaseDate": "2024-05-06T13:10:59.626Z" @@ -18936,13 +19210,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "nachos-ui", "npm": { - "downloads": 231, - "weekDownloads": 59, + "downloads": 242, + "weekDownloads": 43, "size": 817766, "latestRelease": "0.2.0-beta.1", "latestReleaseDate": "2018-06-12T16:17:33.174Z" @@ -18954,7 +19229,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.281, + "popularity": -1.346, "topicSearchString": "react react-component react-native ui-kit uikit web" }, { @@ -19004,12 +19279,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-material-design", "npm": { - "downloads": 228, - "weekDownloads": 41, + "downloads": 282, + "weekDownloads": 39, "latestRelease": "0.3.7", "latestReleaseDate": "2016-07-27T07:52:11.248Z" }, @@ -19020,7 +19296,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.345, + "popularity": -1.382, "topicSearchString": "react-native material design ui components react-component android" }, { @@ -19072,12 +19348,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "mrn", "npm": { - "downloads": 45, - "weekDownloads": 3, + "downloads": 85, + "weekDownloads": 1, "latestRelease": "0.1.7", "latestReleaseDate": "2015-11-30T12:19:47.883Z" }, @@ -19088,7 +19365,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.44, + "popularity": -1.49, "topicSearchString": "react-native material design ui components react-component mrn ui-components android" }, { @@ -19143,12 +19420,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-parallax", "npm": { - "downloads": 125, - "weekDownloads": 26, + "downloads": 140, + "weekDownloads": 22, "latestRelease": "0.3.0", "latestReleaseDate": "2016-06-13T15:09:17.201Z" }, @@ -19158,7 +19436,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.321, + "popularity": -1.363, "topicSearchString": "react-native react-component component react mobile ios android ui parallax image" }, { @@ -19209,12 +19487,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-chart", "npm": { - "downloads": 590, - "weekDownloads": 140, + "downloads": 618, + "weekDownloads": 190, "latestRelease": "1.0.8-beta", "latestReleaseDate": "2016-07-27T01:29:05.242Z" }, @@ -19225,7 +19504,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.297, + "popularity": -1.238, "topicSearchString": "chart javascript react-native svg" }, { @@ -19274,12 +19553,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-parallax-view", "npm": { - "downloads": 216, - "weekDownloads": 13, + "downloads": 288, + "weekDownloads": 9, "latestRelease": "2.0.6", "latestReleaseDate": "2016-09-16T17:42:38.276Z" }, @@ -19290,7 +19570,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.448, + "popularity": -1.473, "topicSearchString": "react react-native react-component parallax" }, { @@ -19351,12 +19631,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-collapsible", "npm": { - "downloads": 616353, - "weekDownloads": 118581, + "downloads": 596651, + "weekDownloads": 116980, "size": 30740, "latestRelease": "1.6.2", "latestReleaseDate": "2024-08-27T19:59:13.624Z" @@ -19369,7 +19650,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.167, "topicSearchString": "react-native react-component component react mobile ios android ui collapse collapsible toggle accordion animation" }, { @@ -19420,12 +19701,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-popover", "npm": { - "downloads": 2733, - "weekDownloads": 664, + "downloads": 2439, + "weekDownloads": 427, "latestRelease": "0.2.0", "latestReleaseDate": "2015-06-12T15:49:26.808Z" }, @@ -19436,7 +19718,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.543, + "popularity": -0.601, "topicSearchString": "react-component react-native ios ui popover modal" }, { @@ -19485,12 +19767,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-form-generator", "npm": { - "downloads": 2803, - "weekDownloads": 482, + "downloads": 2714, + "weekDownloads": 545, "latestRelease": "0.9.9", "latestReleaseDate": "2016-08-02T20:54:11.001Z" }, @@ -19500,7 +19783,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, + "popularity": -0.579, "topicSearchString": "react native forms input" }, { @@ -19556,12 +19839,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-simple-router", "npm": { - "downloads": 131, - "weekDownloads": 5, + "downloads": 217, + "weekDownloads": 1, "size": 230007, "latestRelease": "0.12.1", "latestReleaseDate": "2019-06-20T16:37:48.175Z" @@ -19572,7 +19856,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.467, + "popularity": -1.496, "topicSearchString": "react react-component react-native ios navigation navigation-bar navbar router simple react-router react-navigation" }, { @@ -19623,12 +19907,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-markdown", "npm": { - "downloads": 15, - "weekDownloads": 6, + "downloads": 56, + "weekDownloads": 5, "latestRelease": "0.1.1", "latestReleaseDate": "2015-04-21T06:27:55.981Z" }, @@ -19638,7 +19923,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.1, + "popularity": -1.423, "topicSearchString": "react native markdown md parse parser" }, { @@ -19691,12 +19976,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-custom-navigation", "npm": { - "downloads": 27, - "weekDownloads": 1, + "downloads": 34, + "weekDownloads": 0, "latestRelease": "0.2.2", "latestReleaseDate": "2016-01-11T10:56:07.503Z" }, @@ -19706,7 +19992,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.467, + "popularity": -1, "topicSearchString": "react react-component react-native react-navigation ios navigation navbar router" }, { @@ -19754,11 +20040,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gesture-recognizers", "npm": { - "downloads": 14, + "downloads": 17, "weekDownloads": 7, "latestRelease": "0.3.0", "latestReleaseDate": "2017-05-15T12:54:49.412Z" @@ -19769,7 +20056,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.033, + "popularity": -1.15, "topicSearchString": "react-native gesture detection" }, { @@ -19813,11 +20100,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gallery", "npm": { - "downloads": 100, + "downloads": 174, "weekDownloads": 4, "latestRelease": "0.0.17", "latestReleaseDate": "2016-07-22T02:49:44.964Z" @@ -19828,7 +20116,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.465, + "popularity": -1.48, "topicSearchString": "" }, { @@ -19878,12 +20166,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-md-textinput", "npm": { - "downloads": 1982, - "weekDownloads": 29, + "downloads": 2085, + "weekDownloads": 16, "latestRelease": "2.0.4", "latestReleaseDate": "2016-05-30T01:22:43.707Z" }, @@ -19893,7 +20182,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.738, + "popularity": -0.743, "topicSearchString": "react-native textinput material-design material design" }, { @@ -19942,12 +20231,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-custom-action-sheet", "npm": { - "downloads": 68, - "weekDownloads": 4, + "downloads": 123, + "weekDownloads": 2, "latestRelease": "0.0.11", "latestReleaseDate": "2016-05-30T16:24:28.403Z" }, @@ -19957,7 +20247,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.45, + "popularity": -1.486, "topicSearchString": "react-native react-component ios action-sheet" }, { @@ -20002,12 +20292,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-keyboard-aware-scrollview", "npm": { - "downloads": 19279, - "weekDownloads": 3987, + "downloads": 17579, + "weekDownloads": 3372, "size": 9923, "latestRelease": "2.1.0", "latestReleaseDate": "2019-11-13T10:03:11.577Z" @@ -20018,7 +20309,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.574, + "popularity": -0.587, "topicSearchString": "" }, { @@ -20071,12 +20362,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gestures", "npm": { - "downloads": 70, - "weekDownloads": 9, + "downloads": 80, + "weekDownloads": 6, "latestRelease": "0.3.0", "latestReleaseDate": "2016-06-15T06:01:07.574Z" }, @@ -20086,7 +20378,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.387, + "popularity": -1.433, "topicSearchString": "react-native react-component ios gestures pinch zoom drag drop" }, { @@ -20132,12 +20424,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ab", "npm": { - "downloads": 6, - "weekDownloads": 1, + "downloads": 12, + "weekDownloads": 3, "latestRelease": "0.1.0", "latestReleaseDate": "2015-04-22T21:03:35.174Z" }, @@ -20148,7 +20441,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -1.2, "topicSearchString": "react native ab test testing experiment variant" }, { @@ -20199,12 +20492,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-ptr", "npm": { - "downloads": 14, - "weekDownloads": 6, + "downloads": 37, + "weekDownloads": 5, "latestRelease": "1.1.1", "latestReleaseDate": "2017-01-31T17:40:04.522Z" }, @@ -20213,7 +20507,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.1, + "popularity": -1.375, "topicSearchString": "react-native react-component ios android animated pull-to-refresh" }, { @@ -20251,12 +20545,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-htmltext", "npm": { - "downloads": 40, - "weekDownloads": 10, + "downloads": 44, + "weekDownloads": 3, "latestRelease": "0.1.2", "latestReleaseDate": "2015-03-31T16:54:50.830Z" }, @@ -20266,7 +20561,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.278, + "popularity": -1.44, "topicSearchString": "" }, { @@ -20316,11 +20611,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-listitem", "npm": { - "downloads": 33, + "downloads": 117, "weekDownloads": 8, "latestRelease": "1.0.5", "latestReleaseDate": "2015-09-09T23:33:57.330Z" @@ -20330,7 +20626,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.271, + "popularity": -1.441, "topicSearchString": "react-native react-component ios listitem swipe ui" }, { @@ -20355,7 +20651,7 @@ "forks": 521, "issues": 33, "subscribers": 74, - "stars": 3309, + "stars": 3308, "dependencies": 0 }, "name": "react-native-ble-plx", @@ -20385,12 +20681,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "react-native-ble-plx", "npm": { - "downloads": 413798, - "weekDownloads": 74311, + "downloads": 398853, + "weekDownloads": 85880, "size": 813892, "latestRelease": "3.5.0", "latestReleaseDate": "2025-02-11T18:07:03.350Z" @@ -20403,7 +20700,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.183, "topicSearchString": "react-native ios android react native bluetooth low energy ble" }, { @@ -20460,13 +20757,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-placeholder", "npm": { - "downloads": 89903, - "weekDownloads": 16339, + "downloads": 85855, + "weekDownloads": 17635, "size": 49819, "latestRelease": "3.0.3", "latestReleaseDate": "2020-09-18T13:37:56.094Z" @@ -20478,7 +20776,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.575, "topicSearchString": "react-native ios android expo react ux placeholder" }, { @@ -20521,12 +20819,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-displayable", "npm": { - "downloads": 6, - "weekDownloads": 2, + "downloads": 14, + "weekDownloads": 0, "size": 220546, "latestRelease": "1.0.1", "latestReleaseDate": "2018-09-17T11:11:54.103Z" @@ -20537,7 +20836,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, + "popularity": -1, "topicSearchString": "react-native ios android expo" }, { @@ -20586,13 +20885,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "tipsi-stripe", "npm": { - "downloads": 5785, - "weekDownloads": 882, + "downloads": 6778, + "weekDownloads": 1038, "size": 343380, "latestRelease": "11.0.1", "latestReleaseDate": "2023-04-13T16:08:35.170Z" @@ -20630,7 +20930,7 @@ "forks": 208, "issues": 39, "subscribers": 44, - "stars": 1131, + "stars": 1133, "dependencies": 3 }, "name": "react-native-qrcode-svg", @@ -20653,12 +20953,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-qrcode-svg", "npm": { - "downloads": 1243448, - "weekDownloads": 239709, + "downloads": 1197256, + "weekDownloads": 249561, "size": 958130, "latestRelease": "6.3.15", "latestReleaseDate": "2025-02-21T05:44:01.802Z" @@ -20670,7 +20971,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.177, "topicSearchString": "react-native qrcode svg node-qrcode" }, { @@ -20692,13 +20993,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-14T14:52:34Z", + "updatedAt": "2025-10-19T11:09:55Z", "createdAt": "2021-04-20T12:33:05Z", - "pushedAt": "2025-10-14T14:52:34Z", - "forks": 188, + "pushedAt": "2025-10-19T11:09:55Z", + "forks": 190, "issues": 12, "subscribers": 18, - "stars": 911, + "stars": 912, "dependencies": 2 }, "name": "react-native-google-mobile-ads", @@ -20731,15 +21032,16 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-google-mobile-ads", "npm": { - "downloads": 171213, - "weekDownloads": 34428, - "size": 1229853, - "latestRelease": "15.8.1", - "latestReleaseDate": "2025-10-14T14:52:43.562Z" + "downloads": 166902, + "weekDownloads": 32663, + "size": 1230137, + "latestRelease": "15.8.2", + "latestReleaseDate": "2025-10-19T11:10:04.781Z" }, "score": 76, "matchingScoreModifiers": [ @@ -20747,7 +21049,7 @@ "Known", "Recently updated" ], - "popularity": 0.171, + "popularity": 0.166, "topicSearchString": "react react-native admob mobile-ads google-ads gdpr banner-ad rewarded-ad interstitial ad-consent android ios google" }, { @@ -20771,10 +21073,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 1 }, "name": "@react-native-firebase/analytics", @@ -20797,11 +21099,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 1826211, - "weekDownloads": 340038, + "downloads": 1735045, + "weekDownloads": 342937, "size": 289577, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:50.949Z" @@ -20814,7 +21117,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.168, "topicSearchString": "react react-native firebase analytics" }, { @@ -20838,10 +21141,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 0 }, "name": "@react-native-firebase/app-check", @@ -20865,11 +21168,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 96530, - "weekDownloads": 17245, + "downloads": 94565, + "weekDownloads": 18268, "size": 145320, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:50.694Z" @@ -20882,7 +21186,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.164, "topicSearchString": "react react-native firebase app-check appcheck" }, { @@ -20905,10 +21209,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 0 }, "name": "@react-native-firebase/app-distribution", @@ -20931,11 +21235,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 39806, - "weekDownloads": 7773, + "downloads": 38184, + "weekDownloads": 7873, "size": 86319, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:53.114Z" @@ -20948,7 +21253,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.175, "topicSearchString": "react react-native firebase app-distribution" }, { @@ -20972,10 +21277,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 1 }, "name": "@react-native-firebase/app", @@ -21025,11 +21330,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 3076767, - "weekDownloads": 581821, + "downloads": 2958056, + "weekDownloads": 583431, "size": 566327, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:50.778Z" @@ -21042,7 +21348,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.168, "topicSearchString": "react admob auth config digits fabric functions phone-auth sms firestore cloud-firestore datastore remote-config transactions react-native firebase firebase fcm apn gcm analytics messaging database android ios crash firestack performance firestore dynamic-links crashlytics" }, { @@ -21066,10 +21372,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 1 }, "name": "@react-native-firebase/auth", @@ -21092,11 +21398,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 595859, - "weekDownloads": 112587, + "downloads": 575869, + "weekDownloads": 109821, "size": 557066, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:53.374Z" @@ -21109,7 +21416,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.162, "topicSearchString": "react react-native firebase auth" }, { @@ -21133,10 +21440,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 1 }, "name": "@react-native-firebase/crashlytics", @@ -21164,11 +21471,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 1116210, - "weekDownloads": 215447, + "downloads": 1071470, + "weekDownloads": 212609, "size": 165233, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:53.563Z" @@ -21181,7 +21489,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.169, "topicSearchString": "react react-native firebase fabric crash bug error reporting crashlytics" }, { @@ -21205,10 +21513,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 0 }, "name": "@react-native-firebase/database", @@ -21234,11 +21542,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 93072, - "weekDownloads": 17223, + "downloads": 90671, + "weekDownloads": 16433, "size": 425011, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:53.720Z" @@ -21251,7 +21560,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.154, "topicSearchString": "react react-native firebase realtime database synchronized realtome-database" }, { @@ -21275,10 +21584,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 1 }, "name": "@react-native-firebase/firestore", @@ -21306,11 +21615,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 367642, - "weekDownloads": 66263, + "downloads": 355596, + "weekDownloads": 68690, "size": 613592, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:55.847Z" @@ -21323,7 +21633,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.164, "topicSearchString": "react react-native firebase cloud-firestore database nosql query realtime firestore" }, { @@ -21347,10 +21657,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 0 }, "name": "@react-native-firebase/functions", @@ -21375,11 +21685,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 89734, - "weekDownloads": 15051, + "downloads": 89183, + "weekDownloads": 17024, "size": 126543, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:55.999Z" @@ -21392,7 +21703,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.162, "topicSearchString": "react react-native firebase https callable functions" }, { @@ -21416,10 +21727,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 0 }, "name": "@react-native-firebase/in-app-messaging", @@ -21447,11 +21758,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 75271, - "weekDownloads": 13806, + "downloads": 73353, + "weekDownloads": 13517, "size": 96036, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:56.347Z" @@ -21464,7 +21776,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.157, "topicSearchString": "react react-native firebase in-app-messaging analytics predictions engage active-users inappmessaging" }, { @@ -21488,10 +21800,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 0 }, "name": "@react-native-firebase/messaging", @@ -21514,11 +21826,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 1886154, - "weekDownloads": 359113, + "downloads": 1809473, + "weekDownloads": 362028, "size": 298850, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:58.440Z" @@ -21531,7 +21844,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.17, "topicSearchString": "react react-native firebase messaging" }, { @@ -21555,10 +21868,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 0 }, "name": "@react-native-firebase/ml", @@ -21585,11 +21898,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 2365, - "weekDownloads": 427, + "downloads": 2882, + "weekDownloads": 468, "size": 86620, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:58.753Z" @@ -21602,7 +21916,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.138, "topicSearchString": "react react-native firebase ml machine-learning text-recognition landmark-recognition image-labeler" }, { @@ -21626,10 +21940,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 0 }, "name": "@react-native-firebase/perf", @@ -21657,11 +21971,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 486937, - "weekDownloads": 92950, + "downloads": 472671, + "weekDownloads": 92458, "size": 147324, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:58.637Z" @@ -21674,7 +21989,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.166, "topicSearchString": "react react-native firebase perf trace insight http latency performance-monitoring" }, { @@ -21698,10 +22013,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 1 }, "name": "@react-native-firebase/remote-config", @@ -21726,11 +22041,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 593146, - "weekDownloads": 117253, + "downloads": 561802, + "weekDownloads": 106914, "size": 168186, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:59.031Z" @@ -21743,7 +22059,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.162, "topicSearchString": "react react-native firebase config remote remote-config" }, { @@ -21767,10 +22083,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 0 }, "name": "@react-native-firebase/storage", @@ -21800,11 +22116,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 150465, - "weekDownloads": 26042, + "downloads": 148853, + "weekDownloads": 28131, "size": 286080, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:33:00.909Z" @@ -21817,7 +22134,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.161, "topicSearchString": "react react-native firebase images audio video json cloud-storage storage upload download" }, { @@ -21847,7 +22164,7 @@ "forks": 883, "issues": 555, "subscribers": 43, - "stars": 5034, + "stars": 5035, "dependencies": 2 }, "name": "react-native-fs", @@ -21875,12 +22192,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fs", "npm": { - "downloads": 1619767, - "weekDownloads": 317196, + "downloads": 1549440, + "weekDownloads": 318924, "size": 570292, "latestRelease": "2.20.0", "latestReleaseDate": "2022-05-04T16:06:26.809Z" @@ -21894,7 +22212,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.575, "topicSearchString": "react-component react-native ios android fs filesystem download upload file-transfer" }, { @@ -21944,13 +22262,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-cell-components", "npm": { - "downloads": 20, - "weekDownloads": 2, + "downloads": 733, + "weekDownloads": 4, "size": 65287, "latestRelease": "0.7.9", "latestReleaseDate": "2019-12-27T14:47:36.759Z" @@ -21960,7 +22279,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, + "popularity": -1.495, "topicSearchString": "react-native cell components ios listview tableview" }, { @@ -22018,12 +22337,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-photo-upload", "npm": { - "downloads": 703, - "weekDownloads": 130, + "downloads": 799, + "weekDownloads": 102, "size": 55942, "latestRelease": "1.3.0", "latestReleaseDate": "2018-08-31T20:33:32.975Z" @@ -22034,7 +22354,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.342, + "popularity": -1.391, "topicSearchString": "photo react react-native resizer image picker base64 ios android photos reactjs image-picker fs image-resizer" }, { @@ -22086,13 +22406,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-create-bridge", "npm": { - "downloads": 1956, - "weekDownloads": 286, + "downloads": 1832, + "weekDownloads": 357, "latestRelease": "2.0.1", "latestReleaseDate": "2018-01-29T03:30:07.772Z" }, @@ -22103,7 +22424,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.626, + "popularity": -0.584, "topicSearchString": "react native react-native bridge cli swift java objective-c kotlin" }, { @@ -22154,13 +22475,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-fa-icons", "npm": { - "downloads": 31, - "weekDownloads": 4, + "downloads": 98, + "weekDownloads": 8, "size": 190457, "latestRelease": "4.1.1", "latestReleaseDate": "2019-04-21T14:52:25.198Z" @@ -22170,7 +22492,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.636, + "popularity": -1.68, "topicSearchString": "react-native fonts font-awesome fontawesome icon icons-fontawesome icons" }, { @@ -22221,13 +22543,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "material-native", "npm": { - "downloads": 100, - "weekDownloads": 6, + "downloads": 164, + "weekDownloads": 4, "latestRelease": "0.0.0-alpha.16", "latestReleaseDate": "2017-11-22T11:06:54.322Z" }, @@ -22236,7 +22559,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.448, + "popularity": -1.479, "topicSearchString": "react react-component react-native material material-design android ios" }, { @@ -22290,12 +22613,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-submit-button", "npm": { - "downloads": 84, - "weekDownloads": 5, + "downloads": 91, + "weekDownloads": 4, "latestRelease": "1.0.5", "latestReleaseDate": "2017-01-19T19:50:24.058Z" }, @@ -22304,7 +22628,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.447, + "popularity": -1.462, "topicSearchString": "react native animated component button submit android ios react-native submit-button" }, { @@ -22328,7 +22652,7 @@ "forks": 153, "issues": 15, "subscribers": 12, - "stars": 453, + "stars": 454, "dependencies": 0 }, "name": "react-native-zip-archive", @@ -22355,12 +22679,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-zip-archive", "npm": { - "downloads": 145281, - "weekDownloads": 28610, + "downloads": 137552, + "weekDownloads": 27634, "size": 51330, "latestRelease": "7.0.2", "latestReleaseDate": "2025-06-15T10:42:34.957Z" @@ -22371,7 +22696,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.171, "topicSearchString": "react-native ios android zip archive zip-archive unzip zip-assets" }, { @@ -22419,12 +22744,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-actionsheet", "npm": { - "downloads": 69847, - "weekDownloads": 14546, + "downloads": 66123, + "weekDownloads": 13277, "size": 15598, "latestRelease": "2.4.2", "latestReleaseDate": "2018-04-23T01:06:55.589Z" @@ -22436,7 +22762,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.573, + "popularity": -0.579, "topicSearchString": "actionsheet action-sheet react-native custom-action-sheet" }, { @@ -22482,13 +22808,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-document-scanner", "npm": { - "downloads": 161, - "weekDownloads": 37, + "downloads": 203, + "weekDownloads": 48, "latestRelease": "1.4.2", "latestReleaseDate": "2017-11-09T14:30:29.256Z" }, @@ -22499,7 +22826,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -1.296, "topicSearchString": "react-native scanner ios document" }, { @@ -22548,13 +22875,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-perspective-image-cropper", "npm": { - "downloads": 352, - "weekDownloads": 80, + "downloads": 330, + "weekDownloads": 55, "size": 2063941, "latestRelease": "0.4.4", "latestReleaseDate": "2019-12-16T14:30:54.783Z" @@ -22565,7 +22893,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.305, + "popularity": -1.357, "topicSearchString": "react-native scanner crop react image custom perspective" }, { @@ -22616,13 +22944,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-loading-placeholder", "npm": { - "downloads": 1176, - "weekDownloads": 137, + "downloads": 2297, + "weekDownloads": 104, "latestRelease": "0.0.6", "latestReleaseDate": "2017-11-11T22:41:00.452Z" }, @@ -22631,7 +22960,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.651, + "popularity": -0.711, "topicSearchString": "react-native react-component ios android placeholder loading loader skeletor" }, { @@ -22689,11 +23018,12 @@ "newArchitecture": false, "isArchived": true, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 160, - "weekDownloads": 13, + "downloads": 231, + "weekDownloads": 47, "size": 292353, "latestRelease": "7.0.3", "latestReleaseDate": "2022-01-25T17:08:00.197Z" @@ -22703,7 +23033,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.43, + "popularity": -1.326, "topicSearchString": "react-native batch push notifications library push-notifications archived deprecated obsolete" }, { @@ -22750,7 +23080,8 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bouncy-drawer", @@ -22814,12 +23145,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-ios-drag-drop", "npm": { - "downloads": 41, - "weekDownloads": 13, + "downloads": 51, + "weekDownloads": 10, "latestRelease": "0.1.2", "latestReleaseDate": "2017-10-13T11:41:09.150Z" }, @@ -22828,7 +23160,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.211, + "popularity": -1.333, "topicSearchString": "react-native drag-and-drop ios react component" }, { @@ -22876,12 +23208,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-material-palette", "npm": { - "downloads": 770, - "weekDownloads": 18, + "downloads": 785, + "weekDownloads": 17, "latestRelease": "0.1.0", "latestReleaseDate": "2017-08-21T09:51:40.749Z" }, @@ -22890,7 +23223,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.48, + "popularity": -1.482, "topicSearchString": "react-native react material-design material-ui" }, { @@ -22951,12 +23284,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-onboarding-swiper", "npm": { - "downloads": 25736, - "weekDownloads": 5209, + "downloads": 25284, + "weekDownloads": 5292, "size": 32469, "latestRelease": "1.3.0", "latestReleaseDate": "2024-07-27T22:10:10.335Z" @@ -22968,7 +23302,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.178, "topicSearchString": "react native react-native component onboarding tutorial intro swiper welcome introduction instructions slider" }, { @@ -23023,13 +23357,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-ui", "npm": { - "downloads": 8512, - "weekDownloads": 313, + "downloads": 8846, + "weekDownloads": 306, "size": 281224, "latestRelease": "1.30.1", "latestReleaseDate": "2018-07-02T11:37:51.541Z" @@ -23043,7 +23378,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.719, + "popularity": -0.721, "topicSearchString": "react-native material design ui components react-component android material-design ui-kit ios" }, { @@ -23092,13 +23427,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-falling-drawer", "npm": { - "downloads": 62, - "weekDownloads": 14, + "downloads": 71, + "weekDownloads": 19, "latestRelease": "1.0.2", "latestReleaseDate": "2017-10-14T18:54:20.705Z" }, @@ -23107,7 +23443,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -1.262, "topicSearchString": "drawer falling customizable collapsible" }, { @@ -23151,12 +23487,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-render-perfs", "npm": { - "downloads": 4, - "weekDownloads": 1, + "downloads": 5, + "weekDownloads": 0, "latestRelease": "0.0.1", "latestReleaseDate": "2017-11-06T07:33:02.599Z" }, @@ -23217,13 +23554,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-schemes-manager", "npm": { - "downloads": 7643, - "weekDownloads": 1591, + "downloads": 7480, + "weekDownloads": 1445, "size": 27857, "latestRelease": "2.0.0", "latestReleaseDate": "2019-04-03T00:00:54.186Z" @@ -23234,7 +23572,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.573, + "popularity": -0.586, "topicSearchString": "react native xcode scheme build configuration environment variables react-native" }, { @@ -23263,9 +23601,9 @@ "createdAt": "2016-12-20T08:22:38Z", "pushedAt": "2023-06-12T07:52:42Z", "forks": 953, - "issues": 176, + "issues": 177, "subscribers": 123, - "stars": 10619, + "stars": 10618, "dependencies": 5 }, "name": "@ui-kitten/components", @@ -23287,7 +23625,8 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": {}, @@ -23360,12 +23699,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-offscreen-toolbar", "npm": { - "downloads": 38, - "weekDownloads": 2, + "downloads": 61, + "weekDownloads": 3, "latestRelease": "1.0.10", "latestReleaseDate": "2018-01-26T01:59:32.021Z" }, @@ -23374,7 +23714,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.7, + "popularity": -1.707, "topicSearchString": "react-native react-component component react mobile ui toolbar navbar header material material-design" }, { @@ -23421,12 +23761,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-braintree-payments-drop-in", "npm": { - "downloads": 141, + "downloads": 178, "weekDownloads": 18, "size": 66831, "latestRelease": "1.2.0", @@ -23437,7 +23778,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.391, + "popularity": -1.412, "topicSearchString": "react-native braintree payments drop-in" }, { @@ -23464,7 +23805,7 @@ "forks": 2749, "issues": 703, "subscribers": 227, - "stars": 34321, + "stars": 34326, "dependencies": 8 }, "name": "formik", @@ -23495,12 +23836,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "formik", "npm": { - "downloads": 13405440, - "weekDownloads": 2511068, + "downloads": 12904400, + "weekDownloads": 2441899, "size": 583234, "latestRelease": "2.4.6", "latestReleaseDate": "2024-04-24T22:22:59.781Z" @@ -23514,7 +23856,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.161, "topicSearchString": "formik form forms react react-dom hooks react-hooks validation render-props validation higher-order-component hoc" }, { @@ -23563,12 +23905,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-google-play-game-services", "npm": { - "downloads": 808, - "weekDownloads": 196, + "downloads": 724, + "weekDownloads": 129, "size": 29935053, "latestRelease": "1.0.0", "latestReleaseDate": "2018-03-12T01:19:43.981Z" @@ -23578,7 +23921,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.544, + "popularity": -1.598, "topicSearchString": "react-native google-play google-play-game-services android google-play-games google-play-service" }, { @@ -23630,13 +23973,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-popup-menu-android", "npm": { - "downloads": 903, - "weekDownloads": 88, + "downloads": 931, + "weekDownloads": 121, "size": 636653, "latestRelease": "1.0.3", "latestReleaseDate": "2018-05-22T08:08:18.606Z" @@ -23646,7 +23990,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.667, + "popularity": -1.639, "topicSearchString": "react-native android popup popover menu overlay native-native native material" }, { @@ -23698,13 +24042,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-scroll-paged-view", "npm": { - "downloads": 55, - "weekDownloads": 13, + "downloads": 354, + "weekDownloads": 8, "size": 151639, "latestRelease": "2.2.6", "latestReleaseDate": "2019-04-21T15:09:27.178Z" @@ -23714,7 +24059,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.283, + "popularity": -1.481, "topicSearchString": "react react-native scrollview full-page-scroll full-screen-scroll scroll paged view" }, { @@ -23764,12 +24109,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-azure-auth", "npm": { - "downloads": 10673, - "weekDownloads": 1998, + "downloads": 10163, + "weekDownloads": 1808, "size": 1887213, "latestRelease": "1.9.0", "latestReleaseDate": "2025-09-09T11:53:42.389Z" @@ -23779,7 +24125,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.151, "topicSearchString": "azure azuread authentication active-directory react-native oauth oauth2" }, { @@ -23827,13 +24173,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-modal-popover", "npm": { - "downloads": 32677, - "weekDownloads": 6319, + "downloads": 31555, + "weekDownloads": 6392, "size": 98527, "latestRelease": "2.1.3", "latestReleaseDate": "2022-12-30T12:05:28.732Z" @@ -23844,7 +24191,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.578, "topicSearchString": "react react-native popover modal" }, { @@ -23894,13 +24241,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-vkontakte-login", "npm": { - "downloads": 443, - "weekDownloads": 109, + "downloads": 671, + "weekDownloads": 118, "size": 70666, "latestRelease": "1.0.1", "latestReleaseDate": "2020-07-20T06:56:43.137Z" @@ -23910,7 +24258,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.29, + "popularity": -1.35, "topicSearchString": "react react-native vk vkontakte sdk login share" }, { @@ -23966,12 +24314,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-picker-select", "npm": { - "downloads": 560356, - "weekDownloads": 104079, + "downloads": 534312, + "weekDownloads": 100584, "size": 45794, "latestRelease": "9.3.1", "latestReleaseDate": "2024-08-12T17:35:26.682Z" @@ -23984,7 +24333,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.16, "topicSearchString": "dropdown picker select react react-native expo items frontend javascript library npm npm-package" }, { @@ -24032,12 +24381,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-keyguard", "npm": { "downloads": 20, - "weekDownloads": 2, + "weekDownloads": 3, "size": 72049, "latestRelease": "0.1.4", "latestReleaseDate": "2018-03-28T12:42:33.821Z" @@ -24047,7 +24397,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.65, + "popularity": -1.6, "topicSearchString": "react-component react-native android lock-screen" }, { @@ -24122,12 +24472,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-swiper-flatlist", "npm": { - "downloads": 64852, - "weekDownloads": 12667, + "downloads": 62517, + "weekDownloads": 12810, "size": 72808, "latestRelease": "3.2.5", "latestReleaseDate": "2024-09-10T17:12:49.737Z" @@ -24138,7 +24489,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.174, "topicSearchString": "swiper swiper-flatlist hooks typescript component react-native flatlist flatlist-swiper react native carousel slider scrollview images infinite scroll scrolling cards stack android ios swipeview swipe expo" }, { @@ -24194,13 +24545,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-grid-list", "npm": { - "downloads": 190, - "weekDownloads": 33, + "downloads": 204, + "weekDownloads": 39, "size": 1057645, "latestRelease": "1.1.0", "latestReleaseDate": "2019-10-01T14:44:52.319Z" @@ -24210,7 +24562,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, + "popularity": -1.337, "topicSearchString": "grid-list grid grid-view grid-component grid-layout react-native react flatlist flatlist-grid" }, { @@ -24277,12 +24629,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-image-marker", "npm": { - "downloads": 17006, - "weekDownloads": 3270, + "downloads": 16795, + "weekDownloads": 3173, "size": 291612, "latestRelease": "1.2.6", "latestReleaseDate": "2024-02-04T13:25:06.282Z" @@ -24293,7 +24646,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.161, "topicSearchString": "react-native ios android image marker text watermark icon mark photo reactnative icon-watermark" }, { @@ -24346,12 +24699,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-walkthrough-tooltip", "npm": { - "downloads": 281677, - "weekDownloads": 53360, + "downloads": 269346, + "weekDownloads": 54169, "size": 49891, "latestRelease": "1.6.0", "latestReleaseDate": "2024-01-09T16:28:39.537Z" @@ -24363,7 +24717,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.171, "topicSearchString": "react react-native walkthrough tooltip popover highlighting" }, { @@ -24412,12 +24766,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-canvas", "npm": { - "downloads": 43328, - "weekDownloads": 7364, + "downloads": 44313, + "weekDownloads": 7388, "size": 71319, "latestRelease": "0.1.40", "latestReleaseDate": "2024-06-02T10:21:56.140Z" @@ -24429,7 +24784,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.142, "topicSearchString": "react canvas native javascript graphics" }, { @@ -24481,13 +24836,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-draggable-calendar", "npm": { - "downloads": 27, - "weekDownloads": 3, + "downloads": 24, + "weekDownloads": 2, "size": 647560, "latestRelease": "1.0.2", "latestReleaseDate": "2018-09-27T01:07:49.524Z" @@ -24497,7 +24853,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, + "popularity": -1.42, "topicSearchString": "react-native calendar drag draggable draggable-calendar" }, { @@ -24549,13 +24905,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-pdf-reader-js", "npm": { - "downloads": 21923, - "weekDownloads": 4078, + "downloads": 21153, + "weekDownloads": 3919, "size": 112060, "latestRelease": "4.1.1", "latestReleaseDate": "2020-07-14T14:39:09.885Z" @@ -24566,7 +24923,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.593, "topicSearchString": "react-native pdf pdfjs reader pdf-reader pdf-viewer react-pdf expo" }, { @@ -24623,12 +24980,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-snackbar", "npm": { - "downloads": 58512, - "weekDownloads": 11410, + "downloads": 57132, + "weekDownloads": 10954, "size": 178467, "latestRelease": "2.9.0", "latestReleaseDate": "2025-03-29T21:30:01.555Z" @@ -24640,7 +24998,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.163, "topicSearchString": "react-native component ios android material-design snackbar snack-bar material" }, { @@ -24697,13 +25055,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-pseudo-localization", "npm": { - "downloads": 24, - "weekDownloads": 5, + "downloads": 26, + "weekDownloads": 3, "size": 9389, "latestRelease": "0.0.2", "latestReleaseDate": "2018-08-21T09:57:50.826Z" @@ -24713,7 +25072,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.55, + "popularity": -1.65, "topicSearchString": "chaos-engineering i18n internationalization l10n language localization pseudo-localization psuedo-localize psuedo translation i10n react-native pseudo" }, { @@ -24773,13 +25132,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-keyboard-accessory", "npm": { - "downloads": 50956, - "weekDownloads": 9315, + "downloads": 47924, + "weekDownloads": 8495, "size": 30087, "latestRelease": "0.1.16", "latestReleaseDate": "2021-11-29T19:12:30.426Z" @@ -24790,7 +25150,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, + "popularity": -0.599, "topicSearchString": "react react-native keyboard-accessory keyboard ios android react-component input-accessory sticky-views" }, { @@ -24851,12 +25211,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-date-picker", "npm": { - "downloads": 880188, - "weekDownloads": 170703, + "downloads": 843737, + "weekDownloads": 166101, "size": 3974706, "latestRelease": "5.0.13", "latestReleaseDate": "2025-06-05T18:32:24.047Z" @@ -24867,7 +25228,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.167, "topicSearchString": "datepicker date-picker react-native datetimepicker date-time-picker datepicker-component time-picker timepicker datetime" }, { @@ -24926,12 +25287,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gradients", "npm": { - "downloads": 13929, - "weekDownloads": 2341, + "downloads": 13639, + "weekDownloads": 2238, "size": 32964, "latestRelease": "2.1.1", "latestReleaseDate": "2023-11-03T13:59:48.339Z" @@ -24941,7 +25303,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.139, "topicSearchString": "react-component react-native ios android linear-gradient radial-gradient gradient react javascript es6" }, { @@ -24967,10 +25329,10 @@ "updatedAt": "2025-08-10T16:48:57Z", "createdAt": "2018-08-28T15:32:05Z", "pushedAt": "2025-08-10T16:48:57Z", - "forks": 605, + "forks": 606, "issues": 262, "subscribers": 106, - "stars": 11282, + "stars": 11284, "dependencies": 7 }, "name": "@nozbe/watermelondb", @@ -25005,11 +25367,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 70026, - "weekDownloads": 12789, + "downloads": 69195, + "weekDownloads": 12469, "size": 1301865, "latestRelease": "0.28.0", "latestReleaseDate": "2025-04-07T12:41:08.478Z" @@ -25022,7 +25385,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.153, "topicSearchString": "database sqlite react react-native indexeddb lokijs watermelon watermelondb offline offline-first persistence reactive rxjs better-sqlite3 db hacktoberfest" }, { @@ -25074,12 +25437,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-version-info", "npm": { - "downloads": 34545, - "weekDownloads": 6098, + "downloads": 33972, + "weekDownloads": 6493, "size": 43322, "latestRelease": "1.1.1", "latestReleaseDate": "2021-09-28T22:52:58.444Z" @@ -25089,7 +25453,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.162, "topicSearchString": "react react-native android ios react-component react-android react-ios react-windows" }, { @@ -25125,7 +25489,7 @@ "forks": 973, "issues": 14, "subscribers": 51, - "stars": 3595, + "stars": 3598, "dependencies": 0 }, "name": "react-native-track-player", @@ -25163,12 +25527,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-track-player", "npm": { - "downloads": 137347, - "weekDownloads": 26886, + "downloads": 131930, + "weekDownloads": 26376, "size": 386892, "latestRelease": "4.1.2", "latestReleaseDate": "2025-08-12T12:59:09.329Z" @@ -25181,7 +25546,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.17, "topicSearchString": "react react-native track-player audio-player audio player music controls chromecast android ios windows hooks music-player music-library media-control audio-library" }, { @@ -25236,12 +25601,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-hotspot", "npm": { - "downloads": 54, - "weekDownloads": 20, + "downloads": 55, + "weekDownloads": 11, "size": 12154, "latestRelease": "0.0.6", "latestReleaseDate": "2019-01-06T00:29:02.304Z" @@ -25251,7 +25617,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.417, + "popularity": -0.567, "topicSearchString": "hotspot tutorial onboarding react react-native expo frontend" }, { @@ -25302,13 +25668,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-text-avatar", "npm": { - "downloads": 215, - "weekDownloads": 26, + "downloads": 231, + "weekDownloads": 58, "size": 81573, "latestRelease": "1.0.7", "latestReleaseDate": "2019-06-06T15:33:24.369Z" @@ -25318,7 +25685,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.396, + "popularity": -1.285, "topicSearchString": "react-native component avatar text letter text-avatar letter-avatar" }, { @@ -25371,13 +25738,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-buglife", "npm": { - "downloads": 501, - "weekDownloads": 28, + "downloads": 603, + "weekDownloads": 13, "latestRelease": "0.1.13", "latestReleaseDate": "2018-01-30T02:04:41.106Z" }, @@ -25386,7 +25754,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.702, + "popularity": -1.732, "topicSearchString": "react-native react-component component react mobile ios android buglife bug-reporting bug-reporter" }, { @@ -25438,13 +25806,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-customize-selected-date", "npm": { - "downloads": 50, - "weekDownloads": 11, + "downloads": 51, + "weekDownloads": 15, "size": 2649648, "latestRelease": "1.0.1", "latestReleaseDate": "2018-12-30T10:00:36.854Z" @@ -25454,7 +25823,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.55, + "popularity": -1.5, "topicSearchString": "customize selected date calendar event customize-event react-native customize-date" }, { @@ -25500,11 +25869,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-suggester", "npm": { - "downloads": 0, + "downloads": 18, "weekDownloads": 0, "size": 46034, "latestRelease": "0.1.4", @@ -25564,13 +25934,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-scrolling-images", "npm": { - "downloads": 63, - "weekDownloads": 8, + "downloads": 124, + "weekDownloads": 3, "size": 4412552, "latestRelease": "1.0.6", "latestReleaseDate": "2022-06-28T23:16:07.401Z" @@ -25580,7 +25951,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.636, + "popularity": -1.729, "topicSearchString": "animated scrolling image background parallax" }, { @@ -25634,12 +26005,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-instagram-login", "npm": { - "downloads": 1463, - "weekDownloads": 288, + "downloads": 1854, + "weekDownloads": 229, "size": 454488, "latestRelease": "2.0.6", "latestReleaseDate": "2023-06-26T11:15:21.365Z" @@ -25650,7 +26022,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.105, "topicSearchString": "instagram login auth react-native ios android instagram-login instagram-api instagram-oauth authentication oauth" }, { @@ -25700,13 +26072,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ruler", "npm": { - "downloads": 75, - "weekDownloads": 17, + "downloads": 103, + "weekDownloads": 8, "size": 722087, "latestRelease": "0.1.0", "latestReleaseDate": "2019-05-24T17:09:43.770Z" @@ -25716,7 +26089,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -1.433, "topicSearchString": "devtools measure ruler react react-native expo" }, { @@ -25764,13 +26137,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-safe-image", "npm": { - "downloads": 33, - "weekDownloads": 2, + "downloads": 50, + "weekDownloads": 4, "size": 6685, "latestRelease": "1.2.0", "latestReleaseDate": "2019-11-07T11:11:53.761Z" @@ -25780,7 +26154,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.443, + "popularity": -1.427, "topicSearchString": "react-native image fallback typescript" }, { @@ -25806,10 +26180,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-apple-authentication", @@ -25834,12 +26208,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-apple-authentication", "npm": { - "downloads": 969272, - "weekDownloads": 198385, + "downloads": 930658, + "weekDownloads": 194228, "size": 116964, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-11T20:26:55.303Z" @@ -25852,7 +26227,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.177, "topicSearchString": "react-native expo expo-apple-authentiocation apple-authentication sign-in-with-apple" }, { @@ -25877,10 +26252,10 @@ "updatedAt": "2025-10-03T11:06:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-03T11:06:24Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-application", @@ -25903,12 +26278,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-application", "npm": { - "downloads": 4420289, - "weekDownloads": 849810, + "downloads": 4296260, + "weekDownloads": 834487, "size": 99150, "latestRelease": "7.0.7", "latestReleaseDate": "2025-09-11T20:26:58.712Z" @@ -25922,7 +26298,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.165, "topicSearchString": "react-native expo expo-application" }, { @@ -25948,10 +26324,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 2 }, "name": "expo-asset", @@ -25974,12 +26350,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-asset", "npm": { - "downloads": 7571164, - "weekDownloads": 1457729, + "downloads": 7382159, + "weekDownloads": 1469951, "size": 234569, "latestRelease": "12.0.9", "latestReleaseDate": "2025-09-18T21:33:34.428Z" @@ -25993,7 +26370,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.169, "topicSearchString": "react-native expo asset" }, { @@ -26025,10 +26402,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-av", @@ -26052,12 +26429,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-av", "npm": { - "downloads": 1657845, - "weekDownloads": 342548, + "downloads": 1612871, + "weekDownloads": 327796, "size": 1298055, "latestRelease": "16.0.7", "latestReleaseDate": "2025-09-11T20:26:40.031Z" @@ -26071,7 +26449,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.173, "topicSearchString": "expo react-native audio video" }, { @@ -26096,10 +26474,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-background-fetch", @@ -26124,12 +26502,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-background-fetch", "npm": { - "downloads": 178135, - "weekDownloads": 32939, + "downloads": 178103, + "weekDownloads": 33775, "size": 89627, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:26:33.758Z" @@ -26142,7 +26521,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.161, "topicSearchString": "expo react-native fetch background background-fetch" }, { @@ -26170,10 +26549,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-battery", @@ -26196,12 +26575,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-battery", "npm": { - "downloads": 104252, - "weekDownloads": 30312, + "downloads": 91950, + "weekDownloads": 20899, "size": 123826, "latestRelease": "10.0.7", "latestReleaseDate": "2025-09-11T20:26:16.986Z" @@ -26215,7 +26595,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.247, + "popularity": 0.193, "topicSearchString": "react-native expo expo-battery" }, { @@ -26244,10 +26624,10 @@ "updatedAt": "2025-10-09T13:21:16Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-09T13:21:16Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-blur", @@ -26270,12 +26650,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-blur", "npm": { - "downloads": 2465899, - "weekDownloads": 505816, + "downloads": 2371960, + "weekDownloads": 473998, "size": 96655, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:26:27.502Z" @@ -26289,7 +26670,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.17, "topicSearchString": "react-native expo expo-blur" }, { @@ -26316,10 +26697,10 @@ "updatedAt": "2025-10-05T16:45:15Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-05T16:45:15Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-brightness", @@ -26343,12 +26724,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-brightness", "npm": { - "downloads": 91469, - "weekDownloads": 18089, + "downloads": 87823, + "weekDownloads": 17046, "size": 105332, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:26:13.824Z" @@ -26362,7 +26744,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.165, "topicSearchString": "react-native expo expo-brightness brightness" }, { @@ -26388,10 +26770,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-calendar", @@ -26415,12 +26797,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-calendar", "npm": { - "downloads": 304512, - "weekDownloads": 63926, + "downloads": 290222, + "weekDownloads": 57966, "size": 496894, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:26:06.728Z" @@ -26434,7 +26817,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.17, "topicSearchString": "react-native expo calendar reminders" }, { @@ -26460,13 +26843,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-16T01:54:56Z", + "updatedAt": "2025-10-17T13:35:40Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-16T01:54:56Z", - "forks": 9188, - "issues": 379, + "pushedAt": "2025-10-17T13:35:40Z", + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-camera", @@ -26489,25 +26872,27 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-camera", "npm": { - "downloads": 1894145, - "weekDownloads": 380216, + "downloads": 1831834, + "weekDownloads": 363759, "size": 856717, "latestRelease": "17.0.8", "latestReleaseDate": "2025-09-16T01:55:35.365Z" }, - "score": 81, + "score": 86, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.169, "topicSearchString": "react-native expo camera" }, { @@ -26531,10 +26916,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-cellular", @@ -26557,12 +26942,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-cellular", "npm": { - "downloads": 41098, - "weekDownloads": 8497, + "downloads": 39414, + "weekDownloads": 7515, "size": 120223, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-11T20:26:02.035Z" @@ -26575,7 +26961,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.162, "topicSearchString": "react-native expo expo-cellular" }, { @@ -26601,10 +26987,10 @@ "updatedAt": "2025-09-24T16:46:32Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-24T16:46:32Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 2 }, "name": "expo-constants", @@ -26627,12 +27013,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-constants", "npm": { - "downloads": 8758966, - "weekDownloads": 1721502, + "downloads": 8344111, + "weekDownloads": 1686295, "size": 128424, "latestRelease": "18.0.9", "latestReleaseDate": "2025-09-16T20:36:29.256Z" @@ -26646,7 +27033,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.172, "topicSearchString": "react-native expo constants" }, { @@ -26666,13 +27053,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-01T01:01:24Z", + "updatedAt": "2025-10-17T09:55:16Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9188, - "issues": 379, + "pushedAt": "2025-10-17T09:55:16Z", + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-contacts", @@ -26695,12 +27082,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-contacts", "npm": { - "downloads": 356500, - "weekDownloads": 75470, + "downloads": 340908, + "weekDownloads": 68584, "size": 383075, "latestRelease": "15.0.9", "latestReleaseDate": "2025-10-01T00:23:16.955Z" @@ -26714,7 +27102,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.171, "topicSearchString": "react-native expo contacts" }, { @@ -26743,10 +27131,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-crypto", @@ -26774,12 +27162,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-crypto", "npm": { - "downloads": 2799000, - "weekDownloads": 535872, + "downloads": 2712907, + "weekDownloads": 530472, "size": 113953, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:25:44.611Z" @@ -26793,7 +27182,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.166, "topicSearchString": "react-native web expo crypto ios android web native" }, { @@ -26822,10 +27211,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-device", @@ -26848,12 +27237,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-device", "npm": { - "downloads": 2649438, - "weekDownloads": 506029, + "downloads": 2534991, + "weekDownloads": 496720, "size": 168182, "latestRelease": "8.0.9", "latestReleaseDate": "2025-10-01T00:23:01.101Z" @@ -26867,7 +27257,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.167, "topicSearchString": "react-native expo expo-device" }, { @@ -26892,10 +27282,10 @@ "updatedAt": "2025-09-17T16:20:32Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-17T16:20:32Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-document-picker", @@ -26919,26 +27309,26 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-document-picker", "npm": { - "downloads": 1396864, - "weekDownloads": 264559, + "downloads": 1357822, + "weekDownloads": 266628, "size": 105965, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:25:27.742Z" }, - "score": 86, + "score": 81, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.167, "topicSearchString": "react-native expo expo-document-picker document-picker" }, { @@ -26966,10 +27356,10 @@ "updatedAt": "2025-10-08T15:46:13Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-08T15:46:13Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-file-system", @@ -26993,12 +27383,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-file-system", "npm": { - "downloads": 8363791, - "weekDownloads": 1574032, + "downloads": 8172844, + "weekDownloads": 1583628, "size": 826832, "latestRelease": "19.0.17", "latestReleaseDate": "2025-10-09T19:33:35.051Z" @@ -27012,7 +27403,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.165, "topicSearchString": "react-native expo file-system file" }, { @@ -27041,10 +27432,10 @@ "updatedAt": "2025-10-03T11:02:07Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-03T11:02:07Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-font", @@ -27067,12 +27458,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-font", "npm": { - "downloads": 7679351, - "weekDownloads": 1454375, + "downloads": 7525343, + "weekDownloads": 1433558, "size": 221886, "latestRelease": "14.0.9", "latestReleaseDate": "2025-10-09T19:33:30.236Z" @@ -27086,7 +27478,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.162, "topicSearchString": "react-native expo font" }, { @@ -27113,10 +27505,10 @@ "updatedAt": "2025-09-24T22:46:28Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-24T22:46:28Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-gl", @@ -27141,12 +27533,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-gl", "npm": { - "downloads": 127447, - "weekDownloads": 23915, + "downloads": 127632, + "weekDownloads": 23028, "size": 1677281, "latestRelease": "16.0.7", "latestReleaseDate": "2025-09-11T20:25:07.882Z" @@ -27160,7 +27553,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.153, "topicSearchString": "react-native expo gl glview webgl" }, { @@ -27187,10 +27580,10 @@ "updatedAt": "2025-09-18T10:09:58Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-18T10:09:58Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-haptics", @@ -27214,26 +27607,26 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-haptics", "npm": { - "downloads": 3104514, - "weekDownloads": 607856, + "downloads": 3010319, + "weekDownloads": 599931, "size": 79943, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:24:59.272Z" }, - "score": 86, + "score": 81, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.169, "topicSearchString": "react-native expo expo-haptics haptics" }, { @@ -27261,10 +27654,10 @@ "updatedAt": "2025-09-17T15:06:11Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-17T15:06:11Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-image-manipulator", @@ -27287,26 +27680,26 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-image-manipulator", "npm": { - "downloads": 1095334, - "weekDownloads": 215860, + "downloads": 1064833, + "weekDownloads": 205248, "size": 194010, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-10T18:41:16.637Z" }, - "score": 86, + "score": 81, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.164, "topicSearchString": "react-native expo expo-image-manipulator" }, { @@ -27334,10 +27727,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-image-picker", @@ -27362,12 +27755,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-image-picker", "npm": { - "downloads": 2420143, - "weekDownloads": 459582, + "downloads": 2362524, + "weekDownloads": 450991, "size": 514405, "latestRelease": "17.0.8", "latestReleaseDate": "2025-09-11T20:24:50.405Z" @@ -27381,7 +27775,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.162, "topicSearchString": "react-native expo image picker image-picker" }, { @@ -27404,10 +27798,10 @@ "updatedAt": "2025-09-17T15:06:39Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-17T15:06:39Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-intent-launcher", @@ -27432,26 +27826,26 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-intent-launcher", "npm": { - "downloads": 316257, - "weekDownloads": 58048, + "downloads": 312130, + "weekDownloads": 59472, "size": 153498, "latestRelease": "13.0.7", "latestReleaseDate": "2025-09-11T20:24:53.583Z" }, - "score": 86, + "score": 81, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.162, "topicSearchString": "react-native expo expo-intent-launcher intent launcher" }, { @@ -27479,10 +27873,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-keep-awake", @@ -27506,12 +27900,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-keep-awake", "npm": { - "downloads": 7278413, - "weekDownloads": 1398910, + "downloads": 7089560, + "weekDownloads": 1379899, "size": 59680, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:24:45.573Z" @@ -27524,7 +27919,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.165, "topicSearchString": "react-native expo awake keep-awake" }, { @@ -27553,10 +27948,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-linear-gradient", @@ -27579,12 +27974,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-linear-gradient", "npm": { - "downloads": 3624105, - "weekDownloads": 768469, + "downloads": 3472354, + "weekDownloads": 735512, "size": 102960, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:24:39.486Z" @@ -27622,10 +28018,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-local-authentication", @@ -27652,12 +28048,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-local-authentication", "npm": { - "downloads": 941172, - "weekDownloads": 173647, + "downloads": 898212, + "weekDownloads": 172697, "size": 128326, "latestRelease": "17.0.7", "latestReleaseDate": "2025-09-11T20:24:30.286Z" @@ -27670,7 +28067,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.163, "topicSearchString": "react-native expo authentication auth touchid faceid fingerprint" }, { @@ -27696,10 +28093,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-localization", @@ -27724,12 +28121,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-localization", "npm": { - "downloads": 1928187, - "weekDownloads": 376432, + "downloads": 1859496, + "weekDownloads": 357763, "size": 146564, "latestRelease": "17.0.7", "latestReleaseDate": "2025-09-11T20:24:25.960Z" @@ -27743,7 +28141,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.164, "topicSearchString": "react-native expo localization locales l10n" }, { @@ -27771,10 +28169,10 @@ "updatedAt": "2025-09-18T10:10:25Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-18T10:10:25Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-location", @@ -27802,26 +28200,26 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-location", "npm": { - "downloads": 1779059, - "weekDownloads": 349091, + "downloads": 1693724, + "weekDownloads": 339492, "size": 572754, "latestRelease": "19.0.7", "latestReleaseDate": "2025-09-11T20:24:20.842Z" }, - "score": 86, + "score": 81, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.17, "topicSearchString": "react-native expo location geolocation coords geocoding compass heading" }, { @@ -27845,10 +28243,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-mail-composer", @@ -27872,12 +28270,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-mail-composer", "npm": { - "downloads": 198883, - "weekDownloads": 35396, + "downloads": 196095, + "weekDownloads": 35774, "size": 93038, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:24:12.666Z" @@ -27891,7 +28290,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.155, "topicSearchString": "react-native expo mail composer" }, { @@ -27919,10 +28318,10 @@ "updatedAt": "2025-10-02T09:11:23Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-02T09:11:23Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-media-library", @@ -27949,12 +28348,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-media-library", "npm": { - "downloads": 883720, - "weekDownloads": 184533, + "downloads": 851572, + "weekDownloads": 172015, "size": 1093857, "latestRelease": "18.2.0", "latestReleaseDate": "2025-09-16T20:35:47.752Z" @@ -27967,7 +28367,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.177, + "popularity": 0.172, "topicSearchString": "react-native expo media library cameraroll photos videos" }, { @@ -27992,10 +28392,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-network", @@ -28018,12 +28418,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-network", "npm": { - "downloads": 529245, - "weekDownloads": 112800, + "downloads": 499614, + "weekDownloads": 98248, "size": 89966, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-11T20:23:58.047Z" @@ -28036,7 +28437,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.181, + "popularity": 0.167, "topicSearchString": "react-native expo expo-network" }, { @@ -28062,10 +28463,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 7 }, "name": "expo-notifications", @@ -28090,12 +28491,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-notifications", "npm": { - "downloads": 2667371, - "weekDownloads": 510420, + "downloads": 2595645, + "weekDownloads": 498705, "size": 1547675, "latestRelease": "0.32.12", "latestReleaseDate": "2025-10-01T00:22:29.226Z" @@ -28170,12 +28572,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-pixi", "npm": { - "downloads": 528, - "weekDownloads": 97, + "downloads": 515, + "weekDownloads": 77, "size": 42398, "latestRelease": "2.1.1", "latestReleaseDate": "2022-05-16T16:19:00.766Z" @@ -28187,7 +28590,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.344, + "popularity": -1.373, "topicSearchString": "react native expo exponent game gl graphics opengl 2d pixi pixi.js sprite webgl cross-platform signature" }, { @@ -28211,10 +28614,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-print", @@ -28240,12 +28643,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-print", "npm": { - "downloads": 348972, - "weekDownloads": 65867, + "downloads": 337529, + "weekDownloads": 66497, "size": 148779, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:23:54.845Z" @@ -28258,7 +28662,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.167, "topicSearchString": "react-native expo print android ios airprint" }, { @@ -28281,10 +28685,10 @@ "updatedAt": "2025-09-16T20:34:34Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-16T20:34:34Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-processing", @@ -28308,26 +28712,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-processing", "npm": { - "downloads": 1290, - "weekDownloads": 196, + "downloads": 1339, + "weekDownloads": 116, "size": 5371, "latestRelease": "3.0.5", "latestReleaseDate": "2025-09-16T20:35:28.302Z" }, - "score": 86, + "score": 81, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.129, + "popularity": 0.074, "topicSearchString": "expo processing.js graphics opengl gl" }, { @@ -28355,10 +28759,10 @@ "updatedAt": "2025-10-09T17:48:51Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-09T17:48:51Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-secure-store", @@ -28383,12 +28787,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-secure-store", "npm": { - "downloads": 2687554, - "weekDownloads": 500951, + "downloads": 2624627, + "weekDownloads": 490652, "size": 212953, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:23:31.069Z" @@ -28402,7 +28807,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.159, "topicSearchString": "react-native expo expo-secure-store secure store" }, { @@ -28435,10 +28840,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-sensors", @@ -28468,12 +28873,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-sensors", "npm": { - "downloads": 475968, - "weekDownloads": 103842, + "downloads": 453759, + "weekDownloads": 103677, "size": 341443, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:23:23.611Z" @@ -28486,7 +28892,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.185, + "popularity": 0.194, "topicSearchString": "react-native expo sensors accelerometer devicemotion gyroscope lightsensor magnetometer pedometer barometer" }, { @@ -28509,10 +28915,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-sms", @@ -28535,12 +28941,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-sms", "npm": { - "downloads": 167523, - "weekDownloads": 30644, + "downloads": 165994, + "weekDownloads": 30734, "size": 70119, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:23:27.085Z" @@ -28554,7 +28961,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.157, "topicSearchString": "react-native expo sms" }, { @@ -28581,10 +28988,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-speech", @@ -28609,12 +29016,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-speech", "npm": { - "downloads": 225083, - "weekDownloads": 42080, + "downloads": 224087, + "weekDownloads": 41929, "size": 124755, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:23:34.287Z" @@ -28656,10 +29064,10 @@ "updatedAt": "2025-09-10T18:37:51Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-10T18:37:51Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-sqlite", @@ -28685,12 +29093,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-sqlite", "npm": { - "downloads": 521652, - "weekDownloads": 96757, + "downloads": 519338, + "weekDownloads": 96537, "size": 74309093, "latestRelease": "16.0.8", "latestReleaseDate": "2025-09-10T18:40:43.856Z" @@ -28730,10 +29139,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-store-review", @@ -28759,12 +29168,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-store-review", "npm": { - "downloads": 731251, - "weekDownloads": 138333, + "downloads": 703904, + "weekDownloads": 128757, "size": 54769, "latestRelease": "9.0.8", "latestReleaseDate": "2025-10-01T00:22:23.965Z" @@ -28778,7 +29188,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.155, "topicSearchString": "react-native expo expo-store-review reviews app-store google-play-store" }, { @@ -28804,10 +29214,10 @@ "updatedAt": "2025-10-16T10:21:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-16T10:21:20Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-task-manager", @@ -28832,12 +29242,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-task-manager", "npm": { - "downloads": 633616, - "weekDownloads": 125883, + "downloads": 614722, + "weekDownloads": 119342, "size": 260128, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:22:53.498Z" @@ -28851,7 +29262,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.165, "topicSearchString": "expo react-native task-manager task background" }, { @@ -28916,12 +29327,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-three", "npm": { - "downloads": 69349, - "weekDownloads": 14159, + "downloads": 67015, + "weekDownloads": 13558, "size": 126395, "latestRelease": "8.0.0", "latestReleaseDate": "2024-07-28T18:03:20.616Z" @@ -28934,7 +29346,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.172, "topicSearchString": "three.js three gaming graphics opengl gl expo arkit expo-web react react-native web threejs ar-session javascript javascript-game" }, { @@ -28961,10 +29373,10 @@ "updatedAt": "2025-09-18T10:10:06Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-18T10:10:06Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-video-thumbnails", @@ -28990,26 +29402,26 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-video-thumbnails", "npm": { - "downloads": 214395, - "weekDownloads": 47211, + "downloads": 202362, + "weekDownloads": 39980, "size": 65536, "latestRelease": "10.0.7", "latestReleaseDate": "2025-09-10T18:40:05.356Z" }, - "score": 86, + "score": 81, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.187, + "popularity": 0.168, "topicSearchString": "react-native expo expo-video-thumbnails thumbnail android ios" }, { @@ -29037,10 +29449,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-web-browser", @@ -29065,12 +29477,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-web-browser", "npm": { - "downloads": 6232442, - "weekDownloads": 1202456, + "downloads": 6086762, + "weekDownloads": 1197411, "size": 268368, "latestRelease": "15.0.8", "latestReleaseDate": "2025-10-01T00:22:10.507Z" @@ -29084,7 +29497,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.167, "topicSearchString": "react-native expo expo-web-browser web browser" }, { @@ -29109,10 +29522,10 @@ "updatedAt": "2025-10-15T18:17:51Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-15T18:17:51Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 15 }, "name": "jest-expo", @@ -29130,12 +29543,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "jest-expo", "npm": { - "downloads": 2954581, - "weekDownloads": 565251, + "downloads": 2857927, + "weekDownloads": 548887, "size": 121978, "latestRelease": "54.0.12", "latestReleaseDate": "2025-09-18T21:32:10.473Z" @@ -29198,11 +29612,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-verifcode", "npm": { - "downloads": 4, + "downloads": 7, "weekDownloads": 0, "size": 17449, "latestRelease": "0.0.1", @@ -29271,11 +29686,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 285, - "weekDownloads": 45, + "downloads": 657, + "weekDownloads": 69, "size": 128960, "latestRelease": "3.2.2", "latestReleaseDate": "2020-09-30T11:58:24.477Z" @@ -29285,7 +29701,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.366, + "popularity": -1.41, "topicSearchString": "in-app browser react-native custom-tabs tabs chrome chrome-custom-tabs safari-view-controller sfsafariviewcontroller kotlin swift typescript flow" }, { @@ -29336,12 +29752,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-window-guard", "npm": { - "downloads": 440, + "downloads": 429, "weekDownloads": 89, "size": 423025, "latestRelease": "1.0.6", @@ -29352,7 +29769,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.327, + "popularity": -1.322, "topicSearchString": "react-native component safearea ios android" }, { @@ -29397,13 +29814,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-dns-lookup", "npm": { - "downloads": 4328, - "weekDownloads": 898, + "downloads": 3789, + "weekDownloads": 613, "size": 18220, "latestRelease": "1.0.6", "latestReleaseDate": "2022-10-06T19:49:26.758Z" @@ -29413,7 +29831,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.574, + "popularity": -0.612, "topicSearchString": "dns" }, { @@ -29481,12 +29899,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-input-spinner", "npm": { - "downloads": 6289, - "weekDownloads": 1281, + "downloads": 7346, + "weekDownloads": 885, "size": 464934, "latestRelease": "1.8.1", "latestReleaseDate": "2023-04-25T15:29:36.778Z" @@ -29498,7 +29917,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.102, "topicSearchString": "component react-component react-native android ios windows reactnative spinner number input float real integer decimal int selector" }, { @@ -29548,12 +29967,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 1711, - "weekDownloads": 276, + "downloads": 1727, + "weekDownloads": 278, "size": 30714, "latestRelease": "1.5.0", "latestReleaseDate": "2022-08-02T20:30:04.704Z" @@ -29611,12 +30031,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 277, - "weekDownloads": 30, + "downloads": 280, + "weekDownloads": 32, "size": 16898, "latestRelease": "1.2.0", "latestReleaseDate": "2022-08-02T20:29:36.447Z" @@ -29626,7 +30047,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.408, + "popularity": -1.402, "topicSearchString": "react-native expandable accordion" }, { @@ -29674,12 +30095,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 158, - "weekDownloads": 15, + "downloads": 182, + "weekDownloads": 17, "size": 9146, "latestRelease": "2.1.0", "latestReleaseDate": "2022-08-02T20:29:57.380Z" @@ -29738,12 +30160,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 3602, - "weekDownloads": 495, + "downloads": 3510, + "weekDownloads": 704, "size": 15925, "latestRelease": "1.2.0", "latestReleaseDate": "2022-08-02T20:30:11.410Z" @@ -29753,7 +30176,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.633, + "popularity": -0.579, "topicSearchString": "react-native slider swiper gallery" }, { @@ -29805,13 +30228,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-eva-icons", "npm": { - "downloads": 22021, - "weekDownloads": 4720, + "downloads": 20775, + "weekDownloads": 3995, "size": 1162020, "latestRelease": "1.3.1", "latestReleaseDate": "2020-04-08T11:12:49.822Z" @@ -29822,7 +30246,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.568, + "popularity": -0.587, "topicSearchString": "react-native eva-icons svg icons-source" }, { @@ -29878,13 +30302,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-nested-listview", "npm": { - "downloads": 1963, - "weekDownloads": 254, + "downloads": 2230, + "weekDownloads": 253, "size": 479208, "latestRelease": "0.14.2", "latestReleaseDate": "2022-10-14T16:56:40.784Z" @@ -29895,7 +30320,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.64, + "popularity": -0.653, "topicSearchString": "react native list nested react-native listview nested-structures nested-objects reactjs react-component tree treeview android" }, { @@ -29945,13 +30370,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-wifi-p2p", "npm": { - "downloads": 1000, - "weekDownloads": 228, + "downloads": 1005, + "weekDownloads": 237, "size": 73291, "latestRelease": "3.6.0", "latestReleaseDate": "2023-08-21T07:46:34.867Z" @@ -29962,7 +30388,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.556, + "popularity": -0.549, "topicSearchString": "react-native android p2p peer-to-peer wifi-direct wi-fi-direct wifi-p2p-manager wifi" }, { @@ -30027,12 +30453,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-bundle-splitter", "npm": { - "downloads": 8921, - "weekDownloads": 1975, + "downloads": 8454, + "weekDownloads": 1631, "size": 20497, "latestRelease": "3.0.1", "latestReleaseDate": "2024-07-22T10:46:38.811Z" @@ -30043,7 +30470,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.188, + "popularity": 0.164, "topicSearchString": "react native react-native web bundle bundles separate separator split splitter splitting inline require ram js-bundle lazy loading loadable unbundle ios android ram-bundle" }, { @@ -30096,13 +30523,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-gesture-detector", "npm": { - "downloads": 60, - "weekDownloads": 7, + "downloads": 67, + "weekDownloads": 4, "size": 48992, "latestRelease": "1.1.2", "latestReleaseDate": "2020-07-06T00:34:02.005Z" @@ -30112,7 +30540,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, + "popularity": -1.447, "topicSearchString": "react-native gesture custom-gestures detection component" }, { @@ -30172,13 +30600,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-indicators", "npm": { - "downloads": 71506, - "weekDownloads": 13922, + "downloads": 67819, + "weekDownloads": 13813, "size": 36294, "latestRelease": "0.17.0", "latestReleaseDate": "2019-10-15T21:33:58.446Z" @@ -30190,7 +30619,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.577, "topicSearchString": "react react-component react-native ios android activity indicator spinner pacman material" }, { @@ -30251,11 +30680,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 473752, - "weekDownloads": 86992, + "downloads": 458800, + "weekDownloads": 87636, "size": 206250, "latestRelease": "10.1.7", "latestReleaseDate": "2025-09-20T20:10:54.000Z" @@ -30267,7 +30697,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.162, "topicSearchString": "react-native document picker uidocumentmenuviewcontroller dropbox google-drive icloud" }, { @@ -30331,13 +30761,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-modern-datepicker", "npm": { - "downloads": 14397, - "weekDownloads": 2807, + "downloads": 13871, + "weekDownloads": 3186, "size": 42809, "latestRelease": "1.0.0-beta.91", "latestReleaseDate": "2020-07-23T15:33:00.852Z" @@ -30349,7 +30780,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.555, "topicSearchString": "react react-native datepicker calendar calendars persian-calendar jalaali-calendar time-picker month-picker persian jalaali customizable-datepicker" }, { @@ -30409,11 +30840,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 204041, - "weekDownloads": 41295, + "downloads": 196269, + "weekDownloads": 38153, "size": 34660, "latestRelease": "2.2.2", "latestReleaseDate": "2020-03-27T09:10:27.540Z" @@ -30426,7 +30858,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.165, "topicSearchString": "multi-slider react-component react-components react native slider multiple react-native component ios android" }, { @@ -30478,12 +30910,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 851219, - "weekDownloads": 158831, + "downloads": 812672, + "weekDownloads": 169043, "size": 121198, "latestRelease": "6.2.1", "latestReleaseDate": "2022-05-11T17:05:28.532Z" @@ -30495,7 +30928,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.573, "topicSearchString": "react-native component android ios cookies webview" }, { @@ -30516,7 +30949,7 @@ "updatedAt": "2025-05-02T20:47:09Z", "createdAt": "2019-12-08T14:43:48Z", "pushedAt": "2025-05-02T20:47:09Z", - "forks": 98, + "forks": 99, "issues": 14, "subscribers": 4, "stars": 290, @@ -30543,12 +30976,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-create-thumbnail", "npm": { - "downloads": 98112, - "weekDownloads": 20367, + "downloads": 94163, + "weekDownloads": 19935, "size": 47131, "latestRelease": "2.1.1", "latestReleaseDate": "2025-03-25T18:27:50.211Z" @@ -30558,7 +30992,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.18, "topicSearchString": "react-native thumbnails video android ios" }, { @@ -30590,13 +31024,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T16:00:14Z", + "updatedAt": "2025-10-17T14:23:26Z", "createdAt": "2018-04-25T06:35:29Z", - "pushedAt": "2025-10-16T16:00:14Z", - "forks": 1371, - "issues": 205, + "pushedAt": "2025-10-17T14:23:26Z", + "forks": 1372, + "issues": 203, "subscribers": 80, - "stars": 10335, + "stars": 10341, "dependencies": 2 }, "name": "react-native-reanimated", @@ -30620,12 +31054,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-reanimated", "npm": { - "downloads": 8420913, - "weekDownloads": 1589789, + "downloads": 8191956, + "weekDownloads": 1588183, "size": 3600558, "latestRelease": "4.1.3", "latestReleaseDate": "2025-10-09T14:02:39.807Z" @@ -30638,7 +31073,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.16, + "popularity": 0.165, "topicSearchString": "react-native react native reanimated" }, { @@ -30695,12 +31130,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 21899, - "weekDownloads": 4289, + "downloads": 21178, + "weekDownloads": 3933, "size": 210832, "latestRelease": "1.0.0-alpha.22", "latestReleaseDate": "2020-08-14T13:47:41.291Z" @@ -30713,7 +31149,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.592, "topicSearchString": "react-native bottom-sheet reanimated gesture handler" }, { @@ -30775,12 +31211,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 16016, - "weekDownloads": 2115, + "downloads": 15658, + "weekDownloads": 2067, "size": 168050, "latestRelease": "1.1.4", "latestReleaseDate": "2022-07-05T11:14:36.595Z" @@ -30837,12 +31274,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-media-clipboard", "npm": { - "downloads": 11, + "downloads": 15, "weekDownloads": 0, "size": 147632, "latestRelease": "1.0.3", @@ -30910,13 +31348,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "emoji-mart-native", "npm": { - "downloads": 3320, - "weekDownloads": 658, + "downloads": 3471, + "weekDownloads": 680, "size": 9383079, "latestRelease": "0.6.5-beta", "latestReleaseDate": "2022-12-28T10:46:02.094Z" @@ -30926,7 +31365,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.581, + "popularity": -0.583, "topicSearchString": "react native react-native emoji picker emoji-mart emoji-picker emoji-component custom-emojis modalpicker" }, { @@ -30950,10 +31389,10 @@ "updatedAt": "2025-10-09T16:29:30Z", "createdAt": "2016-02-10T16:06:07Z", "pushedAt": "2025-10-09T16:29:30Z", - "forks": 1485, + "forks": 1483, "issues": 25, "subscribers": 233, - "stars": 19225, + "stars": 19236, "dependencies": 6 }, "name": "ignite-cli", @@ -30978,11 +31417,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 33545, - "weekDownloads": 7326, + "downloads": 32506, + "weekDownloads": 6857, "size": 1886418, "latestRelease": "11.3.2", "latestReleaseDate": "2025-10-09T16:29:36.667Z" @@ -30995,7 +31435,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.186, + "popularity": 0.179, "topicSearchString": "cli react-native generator boilerplate expo mst" }, { @@ -31018,10 +31458,10 @@ "updatedAt": "2025-10-13T17:13:46Z", "createdAt": "2016-04-15T21:58:32Z", "pushedAt": "2025-10-13T17:13:46Z", - "forks": 956, + "forks": 955, "issues": 133, "subscribers": 156, - "stars": 15380, + "stars": 15381, "dependencies": 0 }, "name": "reactotron", @@ -31049,12 +31489,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "reactotron", "npm": { - "downloads": 911, - "weekDownloads": 210, + "downloads": 936, + "weekDownloads": 192, "latestRelease": "0.9.0", "latestReleaseDate": "2016-08-09T12:27:37.454Z" }, @@ -31067,7 +31508,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.554, + "popularity": -0.575, "topicSearchString": "react react-native reactjs reactnative debugging desktop reactotron redux redux-saga" }, { @@ -31118,12 +31559,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "apisauce", "npm": { - "downloads": 589014, - "weekDownloads": 107348, + "downloads": 574108, + "weekDownloads": 107894, "size": 33143, "latestRelease": "3.2.1", "latestReleaseDate": "2025-10-14T16:47:18.238Z" @@ -31135,7 +31577,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.16, "topicSearchString": "axios api network http promise react-native reactjs" }, { @@ -31163,7 +31605,7 @@ "forks": 430, "issues": 19, "subscribers": 55, - "stars": 2808, + "stars": 2810, "dependencies": 1 }, "name": "react-native-background-geolocation", @@ -31194,12 +31636,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-background-geolocation", "npm": { - "downloads": 84300, - "weekDownloads": 15598, + "downloads": 82669, + "weekDownloads": 14550, "size": 41669764, "latestRelease": "4.19.0", "latestReleaseDate": "2025-09-08T17:46:18.451Z" @@ -31210,7 +31653,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.15, "topicSearchString": "react-native react-component ios android background geolocation tracking geofence geofencing background-location background-geolocation location-tracking" }, { @@ -31266,13 +31709,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ui-blueprint", "npm": { - "downloads": 185, - "weekDownloads": 10, + "downloads": 197, + "weekDownloads": 14, "size": 232638, "latestRelease": "0.2.0-pre.0", "latestReleaseDate": "2019-09-21T02:12:06.475Z" @@ -31282,7 +31726,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.453, + "popularity": -1.439, "topicSearchString": "ruler pixel-perfect grid guides designer mobile ui ux dev-tools developer-tools react-native pixel" }, { @@ -31334,12 +31778,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "eslint-plugin-react-native-a11y", "npm": { - "downloads": 429580, - "weekDownloads": 79974, + "downloads": 416703, + "weekDownloads": 78366, "size": 67659, "latestRelease": "3.5.1", "latestReleaseDate": "2024-11-04T13:43:24.862Z" @@ -31351,7 +31796,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.16, "topicSearchString": "eslint eslintplugin eslint-plugin a11y accessibility react-native" }, { @@ -31404,12 +31849,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-zendesk", "npm": { - "downloads": 327, - "weekDownloads": 65, + "downloads": 322, + "weekDownloads": 61, "size": 91149, "latestRelease": "4.0.0", "latestReleaseDate": "2025-01-30T06:38:24.150Z" @@ -31419,7 +31865,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.829, + "popularity": -0.837, "topicSearchString": "zendesk react native react-native ios android support rn-zendesk help-center zendesk-help" }, { @@ -31472,12 +31918,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "unmaintained": true, "npm": { - "downloads": 61685, - "weekDownloads": 12753, + "downloads": 58965, + "weekDownloads": 11663, "size": 36422, "latestRelease": "1.0.5", "latestReleaseDate": "2022-11-07T02:18:33.161Z" @@ -31488,7 +31935,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.574, + "popularity": -0.582, "topicSearchString": "react-native androidprogressbar android progress-bar progressbar hacktoberfest" }, { @@ -31550,11 +31997,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 60815, - "weekDownloads": 12256, + "downloads": 57148, + "weekDownloads": 11654, "size": 530736, "latestRelease": "1.5.0", "latestReleaseDate": "2024-11-15T03:21:39.570Z" @@ -31565,7 +32013,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.173, "topicSearchString": "progressviewios progress progress-view react-native progress-bar ios hacktoberfest windows macos" }, { @@ -31618,11 +32066,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 1812637, - "weekDownloads": 342973, + "downloads": 1747166, + "weekDownloads": 344964, "size": 203745, "latestRelease": "1.16.3", "latestReleaseDate": "2025-06-28T05:00:24.469Z" @@ -31633,7 +32082,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.168, "topicSearchString": "clipboard getstring react-native setstring hacktoberfest" }, { @@ -31660,13 +32109,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-01T00:04:54Z", + "updatedAt": "2025-10-17T06:37:33Z", "createdAt": "2019-02-06T17:47:06Z", - "pushedAt": "2025-08-01T00:04:54Z", + "pushedAt": "2025-10-17T06:37:33Z", "forks": 85, "issues": 40, "subscribers": 3, - "stars": 639, + "stars": 640, "dependencies": 0 }, "name": "@react-native-segmented-control/segmented-control", @@ -31689,22 +32138,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 225971, - "weekDownloads": 44246, + "downloads": 216269, + "weekDownloads": 42777, "size": 48092, "latestRelease": "2.5.7", "latestReleaseDate": "2024-12-11T01:38:19.547Z" }, - "score": 68, + "score": 73, "matchingScoreModifiers": [ "Popular", "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.168, "topicSearchString": "segmentedcontrolios react-native segmented-control hacktoberfest" }, { @@ -31756,11 +32207,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 105881, - "weekDownloads": 20566, + "downloads": 103347, + "weekDownloads": 22175, "size": 608085, "latestRelease": "3.2.4", "latestReleaseDate": "2022-05-11T17:42:24.160Z" @@ -31772,7 +32224,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.182, "topicSearchString": "android ios react-native speech voice speech-recognition voice-recognition" }, { @@ -31830,13 +32282,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-animated-spinkit", "npm": { - "downloads": 26531, - "weekDownloads": 4889, + "downloads": 25839, + "weekDownloads": 4635, "size": 270317, "latestRelease": "1.5.2", "latestReleaseDate": "2021-02-18T15:16:36.174Z" @@ -31847,7 +32300,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.598, "topicSearchString": "react react-native spinkit expo loading spinners animations" }, { @@ -31873,10 +32326,10 @@ "updatedAt": "2025-08-25T22:29:35Z", "createdAt": "2018-09-09T00:14:44Z", "pushedAt": "2025-08-25T22:29:35Z", - "forks": 2913, + "forks": 2915, "issues": 45, "subscribers": 56, - "stars": 6990, + "stars": 6994, "dependencies": 2 }, "name": "react-native-webview", @@ -31895,12 +32348,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-webview", "npm": { - "downloads": 5638590, - "weekDownloads": 1105428, + "downloads": 5422655, + "weekDownloads": 1058351, "size": 660551, "latestRelease": "13.16.0", "latestReleaseDate": "2025-08-25T22:29:42.131Z" @@ -31912,7 +32366,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.166, "topicSearchString": "" }, { @@ -31937,7 +32391,7 @@ "updatedAt": "2022-01-03T15:22:50Z", "createdAt": "2015-04-01T00:54:40Z", "pushedAt": "2022-01-03T15:22:50Z", - "forks": 3274, + "forks": 3273, "issues": 73, "subscribers": 166, "stars": 9649 @@ -31948,12 +32402,13 @@ "license": null, "hasTypes": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-camera", "npm": { - "downloads": 215786, - "weekDownloads": 41234, + "downloads": 208718, + "weekDownloads": 38500, "size": 1189169, "latestRelease": "4.2.1", "latestReleaseDate": "2021-09-21T19:39:56.664Z" @@ -31967,7 +32422,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.588, + "popularity": -0.593, "topicSearchString": "" }, { @@ -31997,7 +32452,7 @@ "forks": 63, "issues": 10, "subscribers": 10, - "stars": 1344, + "stars": 1346, "dependencies": 1 }, "name": "react-native-notifier", @@ -32024,12 +32479,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-notifier", "npm": { - "downloads": 45886, - "weekDownloads": 9301, + "downloads": 44696, + "weekDownloads": 8800, "size": 141402, "latestRelease": "2.0.0", "latestReleaseDate": "2024-07-21T15:04:56.063Z" @@ -32041,7 +32497,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.167, "topicSearchString": "react-native ios android expo animation notification swipeable" }, { @@ -32095,12 +32551,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-ui-kit", "npm": { - "downloads": 161, - "weekDownloads": 12, + "downloads": 229, + "weekDownloads": 13, "size": 53095, "latestRelease": "0.1.6", "latestReleaseDate": "2020-05-09T17:31:39.289Z" @@ -32110,7 +32567,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.685, + "popularity": -0.701, "topicSearchString": "expo react-native react-ui-kit expo-ui-kit component ui-kit ui-kit-framework theme predefined-props rgba" }, { @@ -32169,11 +32626,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1961, - "weekDownloads": 422, + "downloads": 1954, + "weekDownloads": 390, "size": 140674, "latestRelease": "3.1.0", "latestReleaseDate": "2024-04-11T10:46:53.789Z" @@ -32185,7 +32643,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.183, + "popularity": 0.17, "topicSearchString": "react react-native web typescript stacks layout ui view user-interface" }, { @@ -32213,7 +32671,7 @@ "forks": 209, "issues": 5, "subscribers": 16, - "stars": 2383, + "stars": 2384, "dependencies": 0 }, "name": "react-native-localize", @@ -32244,12 +32702,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-localize", "npm": { - "downloads": 1681310, - "weekDownloads": 317190, + "downloads": 1618553, + "weekDownloads": 319688, "size": 146304, "latestRelease": "3.5.4", "latestReleaseDate": "2025-10-10T11:55:41.487Z" @@ -32261,7 +32720,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.168, "topicSearchString": "localize react-native macos localization l20n globalization internationalization i18n language-detection ios android" }, { @@ -32298,7 +32757,7 @@ "forks": 431, "issues": 80, "subscribers": 19, - "stars": 2761, + "stars": 2763, "dependencies": 1 }, "name": "@react-native-community/datetimepicker", @@ -32328,11 +32787,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 3848442, - "weekDownloads": 758089, + "downloads": 3696073, + "weekDownloads": 757098, "size": 260968, "latestRelease": "8.4.5", "latestReleaseDate": "2025-09-13T17:23:07.909Z" @@ -32345,7 +32805,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.174, "topicSearchString": "component react-native ios android windows datepicker timepicker datetime datetimepicker hacktoberfest" }, { @@ -32390,12 +32850,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 139, - "weekDownloads": 16, + "downloads": 144, + "weekDownloads": 7, "size": 68832, "latestRelease": "0.3.2", "latestReleaseDate": "2021-10-10T06:23:01.002Z" @@ -32406,7 +32867,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, + "popularity": -1.458, "topicSearchString": "react-native dual-screen" }, { @@ -32452,12 +32913,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 70, - "weekDownloads": 14, + "downloads": 221, + "weekDownloads": 10, "size": 4102131, "latestRelease": "1.3.2", "latestReleaseDate": "2021-12-09T00:35:15.462Z" @@ -32468,7 +32930,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.325, + "popularity": -1.462, "topicSearchString": "react-native dual-screen navigation" }, { @@ -32516,12 +32978,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 23, - "weekDownloads": 7, + "downloads": 27, + "weekDownloads": 5, "size": 38136, "latestRelease": "0.1.0", "latestReleaseDate": "2020-05-18T02:03:57.738Z" @@ -32532,7 +32995,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.22, + "popularity": -1.333, "topicSearchString": "react-native dual-screen" }, { @@ -32560,10 +33023,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-splash-screen", @@ -32590,12 +33053,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-splash-screen", "npm": { - "downloads": 4540393, - "weekDownloads": 891664, + "downloads": 4401749, + "weekDownloads": 867244, "size": 118135, "latestRelease": "31.0.10", "latestReleaseDate": "2025-09-12T23:15:40.240Z" @@ -32633,10 +33097,10 @@ "updatedAt": "2025-10-15T22:35:38Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-15T22:35:38Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 14 }, "name": "expo-updates", @@ -32659,12 +33123,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-updates", "npm": { - "downloads": 2490407, - "weekDownloads": 478727, + "downloads": 2408937, + "weekDownloads": 460801, "size": 2470270, "latestRelease": "29.0.12", "latestReleaseDate": "2025-10-01T00:22:17.670Z" @@ -32728,12 +33193,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-appearance", "npm": { - "downloads": 9558, - "weekDownloads": 1704, + "downloads": 10036, + "weekDownloads": 1163, "size": 90039, "latestRelease": "0.3.4", "latestReleaseDate": "2020-04-25T23:55:14.996Z" @@ -32744,7 +33210,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, + "popularity": -0.651, "topicSearchString": "react-native web expo-web appearance" }, { @@ -32768,10 +33234,10 @@ "updatedAt": "2025-09-24T16:46:42Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-24T16:46:42Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 6 }, "name": "expo-auth-session", @@ -32798,12 +33264,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-auth-session", "npm": { - "downloads": 1495464, - "weekDownloads": 281810, + "downloads": 1454350, + "weekDownloads": 287028, "size": 394529, "latestRelease": "7.0.8", "latestReleaseDate": "2025-09-11T20:26:43.537Z" @@ -32817,7 +33284,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.168, "topicSearchString": "react-native expo expo-auth-session auth oauth authentication auth-session" }, { @@ -32842,10 +33309,10 @@ "updatedAt": "2025-09-16T20:34:34Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-16T20:34:34Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 2 }, "name": "expo-linking", @@ -32868,26 +33335,26 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-linking", "npm": { - "downloads": 4971994, - "weekDownloads": 954500, + "downloads": 4845633, + "weekDownloads": 941925, "size": 159097, "latestRelease": "8.0.8", "latestReleaseDate": "2025-09-11T20:24:36.440Z" }, - "score": 86, + "score": 81, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.165, "topicSearchString": "react-native expo expo-linking" }, { @@ -32912,10 +33379,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-screen-orientation", @@ -32940,12 +33407,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-screen-orientation", "npm": { - "downloads": 699161, - "weekDownloads": 143291, + "downloads": 662472, + "weekDownloads": 132503, "size": 204971, "latestRelease": "9.0.7", "latestReleaseDate": "2025-09-11T20:23:38.311Z" @@ -32958,7 +33426,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.17, "topicSearchString": "react-native expo expo-screen-orientation orientation screen" }, { @@ -32983,10 +33451,10 @@ "updatedAt": "2025-09-18T09:37:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-18T09:37:20Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-sharing", @@ -33012,26 +33480,26 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-sharing", "npm": { - "downloads": 1506889, - "weekDownloads": 288203, + "downloads": 1468725, + "weekDownloads": 287099, "size": 60294, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-10T18:40:47.350Z" }, - "score": 86, + "score": 81, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.166, "topicSearchString": "react-native expo expo-sharing android ios web" }, { @@ -33056,10 +33524,10 @@ "updatedAt": "2025-08-22T16:23:47Z", "createdAt": "2019-08-14T18:26:28Z", "pushedAt": "2025-08-22T16:23:47Z", - "forks": 221, + "forks": 222, "issues": 58, "subscribers": 12, - "stars": 2514, + "stars": 2517, "dependencies": 0 }, "name": "react-native-safe-area-context", @@ -33089,12 +33557,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-safe-area-context", "npm": { - "downloads": 9690810, - "weekDownloads": 1858334, + "downloads": 9408894, + "weekDownloads": 1840734, "size": 230707, "latestRelease": "5.6.1", "latestReleaseDate": "2025-08-19T15:57:18.282Z" @@ -33106,7 +33575,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.166, "topicSearchString": "react-native web expo-web safe-area view ios android react safeareainsets" }, { @@ -33133,13 +33602,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-15T22:33:03Z", + "updatedAt": "2025-10-17T09:59:25Z", "createdAt": "2018-08-03T11:36:32Z", - "pushedAt": "2025-10-15T22:33:03Z", + "pushedAt": "2025-10-17T09:59:25Z", "forks": 554, - "issues": 127, + "issues": 126, "subscribers": 40, - "stars": 3466, + "stars": 3469, "dependencies": 2 }, "name": "react-native-screens", @@ -33162,12 +33631,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-screens", "npm": { - "downloads": 8374695, - "weekDownloads": 1620245, + "downloads": 8143520, + "weekDownloads": 1596894, "size": 2544218, "latestRelease": "4.17.1", "latestReleaseDate": "2025-10-15T22:29:19.033Z" @@ -33181,7 +33651,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.167, "topicSearchString": "typescript react-native react-navigation" }, { @@ -33238,12 +33708,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "react-native-shared-element", "npm": { - "downloads": 22616, - "weekDownloads": 4496, + "downloads": 21711, + "weekDownloads": 4511, "size": 1109582, "latestRelease": "0.8.9", "latestReleaseDate": "2023-11-17T13:46:52.364Z" @@ -33255,7 +33726,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.177, "topicSearchString": "shared-element expo expo-shared-element react-native magic-move shared-element-transition visual-clone visual-standin clone clone-view image-clone" }, { @@ -33287,7 +33758,7 @@ "createdAt": "2019-02-06T16:17:45Z", "pushedAt": "2025-09-07T06:27:54Z", "forks": 440, - "issues": 131, + "issues": 132, "subscribers": 24, "stars": 3120, "dependencies": 0 @@ -33314,12 +33785,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-pager-view", "npm": { - "downloads": 2638596, - "weekDownloads": 511253, + "downloads": 2530327, + "weekDownloads": 507882, "size": 190940, "latestRelease": "6.9.1", "latestReleaseDate": "2025-08-07T11:47:48.407Z" @@ -33332,7 +33804,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.171, "topicSearchString": "react-native ios android hacktoberfest" }, { @@ -33389,11 +33861,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 3978493, - "weekDownloads": 766490, + "downloads": 3833660, + "weekDownloads": 754287, "size": 546659, "latestRelease": "11.4.1", "latestReleaseDate": "2024-09-20T16:19:29.269Z" @@ -33407,7 +33880,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.167, "topicSearchString": "react-native netinfo networking network-info network" }, { @@ -33464,13 +33937,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-text-input-mask", "npm": { - "downloads": 78105, - "weekDownloads": 14402, + "downloads": 75310, + "weekDownloads": 14085, "size": 54388, "latestRelease": "3.2.0", "latestReleaseDate": "2023-06-12T19:41:14.657Z" @@ -33482,7 +33956,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.591, "topicSearchString": "react native mask text-input android ios maskedtextfield maskededittext maskedinput react-native mask-android mask-ios input-mask inputmask" }, { @@ -33530,12 +34004,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 34114, - "weekDownloads": 6909, + "downloads": 31855, + "weekDownloads": 6586, "size": 68043, "latestRelease": "0.2.1", "latestReleaseDate": "2021-09-03T19:46:31.351Z" @@ -33545,7 +34020,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.578, + "popularity": -0.574, "topicSearchString": "toolbar-android react-native" }, { @@ -33593,11 +34068,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 407279, - "weekDownloads": 73411, + "downloads": 393731, + "weekDownloads": 73839, "size": 490851, "latestRelease": "1.2.0", "latestReleaseDate": "2020-03-11T10:13:24.240Z" @@ -33608,7 +34084,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.591, "topicSearchString": "react-native art community" }, { @@ -33661,11 +34137,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 561946, - "weekDownloads": 107745, + "downloads": 541434, + "weekDownloads": 100880, "size": 273019, "latestRelease": "1.11.0", "latestReleaseDate": "2023-04-05T03:09:13.465Z" @@ -33678,7 +34155,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.592, "topicSearchString": "react-native push-notification-ios push-notification notification-ios notification hacktoberfest ios push-notifications" }, { @@ -33733,12 +34210,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-safe-area-view", "npm": { - "downloads": 291295, - "weekDownloads": 57201, + "downloads": 278321, + "weekDownloads": 51923, "size": 81809, "latestRelease": "1.1.1", "latestReleaseDate": "2020-04-25T23:48:06.599Z" @@ -33750,7 +34228,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.583, + "popularity": -0.591, "topicSearchString": "react-native iphonex safeareaview safe-area notch" }, { @@ -33810,11 +34288,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 742917, - "weekDownloads": 139052, + "downloads": 715996, + "weekDownloads": 135912, "size": 109474, "latestRelease": "4.4.1", "latestReleaseDate": "2024-08-29T14:23:09.479Z" @@ -33827,7 +34306,7 @@ "Lots of open issues", "Not updated recently" ], - "popularity": 0.159, + "popularity": 0.161, "topicSearchString": "react-native ios android blur component" }, { @@ -33888,11 +34367,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 8755001, - "weekDownloads": 1643276, + "downloads": 8511117, + "weekDownloads": 1635287, "size": 380789, "latestRelease": "2.2.0", "latestReleaseDate": "2025-06-05T12:15:48.403Z" @@ -33903,7 +34383,7 @@ "Popular", "Known" ], - "popularity": 0.16, + "popularity": 0.163, "topicSearchString": "react-native react-native async-storage asyncstorage storage" }, { @@ -33938,8 +34418,8 @@ "updatedAt": "2025-10-15T00:49:17Z", "createdAt": "2019-03-01T01:55:16Z", "pushedAt": "2025-10-15T00:49:17Z", - "forks": 295, - "issues": 234, + "forks": 296, + "issues": 235, "subscribers": 14, "stars": 1723, "dependencies": 0 @@ -33970,11 +34450,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 2459862, - "weekDownloads": 471926, + "downloads": 2347272, + "weekDownloads": 461920, "size": 398744, "latestRelease": "2.11.4", "latestReleaseDate": "2025-10-15T00:49:29.220Z" @@ -33986,7 +34467,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.163, + "popularity": 0.167, "topicSearchString": "react-native picker dropdown select ios android macos windows hacktoberfest" }, { @@ -34011,7 +34492,7 @@ "forks": 375, "issues": 6, "subscribers": 14, - "stars": 1048, + "stars": 1049, "dependencies": 0 }, "name": "@react-native-camera-roll/camera-roll", @@ -34035,11 +34516,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 470506, - "weekDownloads": 87879, + "downloads": 459827, + "weekDownloads": 89142, "size": 326152, "latestRelease": "7.10.2", "latestReleaseDate": "2025-08-06T09:52:15.832Z" @@ -34050,7 +34532,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.165, "topicSearchString": "react-native cameraroll camera photo-gallery" }, { @@ -34103,11 +34585,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 79221, - "weekDownloads": 18610, + "downloads": 71791, + "weekDownloads": 15780, "size": 98799, "latestRelease": "4.3.0", "latestReleaseDate": "2025-01-22T18:35:28.422Z" @@ -34118,7 +34601,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.2, + "popularity": 0.187, "topicSearchString": "react-native ios android image-editor imageeditor image web" }, { @@ -34149,7 +34632,7 @@ "forks": 120, "issues": 51, "subscribers": 10, - "stars": 1109, + "stars": 1108, "dependencies": 0 }, "name": "@react-native-masked-view/masked-view", @@ -34171,11 +34654,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 1951588, - "weekDownloads": 374977, + "downloads": 1875609, + "weekDownloads": 377499, "size": 59004, "latestRelease": "0.3.2", "latestReleaseDate": "2024-11-04T02:52:21.714Z" @@ -34187,7 +34671,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.171, "topicSearchString": "react-native masked-view hacktoberfest" }, { @@ -34217,7 +34701,7 @@ "forks": 660, "issues": 174, "subscribers": 43, - "stars": 4949, + "stars": 4948, "dependencies": 0 }, "name": "react-native-linear-gradient", @@ -34235,12 +34719,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-linear-gradient", "npm": { - "downloads": 2359100, - "weekDownloads": 442364, + "downloads": 2269899, + "weekDownloads": 451801, "size": 117996, "latestRelease": "2.8.3", "latestReleaseDate": "2023-09-06T04:29:38.236Z" @@ -34254,7 +34739,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.169, "topicSearchString": "" }, { @@ -34305,12 +34790,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-medium-clap", "npm": { - "downloads": 28, + "downloads": 49, "weekDownloads": 0, "size": 847438, "latestRelease": "1.0.1", @@ -34374,13 +34860,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-audio-session", "npm": { - "downloads": 8456, - "weekDownloads": 1565, + "downloads": 8053, + "weekDownloads": 1684, "size": 27519, "latestRelease": "0.0.6", "latestReleaseDate": "2020-03-17T13:47:02.454Z" @@ -34391,7 +34878,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.572, "topicSearchString": "react native ios audio avfoundation avaudiosession bridge react-native opensource javascript objective-c" }, { @@ -34445,12 +34932,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "react-native-twilio-video-webrtc", "npm": { - "downloads": 22186, - "weekDownloads": 5626, + "downloads": 21400, + "weekDownloads": 4750, "size": 224465, "latestRelease": "3.2.1", "latestReleaseDate": "2024-10-02T15:39:10.044Z" @@ -34463,7 +34951,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.216, + "popularity": 0.189, "topicSearchString": "react-native webrtc twilio-video video-streaming ios android realtime-video twilio video video-call" }, { @@ -34491,7 +34979,7 @@ "updatedAt": "2024-11-18T15:23:41Z", "createdAt": "2018-12-07T14:33:26Z", "pushedAt": "2024-11-18T15:23:41Z", - "forks": 451, + "forks": 452, "issues": 309, "subscribers": 27, "stars": 1014, @@ -34522,12 +35010,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-callkeep", "npm": { - "downloads": 40107, - "weekDownloads": 6588, + "downloads": 40458, + "weekDownloads": 6791, "size": 262079, "latestRelease": "4.3.16", "latestReleaseDate": "2024-11-18T15:23:52.404Z" @@ -34540,7 +35029,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.14, + "popularity": 0.143, "topicSearchString": "callkit connectionservice ios android react-native voip webrtc connection-service call-kit" }, { @@ -34564,7 +35053,7 @@ "forks": 1105, "issues": 27, "subscribers": 120, - "stars": 4879, + "stars": 4886, "dependencies": 3 }, "name": "react-native-webrtc", @@ -34589,12 +35078,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-webrtc", "npm": { - "downloads": 180129, - "weekDownloads": 34545, + "downloads": 175602, + "weekDownloads": 32967, "size": 1161750, "latestRelease": "124.0.7", "latestReleaseDate": "2025-10-09T14:50:48.961Z" @@ -34607,7 +35097,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.16, "topicSearchString": "react-component react-native ios android webrtc react" }, { @@ -34659,12 +35149,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-incall-manager", "npm": { - "downloads": 85903, - "weekDownloads": 14932, + "downloads": 83982, + "weekDownloads": 16710, "size": 221900, "latestRelease": "4.2.1", "latestReleaseDate": "2025-04-30T16:05:34.429Z" @@ -34676,7 +35167,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.169, "topicSearchString": "react reactnative webrtc phone call incall talk sip voip" }, { @@ -34717,12 +35208,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-voip-push-notification", "npm": { - "downloads": 31510, - "weekDownloads": 5623, + "downloads": 30941, + "weekDownloads": 5540, "size": 37297, "latestRelease": "3.3.3", "latestReleaseDate": "2025-04-30T16:24:49.512Z" @@ -34760,7 +35252,7 @@ "forks": 269, "issues": 6, "subscribers": 17, - "stars": 4050, + "stars": 4051, "dependencies": 14 }, "name": "react-native-bootsplash", @@ -34790,12 +35282,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-bootsplash", "npm": { - "downloads": 563708, - "weekDownloads": 103431, + "downloads": 542657, + "weekDownloads": 103756, "size": 476944, "latestRelease": "6.3.11", "latestReleaseDate": "2025-09-07T14:50:00.021Z" @@ -34808,7 +35301,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.163, "topicSearchString": "bootsplash react-native boot-splash boot-screen bootscreen splash-screen splashscreen launch-screen launchscreen react" }, { @@ -34857,12 +35350,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "redux-flipper", "npm": { - "downloads": 63047, - "weekDownloads": 10738, + "downloads": 61981, + "weekDownloads": 12197, "size": 10583, "latestRelease": "2.0.3", "latestReleaseDate": "2024-03-05T14:13:36.204Z" @@ -34873,7 +35367,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.145, + "popularity": 0.167, "topicSearchString": "redux redux-middleware react-native flipper hacktoberfest" }, { @@ -34931,12 +35425,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-responsive-image-view", "npm": { - "downloads": 1275, - "weekDownloads": 238, + "downloads": 1241, + "weekDownloads": 312, "size": 51788, "latestRelease": "3.0.0", "latestReleaseDate": "2025-02-27T05:56:38.133Z" @@ -34947,7 +35442,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.214, "topicSearchString": "react react-native responsive flexible fit aspect-ratio image view hook component responsive-images" }, { @@ -34980,7 +35475,7 @@ "forks": 40, "issues": 1, "subscribers": 8, - "stars": 776, + "stars": 777, "dependencies": 1 }, "name": "react-native-image-colors", @@ -35013,12 +35508,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "react-native-image-colors", "npm": { - "downloads": 96473, - "weekDownloads": 16631, + "downloads": 93621, + "weekDownloads": 17228, "size": 73755, "latestRelease": "2.5.0", "latestReleaseDate": "2025-07-07T19:02:10.281Z" @@ -35029,7 +35525,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.156, "topicSearchString": "react-native expo image-colors rnimagecolors ios android react image dominant average color palette" }, { @@ -35063,7 +35559,7 @@ "forks": 104, "issues": 3, "subscribers": 8, - "stars": 1053, + "stars": 1054, "dependencies": 0 }, "name": "react-native-animated-nav-tab-bar", @@ -35093,12 +35589,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-nav-tab-bar", "npm": { - "downloads": 2665, - "weekDownloads": 542, + "downloads": 2873, + "weekDownloads": 663, "size": 94801, "latestRelease": "3.1.13", "latestReleaseDate": "2025-05-26T17:18:10.403Z" @@ -35109,7 +35606,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.196, "topicSearchString": "react react-native react-component react-navigation navigation ios android tab tab-bar bar animation" }, { @@ -35152,12 +35649,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-2d-context", "npm": { - "downloads": 155436, - "weekDownloads": 31781, + "downloads": 142642, + "weekDownloads": 31152, "size": 2344108, "latestRelease": "0.0.4", "latestReleaseDate": "2023-11-17T10:16:54.752Z" @@ -35168,7 +35666,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.186, "topicSearchString": "" }, { @@ -35198,7 +35696,7 @@ "forks": 574, "issues": 75, "subscribers": 32, - "stars": 3609, + "stars": 3610, "dependencies": 9 }, "name": "react-native-render-html", @@ -35222,11 +35720,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1441542, - "weekDownloads": 270787, + "downloads": 1389780, + "weekDownloads": 281441, "size": 783354, "latestRelease": "6.3.4", "latestReleaseDate": "2022-01-24T14:00:18.189Z" @@ -35240,7 +35739,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.172, "topicSearchString": "react-native react-component component html render-html" }, { @@ -35267,10 +35766,10 @@ "updatedAt": "2025-09-23T12:09:58Z", "createdAt": "2015-11-14T15:45:34Z", "pushedAt": "2025-09-23T12:09:58Z", - "forks": 3389, + "forks": 3388, "issues": 231, "subscribers": 190, - "stars": 14097, + "stars": 14100, "dependencies": 8 }, "name": "react-native-gifted-chat", @@ -35298,12 +35797,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gifted-chat", "npm": { - "downloads": 263335, - "weekDownloads": 48399, + "downloads": 255114, + "weekDownloads": 51585, "size": 393304, "latestRelease": "2.8.1", "latestReleaseDate": "2025-03-27T12:33:56.579Z" @@ -35317,7 +35817,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.172, "topicSearchString": "android ios react-native react react-component messenger message chat component" }, { @@ -35343,7 +35843,7 @@ "forks": 437, "issues": 103, "subscribers": 86, - "stars": 4956, + "stars": 4957, "dependencies": 35 }, "name": "@shoutem/ui", @@ -35368,11 +35868,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3655, - "weekDownloads": 641, + "downloads": 4668, + "weekDownloads": 810, "size": 1903805, "latestRelease": "8.2.7", "latestReleaseDate": "2025-08-18T10:13:37.422Z" @@ -35385,7 +35886,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.148, "topicSearchString": "shoutem-ui react-native ios android native-components shoutem" }, { @@ -35408,7 +35909,7 @@ "updatedAt": "2023-12-11T13:45:18Z", "createdAt": "2019-10-29T12:10:24Z", "pushedAt": "2023-12-11T13:45:18Z", - "forks": 199, + "forks": 201, "issues": 45, "subscribers": 6, "stars": 755, @@ -35436,12 +35937,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-markdown-display", "npm": { - "downloads": 1079676, - "weekDownloads": 216609, + "downloads": 1017188, + "weekDownloads": 203116, "size": 69674, "latestRelease": "7.0.2", "latestReleaseDate": "2023-12-11T12:07:20.703Z" @@ -35453,7 +35955,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.17, "topicSearchString": "react react-native native markdown commonmark markdown-it" }, { @@ -35475,9 +35977,9 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-13T15:48:09Z", + "updatedAt": "2025-10-17T17:25:05Z", "createdAt": "2015-12-12T12:52:11Z", - "pushedAt": "2025-10-13T15:48:09Z", + "pushedAt": "2025-10-17T17:25:05Z", "forks": 1036, "issues": 5, "subscribers": 45, @@ -35511,15 +36013,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-i18next", "npm": { - "downloads": 27362183, - "weekDownloads": 5080609, - "size": 716610, - "latestRelease": "16.0.1", - "latestReleaseDate": "2025-10-13T15:48:30.732Z" + "downloads": 26137538, + "weekDownloads": 4977538, + "size": 772361, + "latestRelease": "16.1.0", + "latestReleaseDate": "2025-10-17T17:25:38.894Z" }, "score": 97, "matchingScoreModifiers": [ @@ -35529,7 +36032,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.162, "topicSearchString": "i18next internationalization i18n translation localization l10n globalization react reactjs react-native ssr" }, { @@ -35583,13 +36086,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-keyboard-aware-scroll-view", "npm": { - "downloads": 1621668, - "weekDownloads": 310966, + "downloads": 1539023, + "weekDownloads": 308167, "size": 56793, "latestRelease": "0.9.5", "latestReleaseDate": "2021-11-04T10:02:02.898Z" @@ -35603,7 +36107,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.58, "topicSearchString": "react react-native scrollview keyboard ios android react-component scroll-view react-components scrollview-component" }, { @@ -35656,13 +36160,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-scroll-into-view", "npm": { - "downloads": 21123, - "weekDownloads": 5116, + "downloads": 19479, + "weekDownloads": 4385, "size": 53365, "latestRelease": "2.0.2", "latestReleaseDate": "2021-11-04T09:36:37.395Z" @@ -35673,7 +36178,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.544, + "popularity": -0.559, "topicSearchString": "react-native react scrollintoview form scroll into view expo visible" }, { @@ -35702,7 +36207,7 @@ "forks": 151, "issues": 3, "subscribers": 14, - "stars": 2476, + "stars": 2477, "dependencies": 0 }, "name": "react-native-size-matters", @@ -35725,13 +36230,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-size-matters", "npm": { - "downloads": 1064095, - "weekDownloads": 201589, + "downloads": 1025890, + "weekDownloads": 208641, "size": 13888, "latestRelease": "0.4.2", "latestReleaseDate": "2023-10-03T09:23:44.732Z" @@ -35743,7 +36249,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, + "popularity": -0.577, "topicSearchString": "javascript react-native scaling tablet" }, { @@ -35801,11 +36307,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 879893, - "weekDownloads": 167572, + "downloads": 846758, + "weekDownloads": 163091, "size": 176556, "latestRelease": "4.1.1", "latestReleaseDate": "2025-02-25T15:47:52.661Z" @@ -35817,7 +36324,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.164, "topicSearchString": "expo react-native action-sheet hacktoberfest android ios actionsheet" }, { @@ -35873,13 +36380,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-modal-selector", "npm": { - "downloads": 715844, - "weekDownloads": 135282, + "downloads": 682399, + "weekDownloads": 141769, "size": 43369, "latestRelease": "2.1.2", "latestReleaseDate": "2022-10-24T18:37:31.684Z" @@ -35891,7 +36399,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, + "popularity": -0.573, "topicSearchString": "react-native dropdown popover select picker modal ios android react-component" }, { @@ -35926,7 +36434,7 @@ "forks": 408, "issues": 188, "subscribers": 15, - "stars": 2393, + "stars": 2395, "dependencies": 5 }, "name": "react-native-svg-charts", @@ -35957,13 +36465,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-svg-charts", "npm": { - "downloads": 370710, - "weekDownloads": 68695, + "downloads": 354873, + "weekDownloads": 78333, "size": 417079, "latestRelease": "5.4.0", "latestReleaseDate": "2020-04-14T19:04:09.736Z" @@ -35976,7 +36485,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.562, "topicSearchString": "react-native react-component component react mobile ios android vector charts chart d3 svg" }, { @@ -36018,7 +36527,7 @@ "forks": 1098, "issues": 151, "subscribers": 99, - "stars": 7858, + "stars": 7865, "dependencies": 3 }, "name": "react-native-svg", @@ -36047,12 +36556,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-svg", "npm": { - "downloads": 8524335, - "weekDownloads": 1608447, + "downloads": 8148048, + "weekDownloads": 1612896, "size": 4051495, "latestRelease": "15.14.0", "latestReleaseDate": "2025-10-08T11:24:46.729Z" @@ -36065,7 +36575,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.16, + "popularity": 0.168, "topicSearchString": "react-component react-native ios android windows svg art vml gradient" }, { @@ -36087,10 +36597,10 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T15:46:02Z", + "updatedAt": "2025-10-17T15:49:36Z", "createdAt": "2017-10-22T00:31:20Z", - "pushedAt": "2025-10-16T15:46:02Z", - "forks": 660, + "pushedAt": "2025-10-17T15:49:36Z", + "forks": 659, "issues": 4, "subscribers": 36, "stars": 3109, @@ -36124,15 +36634,16 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "nitro" }, "npmPkg": "react-native-iap", "npm": { - "downloads": 232699, - "weekDownloads": 46607, + "downloads": 224809, + "weekDownloads": 44111, "size": 1617263, - "latestRelease": "14.4.22", - "latestReleaseDate": "2025-10-16T15:46:36.907Z" + "latestRelease": "14.4.23", + "latestReleaseDate": "2025-10-17T04:46:48.470Z" }, "score": 97, "matchingScoreModifiers": [ @@ -36142,7 +36653,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.167, "topicSearchString": "react-native nitro amazon android appstore billing iap in-app-purchase ios playstore" }, { @@ -36192,13 +36703,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-markdown-renderer", "npm": { - "downloads": 42902, - "weekDownloads": 7732, + "downloads": 42632, + "weekDownloads": 7587, "size": 185087, "latestRelease": "3.2.8", "latestReleaseDate": "2018-06-18T14:34:39.503Z" @@ -36209,7 +36721,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.599, "topicSearchString": "react react-native native markdown commonmark markdown-it" }, { @@ -36238,9 +36750,9 @@ "createdAt": "2015-09-16T14:06:22Z", "pushedAt": "2025-09-17T13:15:29Z", "forks": 1410, - "issues": 5, + "issues": 4, "subscribers": 73, - "stars": 6625, + "stars": 6626, "dependencies": 0 }, "name": "react-native-device-info", @@ -36268,25 +36780,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-device-info", "npm": { - "downloads": 3393942, - "weekDownloads": 645486, + "downloads": 3259388, + "weekDownloads": 646418, "size": 719615, "latestRelease": "14.1.1", "latestReleaseDate": "2025-09-17T13:15:43.446Z" }, - "score": 97, + "score": 92, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.169, "topicSearchString": "react-component react-native ios android windows device events cocoapod hacktoberfest" }, { @@ -36339,12 +36851,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-push-notification", "npm": { - "downloads": 330212, - "weekDownloads": 64940, + "downloads": 316390, + "weekDownloads": 63177, "size": 279032, "latestRelease": "8.1.1", "latestReleaseDate": "2021-10-01T14:22:43.183Z" @@ -36358,7 +36871,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.583, + "popularity": -0.58, "topicSearchString": "react-component react-native ios android notifications push apns firebase push-notifications" }, { @@ -36381,7 +36894,7 @@ "createdAt": "2015-10-19T06:22:23Z", "pushedAt": "2025-10-15T12:29:36Z", "forks": 714, - "issues": 236, + "issues": 237, "subscribers": 39, "stars": 2864, "dependencies": 0 @@ -36409,12 +36922,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-sound", "npm": { - "downloads": 418902, - "weekDownloads": 81482, + "downloads": 398037, + "weekDownloads": 85416, "size": 94449, "latestRelease": "0.13.0", "latestReleaseDate": "2025-10-15T12:51:49.628Z" @@ -36428,7 +36942,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.182, "topicSearchString": "react-native sound audio ios android windows" }, { @@ -36475,11 +36989,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 3789, - "weekDownloads": 796, + "downloads": 3669, + "weekDownloads": 670, "size": 107438, "latestRelease": "0.2.2", "latestReleaseDate": "2020-01-23T11:08:41.458Z" @@ -36490,7 +37005,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.571, + "popularity": -0.595, "topicSearchString": "" }, { @@ -36521,10 +37036,10 @@ "updatedAt": "2022-10-31T01:41:06Z", "createdAt": "2017-04-13T04:13:44Z", "pushedAt": "2022-10-31T01:41:06Z", - "forks": 1325, + "forks": 1324, "issues": 412, "subscribers": 58, - "stars": 8396, + "stars": 8397, "dependencies": 0 }, "name": "react-native-fast-image", @@ -36554,12 +37069,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fast-image", "npm": { - "downloads": 732941, - "weekDownloads": 144767, + "downloads": 703974, + "weekDownloads": 140031, "size": 104363, "latestRelease": "8.6.3", "latestReleaseDate": "2022-10-31T01:41:09.853Z" @@ -36573,7 +37089,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, + "popularity": -0.581, "topicSearchString": "cache cached fastimage image priority react-native sdwebimage glide image-cache cocoapod hacktoberfest" }, { @@ -36627,11 +37143,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 225319, - "weekDownloads": 43213, + "downloads": 217482, + "weekDownloads": 42723, "size": 116564, "latestRelease": "3.0.1", "latestReleaseDate": "2020-05-19T21:36:02.689Z" @@ -36644,7 +37161,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.583, "topicSearchString": "image-viewer react-native react-component" }, { @@ -36700,13 +37217,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-modal-dropdown", "npm": { - "downloads": 26129, - "weekDownloads": 5025, + "downloads": 25090, + "weekDownloads": 4655, "size": 1736393, "latestRelease": "1.0.2", "latestReleaseDate": "2021-09-15T09:09:23.529Z" @@ -36719,7 +37237,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.592, "topicSearchString": "react react-component react-native component ios android modal dropdown picker select selector option" }, { @@ -36765,13 +37283,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-modal-translucent", "npm": { - "downloads": 2032, - "weekDownloads": 76, + "downloads": 2038, + "weekDownloads": 58, "size": 322343, "latestRelease": "5.0.0", "latestReleaseDate": "2019-11-21T08:06:10.048Z" @@ -36782,7 +37301,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.718, + "popularity": -0.726, "topicSearchString": "react-native modal translucent statusbar" }, { @@ -36813,7 +37332,7 @@ "forks": 144, "issues": 17, "subscribers": 265, - "stars": 3276, + "stars": 3277, "dependencies": 0 }, "name": "@shopify/restyle", @@ -36831,11 +37350,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 162767, - "weekDownloads": 29317, + "downloads": 159256, + "weekDownloads": 28926, "size": 92221, "latestRelease": "2.4.5", "latestReleaseDate": "2025-03-19T21:32:10.619Z" @@ -36847,7 +37367,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.154, "topicSearchString": "" }, { @@ -36870,13 +37390,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-16T11:11:11Z", + "updatedAt": "2025-10-17T10:19:21Z", "createdAt": "2018-06-21T21:15:55Z", - "pushedAt": "2025-10-16T11:11:11Z", + "pushedAt": "2025-10-17T10:19:21Z", "forks": 104, "issues": 44, "subscribers": 15, - "stars": 1061, + "stars": 1062, "dependencies": 2 }, "name": "react-native-purchases", @@ -36904,12 +37424,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-purchases", "npm": { - "downloads": 396965, - "weekDownloads": 75069, + "downloads": 381848, + "weekDownloads": 73096, "size": 308505, "latestRelease": "9.5.4", "latestReleaseDate": "2025-10-10T12:42:12.598Z" @@ -36921,7 +37442,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.163, "topicSearchString": "react-native in-app-purchase subscriptions iap ios apple android stripe hacktoberfest" }, { @@ -36978,11 +37499,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 532205, - "weekDownloads": 97438, + "downloads": 513131, + "weekDownloads": 108395, "size": 191230, "latestRelease": "0.5.20", "latestReleaseDate": "2025-05-14T02:40:29.617Z" @@ -36993,7 +37515,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.18, "topicSearchString": "checkbox react-native react-native" }, { @@ -37016,8 +37538,8 @@ "updatedAt": "2025-09-07T16:33:24Z", "createdAt": "2015-08-13T06:13:57Z", "pushedAt": "2025-09-07T16:33:24Z", - "forks": 854, - "issues": 6, + "forks": 852, + "issues": 5, "subscribers": 45, "stars": 3452, "dependencies": 0 @@ -37052,11 +37574,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 930116, - "weekDownloads": 181472, + "downloads": 906421, + "weekDownloads": 177544, "size": 169379, "latestRelease": "16.0.0", "latestReleaseDate": "2025-09-07T16:33:34.413Z" @@ -37118,13 +37641,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-kvideo", "npm": { "downloads": 5, - "weekDownloads": 0, + "weekDownloads": 1, "size": 256241, "latestRelease": "1.0.0", "latestReleaseDate": "2020-05-06T20:41:03.831Z" @@ -37134,7 +37658,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -1.55, "topicSearchString": "ivideo video video-play react-video react-native" }, { @@ -37176,12 +37700,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-navigation-hooks", "npm": { - "downloads": 13168, - "weekDownloads": 2373, + "downloads": 13202, + "weekDownloads": 2331, "size": 110338, "latestRelease": "6.3.0", "latestReleaseDate": "2021-02-04T13:23:36.143Z" @@ -37192,7 +37717,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.15, "topicSearchString": "" }, { @@ -37216,8 +37741,8 @@ "updatedAt": "2025-09-29T13:45:11Z", "createdAt": "2017-10-02T22:17:14Z", "pushedAt": "2025-09-29T13:45:11Z", - "forks": 2134, - "issues": 465, + "forks": 2136, + "issues": 466, "subscribers": 202, "stars": 9560, "dependencies": 8 @@ -37237,12 +37762,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "aws-amplify", "npm": { - "downloads": 4021914, - "weekDownloads": 763887, + "downloads": 3889823, + "weekDownloads": 714670, "size": 169515, "latestRelease": "6.15.7", "latestReleaseDate": "2025-09-29T13:45:59.008Z" @@ -37256,7 +37782,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.156, "topicSearchString": "" }, { @@ -37281,8 +37807,8 @@ "updatedAt": "2025-09-29T13:45:11Z", "createdAt": "2017-10-02T22:17:14Z", "pushedAt": "2025-09-29T13:45:11Z", - "forks": 2134, - "issues": 465, + "forks": 2136, + "issues": 466, "subscribers": 202, "stars": 9560, "dependencies": 7 @@ -37302,11 +37828,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3977219, - "weekDownloads": 755570, + "downloads": 3835343, + "weekDownloads": 706243, "size": 2806091, "latestRelease": "5.1.0", "latestReleaseDate": "2025-09-29T13:45:56.536Z" @@ -37320,7 +37847,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.157, "topicSearchString": "" }, { @@ -37345,8 +37872,8 @@ "updatedAt": "2025-10-09T12:10:26Z", "createdAt": "2017-10-02T22:17:14Z", "pushedAt": "2025-10-09T12:10:26Z", - "forks": 2134, - "issues": 465, + "forks": 2136, + "issues": 466, "subscribers": 202, "stars": 9560, "dependencies": 3 @@ -37366,11 +37893,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 160771, - "weekDownloads": 26982, + "downloads": 156948, + "weekDownloads": 28374, "size": 418779, "latestRelease": "1.2.0", "latestReleaseDate": "2025-09-29T13:45:40.961Z" @@ -37384,7 +37912,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.154, "topicSearchString": "" }, { @@ -37409,8 +37937,8 @@ "updatedAt": "2025-09-29T13:45:11Z", "createdAt": "2017-10-02T22:17:14Z", "pushedAt": "2025-09-29T13:45:11Z", - "forks": 2134, - "issues": 465, + "forks": 2136, + "issues": 466, "subscribers": 202, "stars": 9560, "dependencies": 3 @@ -37430,11 +37958,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4560716, - "weekDownloads": 872794, + "downloads": 4385582, + "weekDownloads": 810903, "size": 3228670, "latestRelease": "6.16.0", "latestReleaseDate": "2025-09-29T13:45:46.824Z" @@ -37448,7 +37977,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.157, "topicSearchString": "" }, { @@ -37471,8 +38000,8 @@ "updatedAt": "2025-09-29T13:45:11Z", "createdAt": "2017-10-02T22:17:14Z", "pushedAt": "2025-09-29T13:45:11Z", - "forks": 2134, - "issues": 465, + "forks": 2136, + "issues": 466, "subscribers": 202, "stars": 9560, "dependencies": 3 @@ -37492,11 +38021,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3490896, - "weekDownloads": 664092, + "downloads": 3309865, + "weekDownloads": 620966, "size": 743373, "latestRelease": "2.0.88", "latestReleaseDate": "2025-09-29T13:45:49.595Z" @@ -37510,7 +38040,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.159, "topicSearchString": "" }, { @@ -37538,7 +38068,7 @@ "forks": 585, "issues": 30, "subscribers": 69, - "stars": 1345, + "stars": 1346, "dependencies": 5 }, "name": "parse", @@ -37566,11 +38096,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 389704, - "weekDownloads": 68325, + "downloads": 377132, + "weekDownloads": 70137, "size": 8253251, "latestRelease": "7.0.1", "latestReleaseDate": "2025-10-15T14:57:33.503Z" @@ -37582,7 +38113,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.158, "topicSearchString": "cloud mobile api javascript parse-platform parse-js parse javascript-sdk hacktoberfest" }, { @@ -37640,13 +38171,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-menu", "npm": { - "downloads": 47683, - "weekDownloads": 8430, + "downloads": 46568, + "weekDownloads": 7954, "size": 25874, "latestRelease": "2.0.0", "latestReleaseDate": "2021-08-23T19:28:17.993Z" @@ -37657,7 +38189,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.6, + "popularity": -0.605, "topicSearchString": "react-native react menu material-menu react-component material dropdown material-design component ios android" }, { @@ -37711,12 +38243,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-console-time-polyfill", "npm": { - "downloads": 28705, - "weekDownloads": 5031, + "downloads": 27730, + "weekDownloads": 5343, "size": 4887, "latestRelease": "1.2.3", "latestReleaseDate": "2021-04-03T10:00:22.903Z" @@ -37726,7 +38259,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.164, "topicSearchString": "react-native polyfill console time timeend performance measurement count countreset measurements" }, { @@ -37774,13 +38307,14 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "unmaintained": true, "npmPkg": "react-native-change-icon", "npm": { - "downloads": 21679, - "weekDownloads": 4329, + "downloads": 21001, + "weekDownloads": 4216, "size": 30999, "latestRelease": "5.0.0", "latestReleaseDate": "2023-08-19T19:29:01.655Z" @@ -37791,7 +38325,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.579, "topicSearchString": "react-native ios android" }, { @@ -37843,13 +38377,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-open-maps", "npm": { - "downloads": 58979, - "weekDownloads": 10266, + "downloads": 56322, + "weekDownloads": 10624, "size": 23336, "latestRelease": "0.4.3", "latestReleaseDate": "2023-07-17T16:02:58.100Z" @@ -37860,7 +38395,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": -0.59, "topicSearchString": "react-native maps open-link apple-maps google-maps map-deep-links map-url-scheme linking" }, { @@ -37920,12 +38455,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-store-review", "npm": { - "downloads": 104029, - "weekDownloads": 19692, + "downloads": 99702, + "weekDownloads": 18506, "size": 23072, "latestRelease": "0.4.3", "latestReleaseDate": "2023-10-26T12:47:21.142Z" @@ -37937,7 +38473,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.158, "topicSearchString": "react-native react-component component react mobile ios android app-store review rating rate appstore playstore" }, { @@ -37988,11 +38524,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 759836, - "weekDownloads": 147146, + "downloads": 733423, + "weekDownloads": 143841, "size": 167579, "latestRelease": "3.4.0", "latestReleaseDate": "2024-09-01T08:47:00.956Z" @@ -38005,7 +38542,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.167, "topicSearchString": "react-native geolocation location react library" }, { @@ -38054,7 +38591,8 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-template-typescript", @@ -38119,12 +38657,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 18773, - "weekDownloads": 3803, + "downloads": 17513, + "weekDownloads": 3674, "size": 123927, "latestRelease": "2.0.3", "latestReleaseDate": "2020-03-23T04:51:00.067Z" @@ -38137,7 +38676,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.578, + "popularity": -0.572, "topicSearchString": "react-native audio audio-toolkit reactnative audio-library cross-platform" }, { @@ -38184,11 +38723,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 15, - "weekDownloads": 3, + "downloads": 16, + "weekDownloads": 4, "size": 24667, "latestRelease": "1.1.0", "latestReleaseDate": "2020-03-25T10:48:32.198Z" @@ -38198,7 +38738,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.55, + "popularity": -1.483, "topicSearchString": "modal modal-dialog modal-statusbar" }, { @@ -38245,12 +38785,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-navbar", "npm": { - "downloads": 1267, - "weekDownloads": 174, + "downloads": 2683, + "weekDownloads": 224, "latestRelease": "2.1.0", "latestReleaseDate": "2017-10-30T09:25:52.018Z" }, @@ -38261,7 +38802,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.633, + "popularity": -0.679, "topicSearchString": "react-native navbar" }, { @@ -38310,12 +38851,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-platform-touchable", "npm": { - "downloads": 16036, - "weekDownloads": 2515, + "downloads": 15233, + "weekDownloads": 2629, "latestRelease": "1.1.1", "latestReleaseDate": "2017-07-01T20:42:09.773Z" }, @@ -38325,7 +38867,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.617, + "popularity": -0.603, "topicSearchString": "react-native react component button" }, { @@ -38353,7 +38895,7 @@ "forks": 73, "issues": 39, "subscribers": 8, - "stars": 889, + "stars": 890, "dependencies": 0 }, "name": "react-native-context-menu-view", @@ -38377,12 +38919,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-context-menu-view", "npm": { - "downloads": 101534, - "weekDownloads": 29147, + "downloads": 88281, + "weekDownloads": 21126, "size": 59526, "latestRelease": "1.20.0", "latestReleaseDate": "2025-09-22T17:40:45.595Z" @@ -38394,7 +38937,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.244, + "popularity": 0.203, "topicSearchString": "react-native ios android javascript npm" }, { @@ -38451,13 +38994,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-range-slider", "npm": { - "downloads": 71027, - "weekDownloads": 14159, + "downloads": 66711, + "weekDownloads": 12889, "size": 30881, "latestRelease": "2.2.2", "latestReleaseDate": "2022-09-16T07:30:56.624Z" @@ -38468,7 +39012,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.581, + "popularity": -0.586, "topicSearchString": "react native react-native react-component component android ios custom range slider seekbar" }, { @@ -38529,11 +39073,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 93, - "weekDownloads": 16, + "downloads": 91, + "weekDownloads": 8, "size": 35839, "latestRelease": "1.1.1", "latestReleaseDate": "2020-11-06T13:51:41.896Z" @@ -38543,7 +39088,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, + "popularity": -0.674, "topicSearchString": "react-native calendar date datepicker jalali jalaali shamsi persian" }, { @@ -38602,13 +39147,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-fb-image-grid", "npm": { - "downloads": 114, - "weekDownloads": 9, + "downloads": 124, + "weekDownloads": 13, "size": 244374, "latestRelease": "0.0.5", "latestReleaseDate": "2020-12-26T17:57:16.978Z" @@ -38618,7 +39164,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.681, + "popularity": -1.66, "topicSearchString": "react-native react-component component react mobile ios android ui image imageloader gif glide" }, { @@ -38673,12 +39219,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 102, - "weekDownloads": 26, + "downloads": 207, + "weekDownloads": 17, "size": 22349, "latestRelease": "4.8.0", "latestReleaseDate": "2020-01-03T17:11:52.768Z" @@ -38689,7 +39236,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.283, + "popularity": -1.429, "topicSearchString": "mongodb aws twilio http mobile serverless stitch atlas react-native" }, { @@ -38734,11 +39281,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 102010, - "weekDownloads": 18428, + "downloads": 99431, + "weekDownloads": 18984, "size": 18910, "latestRelease": "0.3.2", "latestReleaseDate": "2024-05-23T14:29:35.722Z" @@ -38749,7 +39297,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.162, "topicSearchString": "" }, { @@ -38801,13 +39349,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-autoheight-webview", "npm": { - "downloads": 67425, - "weekDownloads": 13432, + "downloads": 64566, + "weekDownloads": 12078, "size": 22029, "latestRelease": "1.6.5", "latestReleaseDate": "2022-10-24T07:21:54.764Z" @@ -38819,7 +39368,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.581, + "popularity": -0.591, "topicSearchString": "react react-native autoheight webview" }, { @@ -38841,10 +39390,10 @@ "updatedAt": "2024-06-14T18:51:42Z", "createdAt": "2016-09-28T21:29:22Z", "pushedAt": "2024-06-14T18:51:42Z", - "forks": 157, + "forks": 158, "issues": 106, "subscribers": 12, - "stars": 678, + "stars": 679, "dependencies": 0 }, "name": "react-native-tts", @@ -38871,12 +39420,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-tts", "npm": { - "downloads": 116224, - "weekDownloads": 24636, + "downloads": 109195, + "weekDownloads": 26058, "size": 162442, "latestRelease": "4.1.1", "latestReleaseDate": "2024-06-14T18:46:49.275Z" @@ -38889,7 +39439,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.203, "topicSearchString": "tts voice speech text-to-speech react react-native android ios" }, { @@ -38945,12 +39495,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-config", "npm": { - "downloads": 1233993, - "weekDownloads": 237246, + "downloads": 1169306, + "weekDownloads": 228508, "size": 134682, "latestRelease": "1.5.9", "latestReleaseDate": "2025-09-02T13:12:05.144Z" @@ -38962,7 +39513,7 @@ "Known", "Lots of open issues" ], - "popularity": 0.163, + "popularity": 0.166, "topicSearchString": "env config config-var react-native android ios windows 12factor" }, { @@ -39010,12 +39561,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-deep-linking", "npm": { - "downloads": 11056, - "weekDownloads": 2213, + "downloads": 10366, + "weekDownloads": 2281, "size": 12706, "latestRelease": "2.2.0", "latestReleaseDate": "2019-01-06T13:24:28.214Z" @@ -39026,7 +39578,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.563, "topicSearchString": "react-native deep-linking ios android" }, { @@ -39077,13 +39629,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-boundary", "npm": { - "downloads": 44, - "weekDownloads": 18, + "downloads": 90, + "weekDownloads": 15, "size": 113540, "latestRelease": "1.1.1", "latestReleaseDate": "2019-06-27T06:02:38.785Z" @@ -39094,7 +39647,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.14, + "popularity": -1.357, "topicSearchString": "react-native geofence boundary ios android location region-monitoring geofencing" }, { @@ -39135,13 +39688,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-swift", "npm": { - "downloads": 3150, - "weekDownloads": 570, + "downloads": 3032, + "weekDownloads": 581, "size": 6270, "latestRelease": "1.2.3", "latestReleaseDate": "2020-03-31T17:03:06.345Z" @@ -39151,7 +39705,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.587, "topicSearchString": "" }, { @@ -39205,13 +39759,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-offline", "npm": { - "downloads": 39701, - "weekDownloads": 7164, + "downloads": 39035, + "weekDownloads": 7015, "size": 398905, "latestRelease": "6.0.2", "latestReleaseDate": "2023-02-14T21:40:17.788Z" @@ -39268,13 +39823,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-status-bar-height", "npm": { - "downloads": 220228, - "weekDownloads": 49521, + "downloads": 204802, + "weekDownloads": 40217, "size": 5986, "latestRelease": "2.6.0", "latestReleaseDate": "2020-11-09T19:24:08.724Z" @@ -39285,7 +39841,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.559, + "popularity": -0.583, "topicSearchString": "react-native" }, { @@ -39339,13 +39895,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sqlite-storage", "npm": { - "downloads": 128249, - "weekDownloads": 26991, + "downloads": 122603, + "weekDownloads": 24496, "size": 7445408, "latestRelease": "6.0.1", "latestReleaseDate": "2021-10-01T14:18:22.623Z" @@ -39358,7 +39915,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.571, + "popularity": -0.58, "topicSearchString": "sqlite-storage sqlite react-component reactnative react-native sqlite3 ios android promise cordova-sqlite-storage" }, { @@ -39410,12 +39967,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-parsed-text", "npm": { - "downloads": 342449, - "weekDownloads": 63489, + "downloads": 331543, + "weekDownloads": 65114, "size": 20650, "latestRelease": "0.0.22", "latestReleaseDate": "2020-06-24T19:27:21.767Z" @@ -39427,7 +39985,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.583, "topicSearchString": "text react-native url phone react react-component parsing" }, { @@ -39486,12 +40044,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-select-multiple", "npm": { - "downloads": 4360, - "weekDownloads": 793, + "downloads": 4371, + "weekDownloads": 854, "size": 14739, "latestRelease": "2.1.0", "latestReleaseDate": "2019-10-21T09:55:07.451Z" @@ -39502,7 +40061,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, + "popularity": -0.584, "topicSearchString": "select multiple picker select2 react native react-native list ui checkbox label" }, { @@ -39550,12 +40109,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-exceptions-manager", "npm": { - "downloads": 1313, - "weekDownloads": 37, + "downloads": 1588, + "weekDownloads": 106, "latestRelease": "0.2.0", "latestReleaseDate": "2017-08-04T08:30:24.501Z" }, @@ -39564,7 +40124,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.726, + "popularity": -0.693, "topicSearchString": "crash react react-native exception" }, { @@ -39617,12 +40177,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-wechat", "npm": { - "downloads": 1488, - "weekDownloads": 258, + "downloads": 1921, + "weekDownloads": 240, "size": 13584759, "latestRelease": "1.9.12", "latestReleaseDate": "2019-09-21T07:16:17.727Z" @@ -39635,7 +40196,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, + "popularity": -0.644, "topicSearchString": "wechat react react-native react-component ios wechat-sdk android mit js" }, { @@ -39692,12 +40253,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-code-push", "npm": { - "downloads": 266263, - "weekDownloads": 53856, + "downloads": 249623, + "weekDownloads": 55159, "size": 2396753, "latestRelease": "9.0.1", "latestReleaseDate": "2024-12-19T14:31:05.513Z" @@ -39709,7 +40271,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.578, + "popularity": -0.562, "topicSearchString": "react-native code push codepush code-push" }, { @@ -39760,12 +40322,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-navigation-transitions", "npm": { - "downloads": 2078, - "weekDownloads": 409, + "downloads": 2010, + "weekDownloads": 400, "size": 11255, "latestRelease": "1.0.12", "latestReleaseDate": "2019-07-26T20:38:20.359Z" @@ -39776,7 +40339,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, + "popularity": -0.581, "topicSearchString": "react-native react react-navigation navigation transitions animations" }, { @@ -39833,13 +40396,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-video-controls", "npm": { - "downloads": 59091, - "weekDownloads": 12785, + "downloads": 57429, + "weekDownloads": 12568, "size": 96263, "latestRelease": "2.8.1", "latestReleaseDate": "2021-05-07T20:40:24.868Z" @@ -39851,7 +40415,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.566, + "popularity": -0.564, "topicSearchString": "react-native video react-video-controls react-video-player ios android react component video-player video-controls elements" }, { @@ -39897,11 +40461,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 22388, - "weekDownloads": 3383, + "downloads": 23026, + "weekDownloads": 3889, "size": 18307, "latestRelease": "4.0.1", "latestReleaseDate": "2019-10-03T17:15:17.271Z" @@ -39912,7 +40477,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.622, + "popularity": -0.606, "topicSearchString": "" }, { @@ -39962,12 +40527,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-itunes", "npm": { - "downloads": 219, - "weekDownloads": 36, + "downloads": 257, + "weekDownloads": 37, "latestRelease": "0.5.0", "latestReleaseDate": "2017-12-04T16:11:44.062Z" }, @@ -39976,7 +40542,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.359, + "popularity": -1.377, "topicSearchString": "react-component react-native ios itunes apple music apple-music" }, { @@ -40004,7 +40570,7 @@ "forks": 432, "issues": 118, "subscribers": 44, - "stars": 2740, + "stars": 2743, "dependencies": 3 }, "name": "react-native-htmlview", @@ -40032,12 +40598,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-htmlview", "npm": { - "downloads": 146448, - "weekDownloads": 30815, + "downloads": 138578, + "weekDownloads": 28154, "size": 28095, "latestRelease": "0.17.0", "latestReleaseDate": "2023-11-02T12:42:33.470Z" @@ -40050,7 +40617,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.179, + "popularity": 0.173, "topicSearchString": "react html react-native react-component component mobile ui html-parser html-renderer" }, { @@ -40111,12 +40678,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-flash-message", "npm": { - "downloads": 193843, - "weekDownloads": 35432, + "downloads": 190410, + "weekDownloads": 37157, "size": 61711, "latestRelease": "0.4.2", "latestReleaseDate": "2023-08-09T14:30:00.112Z" @@ -40128,7 +40696,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.166, "topicSearchString": "react react-native react-component native component flash flashbar flashmessage message alert notification topbar iphonex ipad android utility javascript" }, { @@ -40181,12 +40749,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 57287, - "weekDownloads": 15146, + "downloads": 51421, + "weekDownloads": 11578, "size": 88198, "latestRelease": "2.3.2", "latestReleaseDate": "2023-07-03T11:50:29.500Z" @@ -40198,7 +40767,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.525, + "popularity": -0.559, "topicSearchString": "localization internationalization javascript typescript ios android react react-native react-component" }, { @@ -40251,13 +40820,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-photo-view-ex", "npm": { - "downloads": 3589, - "weekDownloads": 674, + "downloads": 3433, + "weekDownloads": 516, "size": 141054, "latestRelease": "1.1.0", "latestReleaseDate": "2019-05-20T20:03:37.927Z" @@ -40267,7 +40837,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.622, "topicSearchString": "react-native react-component ios android gallery lightbox pinch pinch-to-zoom mobile" }, { @@ -40318,12 +40888,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-spinkit", "npm": { - "downloads": 40392, - "weekDownloads": 8266, + "downloads": 38506, + "weekDownloads": 7819, "size": 408085, "latestRelease": "1.5.1", "latestReleaseDate": "2020-10-04T22:39:46.271Z" @@ -40335,7 +40906,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.173, "topicSearchString": "react-component react-native ios android spinkit spinner loader indicator" }, { @@ -40379,13 +40950,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tab-view-viewpager-adapter", "npm": { - "downloads": 499, - "weekDownloads": 90, + "downloads": 487, + "weekDownloads": 101, "size": 43925, "latestRelease": "1.1.0", "latestReleaseDate": "2020-07-15T20:58:33.932Z" @@ -40395,7 +40967,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.346, + "popularity": -1.323, "topicSearchString": "" }, { @@ -40447,12 +41019,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-webp-format", "npm": { - "downloads": 27538, - "weekDownloads": 5770, + "downloads": 24655, + "weekDownloads": 5900, "size": 14609, "latestRelease": "1.2.1", "latestReleaseDate": "2025-03-05T22:09:30.387Z" @@ -40461,7 +41034,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.203, "topicSearchString": "react react-native ios android webp" }, { @@ -40507,12 +41080,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-navigation-backhandler", "npm": { - "downloads": 17806, - "weekDownloads": 4080, + "downloads": 16736, + "weekDownloads": 3794, "size": 5892, "latestRelease": "2.0.3", "latestReleaseDate": "2025-03-12T11:08:30.907Z" @@ -40523,7 +41097,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.195, + "popularity": 0.193, "topicSearchString": "react-navigation react-native" }, { @@ -40574,12 +41148,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-billing", "npm": { - "downloads": 126, - "weekDownloads": 14, + "downloads": 247, + "weekDownloads": 19, "size": 47682, "latestRelease": "3.0.0", "latestReleaseDate": "2019-11-02T18:45:49.408Z" @@ -40590,7 +41165,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.403, + "popularity": -1.434, "topicSearchString": "react native inapp billing purchase react-native android bridge" }, { @@ -40641,12 +41216,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-typewriter", "npm": { - "downloads": 13124, - "weekDownloads": 2623, + "downloads": 12680, + "weekDownloads": 2848, "size": 16551, "latestRelease": "0.7.0", "latestReleaseDate": "2020-04-05T19:46:41.496Z" @@ -40656,7 +41232,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.559, "topicSearchString": "react react-native component animated typing typewriter" }, { @@ -40709,13 +41285,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-syntax-highlighter", "npm": { - "downloads": 10694, - "weekDownloads": 2075, + "downloads": 10898, + "weekDownloads": 2063, "size": 7206089, "latestRelease": "2.1.0", "latestReleaseDate": "2019-09-16T23:01:32.380Z" @@ -40726,7 +41303,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, + "popularity": -0.589, "topicSearchString": "react react-native syntax highlighting highlight.js react-syntax-highlighter" }, { @@ -40786,12 +41363,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fetch-blob", "npm": { - "downloads": 5355, - "weekDownloads": 888, + "downloads": 5889, + "weekDownloads": 894, "latestRelease": "0.10.8", "latestReleaseDate": "2017-08-03T01:40:25.924Z" }, @@ -40803,7 +41381,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.609, + "popularity": -0.621, "topicSearchString": "react-native fetch blob fs upload file download filestream image-header file-access storage network file-system polyfill android ios" }, { @@ -40855,12 +41433,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-md5", "npm": { - "downloads": 12534, - "weekDownloads": 2625, + "downloads": 11758, + "weekDownloads": 2354, "latestRelease": "1.0.0", "latestReleaseDate": "2016-10-17T08:52:01.916Z" }, @@ -40869,7 +41448,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.572, + "popularity": -0.58, "topicSearchString": "react-native md5 hex-md5 str-md5 hex-hmac-md5 b64-hmac-md5 str-hmac-md5" }, { @@ -40918,13 +41497,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-geocoding", "npm": { - "downloads": 74980, - "weekDownloads": 14452, + "downloads": 71757, + "weekDownloads": 12927, "size": 10697, "latestRelease": "0.5.0", "latestReleaseDate": "2020-12-09T07:55:15.489Z" @@ -40935,7 +41515,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.597, "topicSearchString": "react-native ios android geocoder geocoding" }, { @@ -40985,13 +41565,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-prompt-android", "npm": { - "downloads": 27753, - "weekDownloads": 5248, + "downloads": 26871, + "weekDownloads": 5009, "size": 50045, "latestRelease": "1.1.0", "latestReleaseDate": "2019-09-18T11:03:06.843Z" @@ -41002,7 +41583,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, + "popularity": -0.592, "topicSearchString": "react-component react-native prompt alert ios android" }, { @@ -41064,12 +41645,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-star-rating", "npm": { - "downloads": 27568, - "weekDownloads": 4344, + "downloads": 26825, + "weekDownloads": 4489, "size": 1608106, "latestRelease": "1.1.0", "latestReleaseDate": "2018-09-10T00:09:14.708Z" @@ -41081,7 +41663,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.616, + "popularity": -0.608, "topicSearchString": "react native react-native star stars rating ratings review reviews react-component ios android star-rating star-rating-component component custom-star star-icon" }, { @@ -41135,13 +41717,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-switch", "npm": { - "downloads": 79677, - "weekDownloads": 15817, + "downloads": 72333, + "weekDownloads": 14457, "size": 13072, "latestRelease": "1.5.1", "latestReleaseDate": "2022-02-21T21:54:49.931Z" @@ -41152,7 +41735,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.581, + "popularity": -0.58, "topicSearchString": "react-native react shapes android ios mobile switch customisable web" }, { @@ -41201,13 +41784,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-user-avatar", "npm": { - "downloads": 9865, - "weekDownloads": 2113, + "downloads": 9209, + "weekDownloads": 1719, "size": 43203, "latestRelease": "1.0.8", "latestReleaseDate": "2021-12-30T20:31:57.996Z" @@ -41218,7 +41802,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.568, + "popularity": -0.591, "topicSearchString": "react-native component avatar initials" }, { @@ -41246,7 +41830,7 @@ "forks": 92, "issues": 6, "subscribers": 13, - "stars": 1089, + "stars": 1090, "dependencies": 0 }, "name": "react-native-shimmer-placeholder", @@ -41271,12 +41855,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-shimmer-placeholder", "npm": { - "downloads": 189994, - "weekDownloads": 36340, + "downloads": 186754, + "weekDownloads": 36582, "size": 15648, "latestRelease": "2.0.9", "latestReleaseDate": "2022-08-09T04:33:00.421Z" @@ -41288,7 +41873,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.167, "topicSearchString": "loading placeholder react-native shimmer module skeleton" }, { @@ -41343,13 +41928,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-card-flip", "npm": { - "downloads": 7243, - "weekDownloads": 1106, + "downloads": 7285, + "weekDownloads": 1101, "size": 15624, "latestRelease": "1.0.7", "latestReleaseDate": "2020-06-07T15:42:00.674Z" @@ -41360,7 +41946,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.62, + "popularity": -0.622, "topicSearchString": "react-native flip cards card rotate deck card-flip flip-card component react-component flip-animation" }, { @@ -41405,13 +41991,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-device-detection", "npm": { - "downloads": 5883, - "weekDownloads": 1135, + "downloads": 5918, + "weekDownloads": 1168, "size": 4574, "latestRelease": "0.2.1", "latestReleaseDate": "2020-01-16T18:10:41.664Z" @@ -41421,7 +42008,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.582, "topicSearchString": "react-native" }, { @@ -41450,7 +42037,7 @@ "forks": 584, "issues": 84, "subscribers": 200, - "stars": 2619, + "stars": 2620, "dependencies": 0 }, "name": "react-native-camera-kit", @@ -41475,12 +42062,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-camera-kit", "npm": { - "downloads": 122578, - "weekDownloads": 21767, + "downloads": 117446, + "weekDownloads": 21914, "size": 563008, "latestRelease": "16.1.3", "latestReleaseDate": "2025-10-01T17:53:28.715Z" @@ -41493,7 +42081,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.151, + "popularity": 0.159, "topicSearchString": "react-native ios android camera" }, { @@ -41545,13 +42133,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-native-video-player", "npm": { - "downloads": 80, - "weekDownloads": 15, + "downloads": 129, + "weekDownloads": 24, "latestRelease": "1.3.4", "latestReleaseDate": "2017-07-31T07:13:30.218Z" }, @@ -41561,7 +42150,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.333, + "popularity": -1.34, "topicSearchString": "component react-component react-native photo video videos image images player" }, { @@ -41603,13 +42192,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-quick-actions", "npm": { - "downloads": 47509, - "weekDownloads": 8238, + "downloads": 46840, + "weekDownloads": 8499, "size": 531583, "latestRelease": "0.3.13", "latestReleaseDate": "2019-11-24T15:53:18.718Z" @@ -41621,7 +42211,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, + "popularity": -0.596, "topicSearchString": "" }, { @@ -41682,13 +42272,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-swipe-list-view", "npm": { - "downloads": 178010, - "weekDownloads": 33560, + "downloads": 171629, + "weekDownloads": 32194, "size": 114222, "latestRelease": "3.2.9", "latestReleaseDate": "2021-06-18T19:09:44.733Z" @@ -41700,7 +42291,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.591, "topicSearchString": "react react-native react-component ios android listview swipe swipeable javascript swipelistview component" }, { @@ -41751,12 +42342,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-platform-stylesheet", "npm": { - "downloads": 1436, - "weekDownloads": 232, + "downloads": 1393, + "weekDownloads": 205, "latestRelease": "0.0.6", "latestReleaseDate": "2016-07-25T09:20:58.833Z" }, @@ -41765,7 +42357,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, + "popularity": -0.625, "topicSearchString": "react-native stylesheet ios android platform react" }, { @@ -41816,12 +42408,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-background-task", "npm": { - "downloads": 1152, - "weekDownloads": 274, + "downloads": 1182, + "weekDownloads": 424, "latestRelease": "0.2.1", "latestReleaseDate": "2017-08-10T10:54:32.578Z" }, @@ -41832,7 +42425,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.548, + "popularity": -0.445, "topicSearchString": "react-native background-jobs fetch android ios offline sync" }, { @@ -41880,13 +42473,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-background-timer", "npm": { - "downloads": 522183, - "weekDownloads": 96377, + "downloads": 498794, + "weekDownloads": 107835, "size": 31801, "latestRelease": "2.4.1", "latestReleaseDate": "2020-10-01T15:46:09.335Z" @@ -41899,7 +42493,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.566, "topicSearchString": "react-native background timer android ios" }, { @@ -41951,12 +42545,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 39538, - "weekDownloads": 7330, + "downloads": 37980, + "weekDownloads": 6853, "size": 2257167, "latestRelease": "2.0.6", "latestReleaseDate": "2020-02-25T15:54:24.901Z" @@ -41967,7 +42562,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.597, "topicSearchString": "react-component react-native android picker wheel-picker date-picker date-wheel-picker" }, { @@ -42011,12 +42606,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-round-flags", "npm": { - "downloads": 2667, - "weekDownloads": 544, + "downloads": 2648, + "weekDownloads": 505, "latestRelease": "1.0.4", "latestReleaseDate": "2017-08-30T04:33:20.758Z" }, @@ -42025,7 +42621,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.826, + "popularity": -0.838, "topicSearchString": "" }, { @@ -42074,13 +42670,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-easy-markdown", "npm": { - "downloads": 15111, - "weekDownloads": 3394, + "downloads": 13875, + "weekDownloads": 2837, "size": 46954, "latestRelease": "2.0.0", "latestReleaseDate": "2020-02-26T18:36:31.676Z" @@ -42090,7 +42687,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.559, + "popularity": -0.576, "topicSearchString": "react-native native markdown parse parser" }, { @@ -42143,12 +42740,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-haptic-feedback", "npm": { - "downloads": 883939, - "weekDownloads": 170952, + "downloads": 849957, + "weekDownloads": 167889, "size": 85065, "latestRelease": "2.3.3", "latestReleaseDate": "2024-09-18T14:07:52.181Z" @@ -42160,7 +42758,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.168, "topicSearchString": "react-native haptic haptic-feedback android ios native feedback" }, { @@ -42213,12 +42811,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": true }, "npmPkg": "react-native-map-link", "npm": { - "downloads": 133237, - "weekDownloads": 24008, + "downloads": 131046, + "weekDownloads": 23684, "size": 310543, "latestRelease": "3.9.0", "latestReleaseDate": "2025-04-01T10:07:23.875Z" @@ -42230,7 +42829,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.154, "topicSearchString": "react-native react-component maps link linking react ios android directions" }, { @@ -42285,12 +42884,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-material-dropdown", "npm": { - "downloads": 12471, - "weekDownloads": 2818, + "downloads": 11943, + "weekDownloads": 2798, "size": 28106, "latestRelease": "0.11.1", "latestReleaseDate": "2018-03-22T08:21:16.073Z" @@ -42303,7 +42903,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.558, + "popularity": -0.551, "topicSearchString": "react react-component react-native ios android material dropdown spinner select material-design" }, { @@ -42367,12 +42967,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "recyclerlistview", "npm": { - "downloads": 2970886, - "weekDownloads": 591339, + "downloads": 2844366, + "weekDownloads": 577064, "size": 6000510, "latestRelease": "4.2.3", "latestReleaseDate": "2025-03-15T02:49:28.974Z" @@ -42386,7 +42987,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.172, "topicSearchString": "react-native recyclerview listview flatlist-alternative flatlist 60fps cross-platform web performance" }, { @@ -42438,11 +43039,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 3429, - "weekDownloads": 919, + "downloads": 3966, + "weekDownloads": 1068, "size": 1253865, "latestRelease": "6.1.3", "latestReleaseDate": "2018-08-24T16:24:08.947Z" @@ -42456,7 +43058,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.522, + "popularity": -0.521, "topicSearchString": "gl ios android mapbox react-component react-native mapbox-gl" }, { @@ -42503,13 +43105,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tableview", "npm": { - "downloads": 14708, - "weekDownloads": 1291, + "downloads": 15225, + "weekDownloads": 1804, "size": 2630501, "latestRelease": "3.1.0", "latestReleaseDate": "2021-01-04T15:59:15.670Z" @@ -42521,7 +43124,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.675, + "popularity": -0.649, "topicSearchString": "react-native react-component uitableview tableview ios" }, { @@ -42575,12 +43178,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 960, - "weekDownloads": 141, + "downloads": 970, + "weekDownloads": 213, "size": 44958, "latestRelease": "3.1.0-rc.2", "latestReleaseDate": "2021-08-05T10:43:20.245Z" @@ -42592,7 +43196,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.375, + "popularity": -1.313, "topicSearchString": "react-native react-component large-list flatlist sectionlist tableview high-performance swipeout swipable-flatlist" }, { @@ -42646,12 +43250,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-root-toast", "npm": { - "downloads": 178243, - "weekDownloads": 33468, + "downloads": 172740, + "weekDownloads": 33919, "size": 17928, "latestRelease": "4.0.1", "latestReleaseDate": "2025-03-25T04:00:23.008Z" @@ -42663,7 +43268,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.167, "topicSearchString": "react-component react-native ios android image video focus" }, { @@ -42688,7 +43293,7 @@ "forks": 150, "issues": 23, "subscribers": 12, - "stars": 1355, + "stars": 1356, "dependencies": 6 }, "name": "react-native-masonry", @@ -42716,13 +43321,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-masonry", "npm": { - "downloads": 187, - "weekDownloads": 36, + "downloads": 338, + "weekDownloads": 23, "size": 27582, "latestRelease": "0.5.0-alpha.5", "latestReleaseDate": "2019-06-16T00:10:35.472Z" @@ -42734,7 +43340,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.336, + "popularity": -1.442, "topicSearchString": "react-native masonry pinterest grid layout masonry-layout masonry-grid react pinterest-like" }, { @@ -42787,11 +43393,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sglistview", "npm": { - "downloads": 33, + "downloads": 135, "weekDownloads": 5, "latestRelease": "0.4.5", "latestReleaseDate": "2018-01-15T03:59:20.779Z" @@ -42803,7 +43410,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.357, + "popularity": -1.468, "topicSearchString": "reactnative listview react react-native component sglistview sglistview-performance sg" }, { @@ -42855,12 +43462,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-timeline-listview", "npm": { - "downloads": 367, - "weekDownloads": 84, + "downloads": 425, + "weekDownloads": 58, "size": 26102, "latestRelease": "0.2.3", "latestReleaseDate": "2018-03-05T14:30:41.977Z" @@ -42872,7 +43480,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.305, + "popularity": -1.384, "topicSearchString": "react-native timeline listview schedule component ios android" }, { @@ -42925,12 +43533,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-copilot", "npm": { - "downloads": 34773, - "weekDownloads": 6758, + "downloads": 33584, + "weekDownloads": 6305, "size": 207766, "latestRelease": "3.3.3", "latestReleaseDate": "2024-12-17T21:34:49.626Z" @@ -42943,7 +43552,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.16, "topicSearchString": "react-native joyride react copilot intro.js intro walkthrough tooltip tutorial" }, { @@ -42998,12 +43607,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sketch", "npm": { - "downloads": 42, - "weekDownloads": 11, + "downloads": 105, + "weekDownloads": 2, "latestRelease": "1.1.0", "latestReleaseDate": "2017-11-27T01:36:16.536Z" }, @@ -43013,7 +43623,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.256, + "popularity": -1.483, "topicSearchString": "react react-component react-native ios sketch draw drawing touch paint canvas signature" }, { @@ -43039,7 +43649,7 @@ "forks": 322, "issues": 50, "subscribers": 51, - "stars": 3177, + "stars": 3178, "dependencies": 3 }, "name": "galio-framework", @@ -43073,11 +43683,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 5429, - "weekDownloads": 878, + "downloads": 6159, + "weekDownloads": 790, "size": 637691, "latestRelease": "0.9.4", "latestReleaseDate": "2025-08-28T06:57:41.307Z" @@ -43089,7 +43700,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.138, + "popularity": 0.109, "topicSearchString": "android ios react-native component-library ui-kit bootstrap typescript mobile-apps react expo galio mobile-development reactnative app ui" }, { @@ -43147,12 +43758,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-super-grid", "npm": { - "downloads": 87843, - "weekDownloads": 17547, + "downloads": 86274, + "weekDownloads": 17110, "size": 47560, "latestRelease": "6.0.2", "latestReleaseDate": "2025-08-25T03:18:19.866Z" @@ -43163,7 +43775,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.169, "topicSearchString": "react react-native responsive super grid view flat-list list-view section-list grid-view gridview listview flatlist responsive-grid" }, { @@ -43222,12 +43834,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-activity-view", "npm": { - "downloads": 313, - "weekDownloads": 67, + "downloads": 302, + "weekDownloads": 60, "latestRelease": "0.2.11", "latestReleaseDate": "2017-03-22T23:52:25.159Z" }, @@ -43237,7 +43850,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.316, + "popularity": -1.331, "topicSearchString": "react-native react native activity-view react-component component action-sheet share-sheet share sheet facebook twitter mail social airdrop" }, { @@ -43287,11 +43900,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-refresher", "npm": { - "downloads": 17, + "downloads": 28, "weekDownloads": 6, "latestRelease": "0.1.1", "latestReleaseDate": "2015-07-23T08:17:04.177Z" @@ -43302,7 +43916,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.2, + "popularity": -1.3, "topicSearchString": "react react-native react-component component mobile ui" }, { @@ -43348,12 +43962,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-carousel", "npm": { - "downloads": 2311, - "weekDownloads": 545, + "downloads": 2066, + "weekDownloads": 505, "size": 11901, "latestRelease": "0.12.0", "latestReleaseDate": "2019-10-11T13:57:18.846Z" @@ -43364,7 +43979,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.549, + "popularity": -0.542, "topicSearchString": "react-native carousel" }, { @@ -43412,12 +44027,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-draftjs-render", "npm": { - "downloads": 4053, - "weekDownloads": 1969, + "downloads": 4093, + "weekDownloads": 1845, "size": 445966, "latestRelease": "2.9.0", "latestReleaseDate": "2019-01-04T18:02:11.133Z" @@ -43428,7 +44044,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.337, + "popularity": -0.367, "topicSearchString": "react-native draft-js reactnative draftjs" }, { @@ -43476,12 +44092,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-html-to-pdf", "npm": { - "downloads": 119262, - "weekDownloads": 23383, + "downloads": 114735, + "weekDownloads": 21576, "size": 45664, "latestRelease": "1.3.0", "latestReleaseDate": "2025-09-04T15:41:20.650Z" @@ -43492,7 +44109,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.16, "topicSearchString": "react-native ios android" }, { @@ -43543,11 +44160,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-html-webview", "npm": { - "downloads": 151, + "downloads": 202, "weekDownloads": 0, "latestRelease": "0.0.17", "latestReleaseDate": "2015-12-09T19:01:21.662Z" @@ -43606,12 +44224,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-html-render", "npm": { - "downloads": 84, - "weekDownloads": 10, + "downloads": 110, + "weekDownloads": 11, "latestRelease": "1.0.5", "latestReleaseDate": "2016-10-24T15:21:14.686Z" }, @@ -43620,7 +44239,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.395, + "popularity": -1.412, "topicSearchString": "react-component react-native ios noder react" }, { @@ -43672,12 +44291,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-measure-text", "npm": { - "downloads": 2548, - "weekDownloads": 367, + "downloads": 2326, + "weekDownloads": 286, "latestRelease": "1.0.0-alpha.2", "latestReleaseDate": "2017-10-12T15:20:19.824Z" }, @@ -43686,7 +44306,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.627, + "popularity": -0.645, "topicSearchString": "react-native measure text height precompute block multiline measue" }, { @@ -43744,13 +44364,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-file-viewer", "npm": { - "downloads": 310441, - "weekDownloads": 61754, + "downloads": 295372, + "weekDownloads": 57969, "size": 55043, "latestRelease": "2.1.5", "latestReleaseDate": "2021-12-12T21:32:25.131Z" @@ -43762,7 +44383,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.581, + "popularity": -0.583, "topicSearchString": "react-native mobile ios android windows file viewer preview quicklook pdf doc" }, { @@ -43818,13 +44439,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-responsive-fontsize", "npm": { - "downloads": 89835, - "weekDownloads": 16237, + "downloads": 88102, + "weekDownloads": 15944, "size": 13764, "latestRelease": "0.5.1", "latestReleaseDate": "2021-07-17T11:29:29.158Z" @@ -43890,12 +44512,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-text-size", "npm": { - "downloads": 33356, - "weekDownloads": 6206, + "downloads": 32126, + "weekDownloads": 6048, "size": 167153, "latestRelease": "4.0.0-rc.1", "latestReleaseDate": "2019-07-30T00:39:34.313Z" @@ -43906,7 +44529,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.59, "topicSearchString": "react-native measure text size height width precompute block layout multiline fonts" }, { @@ -43949,11 +44572,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-hypertext", "npm": { - "downloads": 21, + "downloads": 30, "weekDownloads": 2, "latestRelease": "0.0.3", "latestReleaseDate": "2016-06-13T21:30:01.186Z" @@ -43964,7 +44588,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.65, + "popularity": -1.693, "topicSearchString": "react native hypertext html links" }, { @@ -44016,12 +44640,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-asciimage", "npm": { - "downloads": 6, - "weekDownloads": 3, + "downloads": 36, + "weekDownloads": 1, "latestRelease": "0.1.5", "latestReleaseDate": "2015-08-06T00:09:28.714Z" }, @@ -44030,7 +44655,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.15, + "popularity": -1.725, "topicSearchString": "react-native react react-component ios native ascii asciimage image" }, { @@ -44084,12 +44709,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fabric", "npm": { - "downloads": 1336, - "weekDownloads": 415, + "downloads": 1206, + "weekDownloads": 179, "size": 131634, "latestRelease": "0.5.2", "latestReleaseDate": "2018-09-28T14:07:58.082Z" @@ -44101,7 +44727,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.486, + "popularity": -0.623, "topicSearchString": "android answers crashlytics fabric ios mobile react react-component react-native component" }, { @@ -44153,11 +44779,12 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 53623, - "weekDownloads": 11328, + "downloads": 50092, + "weekDownloads": 11220, "size": 157052, "latestRelease": "6.0.7", "latestReleaseDate": "2025-06-19T06:26:54.935Z" @@ -44166,7 +44793,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.19, "topicSearchString": "react-native android ios react-native user-sessions ux uxcam ux-cam" }, { @@ -44214,7 +44841,8 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-td", "npm": { @@ -44284,13 +44912,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-flurry-sdk", "npm": { - "downloads": 372, - "weekDownloads": 58, + "downloads": 819, + "weekDownloads": 67, "size": 330084, "latestRelease": "8.3.0", "latestReleaseDate": "2023-08-28T18:23:43.418Z" @@ -44300,7 +44929,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.367, + "popularity": -1.43, "topicSearchString": "react-native module android ios tvos flurry analytics config messaging push marketing" }, { @@ -44325,7 +44954,7 @@ "forks": 481, "issues": 69, "subscribers": 236, - "stars": 8262, + "stars": 8261, "dependencies": 4 }, "name": "reactxp", @@ -44343,13 +44972,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "reactxp", "npm": { - "downloads": 1308, - "weekDownloads": 225, + "downloads": 1681, + "weekDownloads": 182, "size": 1898969, "latestRelease": "2.0.0", "latestReleaseDate": "2019-11-30T09:11:12.630Z" @@ -44362,7 +44992,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, + "popularity": -0.658, "topicSearchString": "" }, { @@ -44412,12 +45042,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-geo-fencing", "npm": { - "downloads": 450, - "weekDownloads": 112, + "downloads": 403, + "weekDownloads": 80, "latestRelease": "0.1.0", "latestReleaseDate": "2016-05-24T09:28:10.137Z" }, @@ -44427,7 +45058,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.287, + "popularity": -1.33, "topicSearchString": "react-native googlemaps geometry polygon containslocation geo-fencing" }, { @@ -44480,12 +45111,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fused-location", "npm": { - "downloads": 707, - "weekDownloads": 136, + "downloads": 782, + "weekDownloads": 106, "size": 35958, "latestRelease": "1.1.2", "latestReleaseDate": "2022-01-02T15:47:41.038Z" @@ -44496,7 +45128,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.336, + "popularity": -1.385, "topicSearchString": "react react-native location gps fused android play-services npm native javascript" }, { @@ -44537,12 +45169,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-google-static-map", "npm": { - "downloads": 351, - "weekDownloads": 27, + "downloads": 413, + "weekDownloads": 31, "size": 7354, "latestRelease": "0.1.13", "latestReleaseDate": "2018-10-18T11:15:05.671Z" @@ -44553,7 +45186,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.434, + "popularity": -1.436, "topicSearchString": "react-component react-native ios" }, { @@ -44596,12 +45229,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-geolocation-android", "npm": { - "downloads": 33, - "weekDownloads": 5, + "downloads": 40, + "weekDownloads": 8, "latestRelease": "0.3.0", "latestReleaseDate": "2015-11-11T14:32:26.871Z" }, @@ -44611,7 +45245,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.607, + "popularity": -1.572, "topicSearchString": "react native android location gps geolocation" }, { @@ -44658,12 +45292,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 444, - "weekDownloads": 78, + "downloads": 418, + "weekDownloads": 94, "size": 272387, "latestRelease": "1.2.18", "latestReleaseDate": "2021-11-14T21:09:11.181Z" @@ -44673,7 +45308,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, + "popularity": -1.308, "topicSearchString": "react-native picker wheel" }, { @@ -44694,13 +45329,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T07:48:19Z", + "updatedAt": "2025-10-17T12:49:56Z", "createdAt": "2016-11-30T14:45:57Z", - "pushedAt": "2025-10-16T07:48:19Z", + "pushedAt": "2025-10-17T12:49:56Z", "forks": 342, - "issues": 181, + "issues": 179, "subscribers": 75, - "stars": 1722, + "stars": 1725, "dependencies": 6 }, "name": "@sentry/react-native", @@ -44724,14 +45359,15 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 2960555, - "weekDownloads": 548989, - "size": 7078965, - "latestRelease": "7.3.0", - "latestReleaseDate": "2025-10-09T09:41:33.920Z" + "downloads": 2826183, + "weekDownloads": 560136, + "size": 7084767, + "latestRelease": "7.4.0", + "latestReleaseDate": "2025-10-17T13:21:43.390Z" }, "score": 86, "matchingScoreModifiers": [ @@ -44742,7 +45378,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.168, "topicSearchString": "react-native sentry crashreporting ios" }, { @@ -44790,13 +45426,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bluetooth-status", "npm": { - "downloads": 2900, - "weekDownloads": 670, + "downloads": 2644, + "weekDownloads": 562, "size": 100098, "latestRelease": "1.5.1", "latestReleaseDate": "2020-05-28T12:53:28.135Z" @@ -44807,7 +45444,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.554, + "popularity": -0.569, "topicSearchString": "react-native react-component bluetooth ios android" }, { @@ -44862,13 +45499,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-confirmation-code-input", "npm": { - "downloads": 6354, - "weekDownloads": 1219, + "downloads": 6118, + "weekDownloads": 1091, "latestRelease": "1.0.4", "latestReleaseDate": "2017-10-10T15:03:16.261Z" }, @@ -44878,7 +45516,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.598, "topicSearchString": "react react-component react-native component android ios code-input confirmation-code pin-code confirmation-code-input pin-code-input" }, { @@ -44902,7 +45540,7 @@ "forks": 189, "issues": 46, "subscribers": 11, - "stars": 348, + "stars": 350, "dependencies": 1 }, "name": "react-native-google-fit", @@ -44933,12 +45571,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-google-fit", "npm": { - "downloads": 16973, - "weekDownloads": 2837, + "downloads": 16590, + "weekDownloads": 2770, "size": 253120, "latestRelease": "0.22.1", "latestReleaseDate": "2025-10-08T06:55:50.014Z" @@ -45002,12 +45641,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-idle-timer", "npm": { - "downloads": 30684, - "weekDownloads": 5433, + "downloads": 29056, + "weekDownloads": 6004, "size": 87353, "latestRelease": "2.2.3", "latestReleaseDate": "2024-05-08T14:11:34.564Z" @@ -45018,7 +45658,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.176, "topicSearchString": "react-native idle-timer react native screen lock sleep idle timer dim" }, { @@ -45061,13 +45701,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-image-mapper", "npm": { - "downloads": 656, - "weekDownloads": 130, + "downloads": 663, + "weekDownloads": 108, "size": 6085, "latestRelease": "0.1.11", "latestReleaseDate": "2019-05-27T16:50:05.047Z" @@ -45077,7 +45718,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.331, + "popularity": -1.362, "topicSearchString": "" }, { @@ -45148,11 +45789,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 661817, - "weekDownloads": 122422, + "downloads": 637311, + "weekDownloads": 129962, "size": 115946, "latestRelease": "3.7.0", "latestReleaseDate": "2022-07-30T03:27:24.829Z" @@ -45165,7 +45807,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.173, "topicSearchString": "react-native javascript android ios browser inappbrowser in-app-browser appbrowser chrome safari chrome-custom-tabs safariservices authenticationservices sfsafariviewcontroller customtabsintent chrometabsmanageractivity deep-linking deep-links xcode plugin" }, { @@ -45213,13 +45855,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-progress-bar-animated", "npm": { - "downloads": 10247, - "weekDownloads": 2379, + "downloads": 9389, + "weekDownloads": 2183, "latestRelease": "1.0.6", "latestReleaseDate": "2017-12-21T12:26:55.955Z" }, @@ -45228,7 +45871,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.553, + "popularity": -0.552, "topicSearchString": "react native progress bar" }, { @@ -45281,13 +45924,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-reanimated-slider", "npm": { - "downloads": 178, - "weekDownloads": 36, + "downloads": 194, + "weekDownloads": 25, "size": 21394, "latestRelease": "2.0.0", "latestReleaseDate": "2021-10-28T21:04:08.958Z" @@ -45297,7 +45941,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.324, + "popularity": -1.389, "topicSearchString": "reanimated slider seekbar video react-native ios react android slider-component" }, { @@ -45341,12 +45985,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 103601, - "weekDownloads": 20626, + "downloads": 97735, + "weekDownloads": 20497, "size": 101481, "latestRelease": "2.2.3", "latestReleaseDate": "2018-05-20T14:04:06.370Z" @@ -45357,7 +46002,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.581, + "popularity": -0.572, "topicSearchString": "" }, { @@ -45380,9 +46025,9 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-15T21:49:36Z", + "updatedAt": "2025-10-16T21:27:11Z", "createdAt": "2016-05-10T17:13:13Z", - "pushedAt": "2025-10-15T21:49:36Z", + "pushedAt": "2025-10-16T21:27:11Z", "forks": 216, "issues": 4, "subscribers": 4, @@ -45414,12 +46059,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-sensitive-info", "npm": { - "downloads": 101121, - "weekDownloads": 17919, + "downloads": 96906, + "weekDownloads": 18567, "size": 1401007, "latestRelease": "5.5.8", "latestReleaseDate": "2020-07-29T19:05:04.226Z" @@ -45431,7 +46077,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.163, "topicSearchString": "react-native sensitive-info android ios-keychain ios keystore fingerprint" }, { @@ -45487,12 +46133,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-touch-id", "npm": { - "downloads": 51273, - "weekDownloads": 10319, + "downloads": 48771, + "weekDownloads": 9823, "size": 166758, "latestRelease": "4.4.1", "latestReleaseDate": "2019-02-15T19:22:38.433Z" @@ -45552,13 +46199,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-version-number", "npm": { - "downloads": 84275, - "weekDownloads": 16832, + "downloads": 80391, + "weekDownloads": 15427, "size": 33155, "latestRelease": "0.3.6", "latestReleaseDate": "2019-05-15T09:21:18.351Z" @@ -45569,7 +46217,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.587, "topicSearchString": "react react-native ios react-component android" }, { @@ -45618,13 +46266,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-youtube", "npm": { - "downloads": 14903, - "weekDownloads": 2424, + "downloads": 15755, + "weekDownloads": 2308, "size": 310536, "latestRelease": "2.0.2", "latestReleaseDate": "2021-06-21T18:36:49.908Z" @@ -45637,7 +46286,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, + "popularity": -0.625, "topicSearchString": "youtube react react-native" }, { @@ -45683,13 +46332,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-powerbi", "npm": { - "downloads": 131, - "weekDownloads": 29, + "downloads": 125, + "weekDownloads": 12, "size": 6510, "latestRelease": "0.1.0", "latestReleaseDate": "2018-03-13T12:30:01.508Z" @@ -45699,7 +46349,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.557, + "popularity": -1.667, "topicSearchString": "react native powerbi" }, { @@ -45759,12 +46409,13 @@ "newArchitecture": false, "isArchived": true, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "react-native-msal", "npm": { - "downloads": 19104, - "weekDownloads": 3574, + "downloads": 18560, + "weekDownloads": 3226, "size": 137229, "latestRelease": "4.0.4", "latestReleaseDate": "2021-12-23T16:16:23.393Z" @@ -45775,7 +46426,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.602, "topicSearchString": "react-native ios android msal azure b2c aad expo microsoft azure-active-directory azure-active-directory-b2c" }, { @@ -45809,7 +46460,7 @@ "forks": 192, "issues": 12, "subscribers": 25, - "stars": 2026, + "stars": 2027, "dependencies": 0 }, "name": "react-native-sticky-parallax-header", @@ -45836,12 +46487,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 9812, - "weekDownloads": 1868, + "downloads": 11415, + "weekDownloads": 1807, "size": 1158112, "latestRelease": "1.1.1", "latestReleaseDate": "2023-05-11T15:00:21.894Z" @@ -45853,7 +46505,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.588, + "popularity": -0.615, "topicSearchString": "open-source contribution stickyheader header parallax hacktoberfest react-native" }, { @@ -45908,13 +46560,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-backdrop-modal", "npm": { - "downloads": 184, - "weekDownloads": 19, + "downloads": 349, + "weekDownloads": 17, "size": 10721, "latestRelease": "1.6.4", "latestReleaseDate": "2022-11-28T15:14:51.428Z" @@ -45924,7 +46577,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.412, + "popularity": -1.459, "topicSearchString": "react-native component ios android material-design backdrop modal expo" }, { @@ -45981,13 +46634,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-woodpicker", "npm": { - "downloads": 9409, - "weekDownloads": 1627, + "downloads": 9270, + "weekDownloads": 1645, "size": 51441, "latestRelease": "0.3.17", "latestReleaseDate": "2021-12-20T08:38:52.990Z" @@ -45997,7 +46651,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, + "popularity": -0.599, "topicSearchString": "react-native picker datetimepicker react" }, { @@ -46055,13 +46709,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ultimate-config", "npm": { - "downloads": 18915, - "weekDownloads": 3317, + "downloads": 18393, + "weekDownloads": 3471, "size": 49942, "latestRelease": "6.0.1", "latestReleaseDate": "2023-09-01T08:44:31.172Z" @@ -46072,7 +46727,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, + "popularity": -0.59, "topicSearchString": "react-native ios android 12factor 12factorapp dotenv env environment config xcconfig gradle objective-c java typescript" }, { @@ -46126,12 +46781,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-font-mapping", "npm": { - "downloads": 17, + "downloads": 19, "weekDownloads": 5, "size": 468645, "latestRelease": "1.0.0", @@ -46213,13 +46869,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-modalize", "npm": { - "downloads": 187172, - "weekDownloads": 33709, + "downloads": 180572, + "weekDownloads": 32798, "size": 65646, "latestRelease": "2.1.1", "latestReleaseDate": "2022-08-10T12:11:52.889Z" @@ -46232,7 +46889,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.596, "topicSearchString": "react-native react native modal bottom-sheet bottom sheet scrollview flatlist sectionlist scroll swipe keyboard snap android ios component" }, { @@ -46295,12 +46952,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-tourguide", "npm": { - "downloads": 19837, - "weekDownloads": 3568, + "downloads": 19511, + "weekDownloads": 3585, "size": 68929, "latestRelease": "3.3.2", "latestReleaseDate": "2024-10-30T09:27:16.950Z" @@ -46312,7 +46970,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.156, "topicSearchString": "react-native joyride react copilot intro.js intro tourguide svg-animations morphing flubber tutorial mask-svg-path rn-tourguide tooltip expo" }, { @@ -46349,7 +47007,7 @@ "forks": 282, "issues": 42, "subscribers": 12, - "stars": 1351, + "stars": 1352, "dependencies": 0 }, "name": "@react-native-community/slider", @@ -46372,11 +47030,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 2408398, - "weekDownloads": 463112, + "downloads": 2316122, + "weekDownloads": 457681, "size": 1038255, "latestRelease": "5.0.1", "latestReleaseDate": "2025-08-19T14:37:32.759Z" @@ -46387,7 +47046,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.168, "topicSearchString": "react-native react-native slider" }, { @@ -46444,12 +47103,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 198, - "weekDownloads": 31, + "downloads": 195, + "weekDownloads": 38, "size": 82836, "latestRelease": "0.0.1", "latestReleaseDate": "2020-06-05T03:36:34.452Z" @@ -46459,7 +47119,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.615, + "popularity": -1.581, "topicSearchString": "react-native triangle triangle-view geometry shapes" }, { @@ -46519,13 +47179,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "reinput", "npm": { - "downloads": 532, - "weekDownloads": 190, + "downloads": 548, + "weekDownloads": 149, "size": 34734, "latestRelease": "3.7.2", "latestReleaseDate": "2020-06-15T09:55:46.651Z" @@ -46535,7 +47196,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.196, + "popularity": -1.267, "topicSearchString": "react-native input animation textinput material-design material placeholder labels icons" }, { @@ -46602,12 +47263,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-network-logger", "npm": { - "downloads": 181991, - "weekDownloads": 35082, + "downloads": 173454, + "weekDownloads": 34831, "size": 231447, "latestRelease": "2.0.1", "latestReleaseDate": "2025-06-14T12:14:28.293Z" @@ -46617,7 +47279,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.171, "topicSearchString": "react native react-native network interceptor http monitor logging ios android debugger network-monitoring charles network-debug hacktoberfest" }, { @@ -46673,12 +47335,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-dotenv", "npm": { - "downloads": 851264, - "weekDownloads": 168795, + "downloads": 819603, + "weekDownloads": 159726, "size": 22020, "latestRelease": "3.4.11", "latestReleaseDate": "2024-02-27T23:29:29.874Z" @@ -46690,7 +47353,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.166, "topicSearchString": "dotenv babel-plugin babel dotenv-flow react react-native config env 12factor hacktoberfest environment-variables" }, { @@ -46742,11 +47405,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 67, - "weekDownloads": 8, + "downloads": 131, + "weekDownloads": 11, "latestRelease": "1.2.3", "latestReleaseDate": "2016-11-27T18:47:04.960Z" }, @@ -46756,7 +47420,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.393, + "popularity": -1.427, "topicSearchString": "react-component react-native dropdown ios android select-tag chooser" }, { @@ -46805,12 +47469,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-music-metadata", "npm": { - "downloads": 47, - "weekDownloads": 16, + "downloads": 51, + "weekDownloads": 12, "latestRelease": "0.0.2", "latestReleaseDate": "2017-05-09T02:38:19.346Z" }, @@ -46819,7 +47484,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.459, + "popularity": -1.55, "topicSearchString": "react-native react-component metadata music track" }, { @@ -46845,7 +47510,7 @@ "forks": 239, "issues": 32, "subscribers": 16, - "stars": 700, + "stars": 701, "dependencies": 0 }, "name": "react-native-music-control", @@ -46874,12 +47539,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-music-control", "npm": { - "downloads": 8609, - "weekDownloads": 2873, + "downloads": 7850, + "weekDownloads": 2207, "size": 126089, "latestRelease": "1.4.1", "latestReleaseDate": "2022-03-21T03:34:54.647Z" @@ -46891,7 +47557,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.466, + "popularity": -0.511, "topicSearchString": "react react-native remote-controls lockscreen nowplaying mpnowplayinginfocenter ios android now-playing sound" }, { @@ -46939,12 +47605,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-mock", "npm": { - "downloads": 22569, - "weekDownloads": 4183, + "downloads": 22280, + "weekDownloads": 3315, "latestRelease": "0.3.1", "latestReleaseDate": "2017-02-03T19:52:04.086Z" }, @@ -46955,7 +47622,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.624, "topicSearchString": "react react-native mock testing" }, { @@ -46977,7 +47644,7 @@ "updatedAt": "2018-07-17T07:07:22Z", "createdAt": "2015-03-20T10:20:53Z", "pushedAt": "2018-07-17T07:07:22Z", - "forks": 33, + "forks": 32, "issues": 5, "subscribers": 14, "stars": 309, @@ -47002,12 +47669,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-timer-mixin", "npm": { - "downloads": 661580, - "weekDownloads": 122610, + "downloads": 653193, + "weekDownloads": 123736, "size": 24636, "latestRelease": "0.13.4", "latestReleaseDate": "2018-07-17T07:08:28.416Z" @@ -47019,7 +47687,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.589, "topicSearchString": "react timer mixin" }, { @@ -47068,12 +47736,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fileupload", "npm": { - "downloads": 19, - "weekDownloads": 6, + "downloads": 28, + "weekDownloads": 4, "latestRelease": "1.2.0", "latestReleaseDate": "2015-12-24T15:09:22.146Z" }, @@ -47083,7 +47752,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.2, + "popularity": -1.367, "topicSearchString": "react-component react-native ios file upload" }, { @@ -47135,13 +47804,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-udp", "npm": { - "downloads": 158292, - "weekDownloads": 29617, + "downloads": 151058, + "weekDownloads": 31174, "size": 93456, "latestRelease": "4.1.7", "latestReleaseDate": "2023-01-26T08:05:00.363Z" @@ -47152,7 +47822,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.575, "topicSearchString": "react-native dgram udp sockets ios android nodejs networking" }, { @@ -47202,13 +47872,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-shadow-stack", "npm": { - "downloads": 25, - "weekDownloads": 13, + "downloads": 45, + "weekDownloads": 11, "size": 11707, "latestRelease": "0.0.5", "latestReleaseDate": "2020-04-21T05:02:58.857Z" @@ -47218,7 +47889,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.23, + "popularity": -1.53, "topicSearchString": "react native react-native number animated component" }, { @@ -47262,12 +47933,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-redash", "npm": { - "downloads": 601601, - "weekDownloads": 112186, + "downloads": 577137, + "weekDownloads": 110185, "size": 263051, "latestRelease": "18.1.4", "latestReleaseDate": "2025-09-21T16:47:21.107Z" @@ -47280,7 +47952,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.162, "topicSearchString": "" }, { @@ -47330,12 +48002,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-randombytes", "npm": { - "downloads": 425362, - "weekDownloads": 88843, + "downloads": 398670, + "weekDownloads": 88911, "size": 56011, "latestRelease": "3.6.2", "latestReleaseDate": "2025-06-23T11:20:48.363Z" @@ -47345,7 +48018,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.19, "topicSearchString": "react-component react-native randombytes rng ios android" }, { @@ -47395,12 +48068,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-radial-gradient", "npm": { - "downloads": 41834, - "weekDownloads": 6410, + "downloads": 41743, + "weekDownloads": 8662, "size": 37705, "latestRelease": "1.2.1", "latestReleaseDate": "2025-02-25T04:07:15.689Z" @@ -47411,7 +48085,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.13, + "popularity": 0.176, "topicSearchString": "react-native react native radial-gradient radial gradient" }, { @@ -47468,12 +48142,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-qrcode-scanner", "npm": { - "downloads": 73203, - "weekDownloads": 14786, + "downloads": 70665, + "weekDownloads": 12618, "size": 37094, "latestRelease": "1.5.5", "latestReleaseDate": "2022-02-11T23:21:24.154Z" @@ -47486,7 +48161,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.578, + "popularity": -0.598, "topicSearchString": "react-native react ios qrcode qr scanner barcode qrcode-scanner camera" }, { @@ -47536,13 +48211,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-os", "npm": { - "downloads": 246027, - "weekDownloads": 44189, + "downloads": 236296, + "weekDownloads": 55040, "size": 91581, "latestRelease": "1.2.6", "latestReleaseDate": "2019-11-29T21:14:35.511Z" @@ -47553,7 +48229,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.847, + "popularity": -0.802, "topicSearchString": "react-component reactnative react-native os ios android" }, { @@ -47602,13 +48278,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-level-fs", "npm": { - "downloads": 265476, - "weekDownloads": 48073, + "downloads": 252688, + "weekDownloads": 58696, "size": 1738, "latestRelease": "3.0.1", "latestReleaseDate": "2018-04-20T13:00:58.290Z" @@ -47619,7 +48296,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.553, "topicSearchString": "react-component react-native ios fs level filesystem" }, { @@ -47668,12 +48345,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-iphone-x-helper", "npm": { - "downloads": 2131032, - "weekDownloads": 405926, + "downloads": 2054738, + "weekDownloads": 398102, "size": 5649, "latestRelease": "1.3.1", "latestReleaseDate": "2020-11-08T09:08:22.914Z" @@ -47685,7 +48363,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.588, + "popularity": -0.585, "topicSearchString": "react-native ios iphone-x iphonex stylesheet" }, { @@ -47706,7 +48384,7 @@ "updatedAt": "2025-06-23T11:17:40Z", "createdAt": "2015-11-19T20:12:54Z", "pushedAt": "2025-06-23T11:17:40Z", - "forks": 64, + "forks": 63, "issues": 25, "subscribers": 10, "stars": 385, @@ -47731,23 +48409,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-crypto", "npm": { - "downloads": 428014, - "weekDownloads": 89515, + "downloads": 400667, + "weekDownloads": 88896, "size": 9017, "latestRelease": "2.2.1", "latestReleaseDate": "2025-06-23T11:18:01.588Z" }, - "score": 68, + "score": 51, "matchingScoreModifiers": [ - "Popular", "Known", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.189, "topicSearchString": "react-native react-component ios" }, { @@ -47795,13 +48473,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-marquee", "npm": { - "downloads": 6096, - "weekDownloads": 1175, + "downloads": 5928, + "weekDownloads": 1080, "size": 12587, "latestRelease": "0.5.0", "latestReleaseDate": "2023-03-06T12:59:10.300Z" @@ -47812,7 +48491,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.595, "topicSearchString": "react-native marquee ios android" }, { @@ -47835,7 +48514,7 @@ "updatedAt": "2020-05-19T21:17:13Z", "createdAt": "2016-09-13T13:43:25Z", "pushedAt": "2020-05-19T21:17:13Z", - "forks": 249, + "forks": 248, "issues": 50, "subscribers": 12, "stars": 640, @@ -47858,12 +48537,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 312133, - "weekDownloads": 59035, + "downloads": 300038, + "weekDownloads": 57521, "size": 111252, "latestRelease": "2.1.12", "latestReleaseDate": "2020-05-19T21:18:51.496Z" @@ -47875,7 +48555,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, + "popularity": -0.587, "topicSearchString": "image-zoom" }, { @@ -47923,13 +48603,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-skeleton-placeholder", "npm": { - "downloads": 444220, - "weekDownloads": 83330, + "downloads": 421094, + "weekDownloads": 92967, "size": 97041, "latestRelease": "5.2.4", "latestReleaseDate": "2022-11-15T18:05:28.354Z" @@ -47941,7 +48622,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.562, "topicSearchString": "skeleton shimmer loading placeholder" }, { @@ -47995,12 +48676,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-fetch-blob", "npm": { - "downloads": 335033, - "weekDownloads": 63819, + "downloads": 320959, + "weekDownloads": 62654, "size": 2979619, "latestRelease": "0.12.0", "latestReleaseDate": "2019-12-19T16:40:09.142Z" @@ -48014,7 +48696,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.588, + "popularity": -0.584, "topicSearchString": "react-native fetch blob fs upload file download filestream image-header" }, { @@ -48067,11 +48749,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 7, - "weekDownloads": 1, + "downloads": 86, + "weekDownloads": 0, "latestRelease": "1.0.18", "latestReleaseDate": "2017-06-07T16:59:57.321Z" }, @@ -48080,7 +48763,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -1, "topicSearchString": "react-component reactnative react-native realtimemessaging realtime ios push-notifications realtime-messaging" }, { @@ -48130,11 +48813,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-webintent", "npm": { - "downloads": 5, + "downloads": 4, "weekDownloads": 1, "latestRelease": "1.0.4", "latestReleaseDate": "2015-12-06T06:02:48.557Z" @@ -48144,7 +48828,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -1, "topicSearchString": "react react-native intent android browser react-component" }, { @@ -48180,7 +48864,7 @@ "forks": 48, "issues": 7, "subscribers": 11, - "stars": 1326, + "stars": 1329, "dependencies": 3 }, "name": "react-native-modalfy", @@ -48209,12 +48893,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-modalfy", "npm": { - "downloads": 18519, - "weekDownloads": 2543, + "downloads": 17684, + "weekDownloads": 2639, "size": 528958, "latestRelease": "3.7.0", "latestReleaseDate": "2025-06-30T09:48:36.849Z" @@ -48225,7 +48910,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.117, + "popularity": 0.127, "topicSearchString": "react react-native modal modals mobile ios android animations stack" }, { @@ -48287,13 +48972,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-navigation-collapsible", "npm": { - "downloads": 4556, - "weekDownloads": 703, + "downloads": 4640, + "weekDownloads": 928, "size": 30120, "latestRelease": "6.3.0", "latestReleaseDate": "2021-11-07T08:09:30.365Z" @@ -48305,7 +48991,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.619, + "popularity": -0.58, "topicSearchString": "react-native react-navigation navigation collapsible collapsible-header hide-header animate-header hide-navigation" }, { @@ -48362,13 +49048,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-barcode-mask", "npm": { - "downloads": 48750, - "weekDownloads": 8648, + "downloads": 47054, + "weekDownloads": 8148, "size": 16669, "latestRelease": "1.2.4", "latestReleaseDate": "2020-06-22T13:38:16.470Z" @@ -48379,7 +49066,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.603, "topicSearchString": "react-native barcode-mask barcode scanning style layout barcode-scanner border edges" }, { @@ -48401,10 +49088,10 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T10:14:39Z", + "updatedAt": "2025-10-17T07:15:48Z", "createdAt": "2016-06-14T23:10:12Z", - "pushedAt": "2025-10-16T10:14:39Z", - "forks": 219, + "pushedAt": "2025-10-17T07:15:48Z", + "forks": 220, "issues": 7, "subscribers": 24, "stars": 534, @@ -48432,12 +49119,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-auth0", "npm": { - "downloads": 305090, - "weekDownloads": 56546, + "downloads": 292397, + "weekDownloads": 55327, "size": 730844, "latestRelease": "5.0.1", "latestReleaseDate": "2025-10-03T10:57:09.735Z" @@ -48448,7 +49136,7 @@ "Known", "Recently updated" ], - "popularity": 0.158, + "popularity": 0.161, "topicSearchString": "react-native ios android dx-sdk" }, { @@ -48505,12 +49193,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-restart", "npm": { - "downloads": 737881, - "weekDownloads": 138972, + "downloads": 701340, + "weekDownloads": 140259, "size": 599401, "latestRelease": "0.0.27", "latestReleaseDate": "2023-01-31T19:14:49.360Z" @@ -48522,7 +49211,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.17, "topicSearchString": "react-native ios android restart reload bundle" }, { @@ -48567,11 +49256,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 371737, - "weekDownloads": 69145, + "downloads": 357998, + "weekDownloads": 69338, "size": 46999, "latestRelease": "100.1.0", "latestReleaseDate": "2025-02-21T17:39:27.389Z" @@ -48583,7 +49273,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.165, "topicSearchString": "" }, { @@ -48638,13 +49328,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-responsive-screen", "npm": { - "downloads": 137451, - "weekDownloads": 29124, + "downloads": 127922, + "weekDownloads": 25399, "size": 796149, "latestRelease": "1.4.2", "latestReleaseDate": "2020-12-23T20:44:13.323Z" @@ -48656,7 +49347,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.57, + "popularity": -0.581, "topicSearchString": "react-native responsive-ui responsive-view responsive-screen responsive android ios responsive-layout ui" }, { @@ -48720,12 +49411,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ratings", "npm": { - "downloads": 687860, - "weekDownloads": 133438, + "downloads": 663625, + "weekDownloads": 129842, "size": 103752, "latestRelease": "8.1.0", "latestReleaseDate": "2021-05-23T13:58:52.855Z" @@ -48737,7 +49429,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.166, "topicSearchString": "react-native reactjs reactnative gestures ios stars android ratings ui-components" }, { @@ -48794,13 +49486,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-smooth-pincode-input", "npm": { - "downloads": 21848, - "weekDownloads": 4287, + "downloads": 20675, + "weekDownloads": 3792, "size": 534133, "latestRelease": "1.0.9", "latestReleaseDate": "2019-11-12T02:38:04.751Z" @@ -48811,7 +49504,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.583, + "popularity": -0.594, "topicSearchString": "react-native pincode password textinput react javascript pin android ios" }, { @@ -48838,7 +49531,7 @@ "forks": 289, "issues": 115, "subscribers": 18, - "stars": 1650, + "stars": 1651, "dependencies": 0 }, "name": "react-native-geolocation-service", @@ -48866,13 +49559,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-geolocation-service", "npm": { - "downloads": 413762, - "weekDownloads": 78759, + "downloads": 396375, + "weekDownloads": 79676, "size": 90943, "latestRelease": "5.3.1", "latestReleaseDate": "2022-09-23T05:57:55.248Z" @@ -48885,7 +49579,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.588, + "popularity": -0.579, "topicSearchString": "react-native react native fused location geolocation android ios fusedlocationproviderclient" }, { @@ -48914,7 +49608,7 @@ "forks": 217, "issues": 32, "subscribers": 15, - "stars": 931, + "stars": 932, "dependencies": 1 }, "name": "react-native-sensors", @@ -48940,13 +49634,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sensors", "npm": { - "downloads": 271629, - "weekDownloads": 48662, + "downloads": 262632, + "weekDownloads": 60004, "size": 90891, "latestRelease": "7.3.6", "latestReleaseDate": "2022-11-21T15:13:24.446Z" @@ -48958,7 +49653,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, + "popularity": -0.556, "topicSearchString": "react-native sensor gyroscope acceleration rxjs magnetometer barometer" }, { @@ -48984,10 +49679,10 @@ "updatedAt": "2025-05-06T05:05:27Z", "createdAt": "2018-06-23T22:07:51Z", "pushedAt": "2025-05-06T05:05:27Z", - "forks": 413, + "forks": 414, "issues": 201, "subscribers": 10, - "stars": 2122, + "stars": 2121, "dependencies": 1 }, "name": "react-native-draggable-flatlist", @@ -49014,12 +49709,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-draggable-flatlist", "npm": { - "downloads": 611024, - "weekDownloads": 115800, + "downloads": 584644, + "weekDownloads": 113410, "size": 523106, "latestRelease": "4.0.3", "latestReleaseDate": "2025-05-06T05:05:46.134Z" @@ -49031,7 +49727,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.165, "topicSearchString": "react-native sortable draggable flatlist drag drop sort list" }, { @@ -49101,12 +49797,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fingerprint-scanner", "npm": { - "downloads": 20213, - "weekDownloads": 3544, + "downloads": 20120, + "weekDownloads": 3907, "size": 66869, "latestRelease": "6.0.0", "latestReleaseDate": "2020-06-20T13:54:04.348Z" @@ -49118,7 +49815,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, + "popularity": -0.585, "topicSearchString": "react-native component react-component react native touch touchid touch-id fingerprint fingerprint-scanner authentication authenticate auth face-id faceid biometrics" }, { @@ -49146,7 +49843,7 @@ "forks": 232, "issues": 58, "subscribers": 18, - "stars": 689, + "stars": 690, "dependencies": 0 }, "name": "react-native-google-cast", @@ -49174,12 +49871,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-google-cast", "npm": { - "downloads": 91210, - "weekDownloads": 14730, + "downloads": 86397, + "weekDownloads": 21542, "size": 976622, "latestRelease": "4.9.1", "latestReleaseDate": "2025-07-26T10:41:27.347Z" @@ -49190,7 +49888,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.137, + "popularity": 0.212, "topicSearchString": "react-native ios android chromecast google cast google-cast sdk cast-library" }, { @@ -49245,12 +49943,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-table-component", "npm": { - "downloads": 121259, - "weekDownloads": 20344, + "downloads": 119124, + "weekDownloads": 22310, "size": 34602, "latestRelease": "1.2.2", "latestReleaseDate": "2022-02-10T13:14:04.759Z" @@ -49262,7 +49961,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, + "popularity": -0.591, "topicSearchString": "react-native table cell table-component" }, { @@ -49313,12 +50012,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 5545, - "weekDownloads": 1049, + "downloads": 5426, + "weekDownloads": 946, "size": 31171, "latestRelease": "1.0.0", "latestReleaseDate": "2020-08-07T10:53:39.424Z" @@ -49329,7 +50029,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, + "popularity": -0.602, "topicSearchString": "" }, { @@ -49389,13 +50089,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-sliding-up-panel", "npm": { - "downloads": 13396, - "weekDownloads": 3358, + "downloads": 12652, + "weekDownloads": 2471, "size": 43672, "latestRelease": "2.4.6", "latestReleaseDate": "2022-08-14T05:57:04.170Z" @@ -49407,7 +50108,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.537, + "popularity": -0.584, "topicSearchString": "react react-native react-component ios android sliding panel sliding-up-panel" }, { @@ -49430,13 +50131,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-05-27T21:21:22Z", + "updatedAt": "2025-10-17T18:34:27Z", "createdAt": "2017-11-13T17:59:31Z", - "pushedAt": "2025-05-27T21:21:22Z", - "forks": 425, - "issues": 130, + "pushedAt": "2025-10-17T18:34:27Z", + "forks": 424, + "issues": 131, "subscribers": 58, - "stars": 2197, + "stars": 2198, "dependencies": 2 }, "name": "react-native-app-auth", @@ -49462,24 +50163,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-app-auth", "npm": { - "downloads": 531111, - "weekDownloads": 97259, - "size": 144688, - "latestRelease": "8.0.3", - "latestReleaseDate": "2025-05-23T21:16:44.519Z" + "downloads": 509869, + "weekDownloads": 101343, + "size": 176559, + "latestRelease": "8.1.0", + "latestReleaseDate": "2025-10-17T18:36:04.768Z" }, - "score": 57, + "score": 62, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.169, "topicSearchString": "react react-native auth authentication oauth oauth2 appauth" }, { @@ -49525,13 +50229,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-navigation-heavy-screen", "npm": { - "downloads": 1635, - "weekDownloads": 293, + "downloads": 1662, + "weekDownloads": 441, "size": 38385, "latestRelease": "1.2.1", "latestReleaseDate": "2021-05-08T21:36:26.089Z" @@ -49542,7 +50247,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.524, "topicSearchString": "react-native ios android" }, { @@ -49592,12 +50297,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "tailwind-rn", "npm": { - "downloads": 22112, - "weekDownloads": 3487, + "downloads": 22105, + "weekDownloads": 3951, "size": 36184, "latestRelease": "4.2.0", "latestReleaseDate": "2022-02-07T14:49:40.222Z" @@ -49609,7 +50315,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.134, + "popularity": 0.152, "topicSearchString": "tailwind tailwindcss react-native" }, { @@ -49660,12 +50366,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-url-polyfill", "npm": { - "downloads": 4770957, - "weekDownloads": 897150, + "downloads": 4598652, + "weekDownloads": 891752, "size": 28670, "latestRelease": "3.0.0", "latestReleaseDate": "2025-09-24T15:49:33.442Z" @@ -49678,7 +50385,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.165, "topicSearchString": "url urlsearchparams polyfill react-native whatwg-url javascript" }, { @@ -49705,7 +50412,7 @@ "updatedAt": "2025-07-14T08:38:14Z", "createdAt": "2017-01-20T00:30:11Z", "pushedAt": "2025-07-14T08:38:14Z", - "forks": 418, + "forks": 417, "issues": 18, "subscribers": 83, "stars": 13963, @@ -49738,12 +50445,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-content-loader", "npm": { - "downloads": 2583525, - "weekDownloads": 479514, + "downloads": 2457972, + "weekDownloads": 458988, "size": 164170, "latestRelease": "7.1.1", "latestReleaseDate": "2025-07-14T08:39:30.452Z" @@ -49755,7 +50463,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.159, "topicSearchString": "react react-native skeleton placeholder loader loading content svg facebook-cards-loaders skeleton-screen components" }, { @@ -49810,13 +50518,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-ripple", "npm": { - "downloads": 76830, - "weekDownloads": 14465, + "downloads": 73262, + "weekDownloads": 14819, "size": 12244, "latestRelease": "0.9.1", "latestReleaseDate": "2019-09-26T10:18:45.375Z" @@ -49827,7 +50536,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.578, "topicSearchString": "react react-component react-native ios android ripple material material-design" }, { @@ -49856,7 +50565,7 @@ "updatedAt": "2025-10-12T20:17:25Z", "createdAt": "2018-10-01T14:32:13Z", "pushedAt": "2025-10-12T20:17:25Z", - "forks": 277, + "forks": 276, "issues": 6, "subscribers": 27, "stars": 3280, @@ -49886,11 +50595,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4642276, - "weekDownloads": 881053, + "downloads": 4472017, + "weekDownloads": 866183, "size": 705256, "latestRelease": "13.3.3", "latestReleaseDate": "2025-08-26T11:55:10.022Z" @@ -49903,7 +50613,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.165, "topicSearchString": "react-native react test integration testing jest hacktoberfest" }, { @@ -49939,7 +50649,7 @@ "forks": 131, "issues": 1, "subscribers": 3, - "stars": 1172, + "stars": 1174, "dependencies": 0 }, "name": "react-native-confirmation-code-field", @@ -49974,12 +50684,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-confirmation-code-field", "npm": { - "downloads": 727743, - "weekDownloads": 133298, + "downloads": 695322, + "weekDownloads": 147114, "size": 24213, "latestRelease": "8.0.1", "latestReleaseDate": "2025-06-10T20:53:19.767Z" @@ -49990,7 +50701,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.18, "topicSearchString": "react react-component react-native component android ios code-input confirmation-code pin-code confirmation-code-input pin-code-input library code-verification web otp-inputs one-time-password" }, { @@ -50039,13 +50750,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-rate", "npm": { - "downloads": 156893, - "weekDownloads": 31589, + "downloads": 147206, + "weekDownloads": 31796, "size": 39033, "latestRelease": "1.2.12", "latestReleaseDate": "2023-01-23T06:43:23.205Z" @@ -50057,7 +50769,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.566, "topicSearchString": "react-native react rate review rating rate-me" }, { @@ -50109,13 +50821,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-securerandom", "npm": { - "downloads": 524842, - "weekDownloads": 98207, + "downloads": 509384, + "weekDownloads": 94188, "size": 51400, "latestRelease": "1.0.1", "latestReleaseDate": "2022-09-22T12:11:53.796Z" @@ -50126,7 +50839,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.593, "topicSearchString": "react-native secrandomcopybytes prng csprng securerandom crypto randomnumbergenerator cryptography" }, { @@ -50191,13 +50904,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-cardview", "npm": { - "downloads": 7437, - "weekDownloads": 1086, + "downloads": 7638, + "weekDownloads": 933, "size": 1581220, "latestRelease": "2.0.5", "latestReleaseDate": "2019-10-21T05:43:37.376Z" @@ -50208,7 +50922,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.626, + "popularity": -0.646, "topicSearchString": "react react-native react-component card cardview card-view shadow shadow-view shadowview appcompat support android ios component elevation" }, { @@ -50259,13 +50973,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-barcode-builder", "npm": { - "downloads": 25532, - "weekDownloads": 6522, + "downloads": 24137, + "weekDownloads": 5590, "size": 242759539, "latestRelease": "2.0.0", "latestReleaseDate": "2020-03-29T09:13:35.558Z" @@ -50277,7 +50992,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.533, + "popularity": -0.553, "topicSearchString": "react-native barcode" }, { @@ -50337,13 +51052,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-app-intro-slider", "npm": { - "downloads": 76915, - "weekDownloads": 14754, + "downloads": 72487, + "weekDownloads": 14222, "size": 28526, "latestRelease": "4.0.4", "latestReleaseDate": "2020-05-26T13:35:26.877Z" @@ -50355,7 +51071,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.583, "topicSearchString": "swiper app intro ios android react-component react-native slider" }, { @@ -50410,13 +51126,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-secure-key-store", "npm": { - "downloads": 40734, - "weekDownloads": 7370, + "downloads": 41194, + "weekDownloads": 6633, "size": 523934, "latestRelease": "2.0.10", "latestReleaseDate": "2022-08-18T03:01:30.247Z" @@ -50427,7 +51144,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.613, "topicSearchString": "react-native ios android keychain-service keystore-service device-security keychain-services keystore-services" }, { @@ -50456,13 +51173,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T14:42:08Z", + "updatedAt": "2025-10-18T15:43:24Z", "createdAt": "2019-04-07T21:53:54Z", - "pushedAt": "2025-10-16T14:42:08Z", + "pushedAt": "2025-10-18T15:43:24Z", "forks": 893, - "issues": 108, + "issues": 81, "subscribers": 34, - "stars": 2638, + "stars": 2642, "dependencies": 7 }, "name": "@rnmapbox/maps", @@ -50492,14 +51209,15 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 317521, - "weekDownloads": 58759, - "size": 3134814, - "latestRelease": "10.2.4", - "latestReleaseDate": "2025-10-16T14:44:00.317Z" + "downloads": 314775, + "weekDownloads": 57702, + "size": 3135088, + "latestRelease": "10.2.6", + "latestReleaseDate": "2025-10-18T15:45:34.909Z" }, "score": 86, "matchingScoreModifiers": [ @@ -50510,7 +51228,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.156, "topicSearchString": "ios android mapbox react-native maps mapbox-gl-native map expo maplibre" }, { @@ -50536,7 +51254,7 @@ "createdAt": "2017-09-01T15:25:34Z", "pushedAt": "2025-07-23T18:05:40Z", "forks": 220, - "issues": 75, + "issues": 76, "subscribers": 8, "stars": 737, "dependencies": 2 @@ -50567,12 +51285,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-map-clustering", "npm": { - "downloads": 98494, - "weekDownloads": 19100, + "downloads": 94174, + "weekDownloads": 18666, "size": 37695, "latestRelease": "4.0.0", "latestReleaseDate": "2025-07-23T18:05:32.983Z" @@ -50584,7 +51303,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.168, "topicSearchString": "react-native react cluster android ios map clustering mapview markers maps" }, { @@ -50611,7 +51330,7 @@ "forks": 331, "issues": 6, "subscribers": 31, - "stars": 1551, + "stars": 1552, "dependencies": 0 }, "name": "react-native-nfc-manager", @@ -50634,12 +51353,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-nfc-manager", "npm": { - "downloads": 185270, - "weekDownloads": 35359, + "downloads": 173685, + "weekDownloads": 36333, "size": 227298, "latestRelease": "3.17.1", "latestReleaseDate": "2025-09-27T00:37:42.685Z" @@ -50651,7 +51371,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.178, "topicSearchString": "react-native android ios nfc" }, { @@ -50702,12 +51422,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-watch-connectivity", "npm": { - "downloads": 52576, - "weekDownloads": 9207, + "downloads": 50972, + "weekDownloads": 9130, "size": 118589, "latestRelease": "1.1.0", "latestReleaseDate": "2022-09-29T06:08:45.964Z" @@ -50719,7 +51440,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.152, "topicSearchString": "react-native ios watch apple-watch iwatch react" }, { @@ -50767,12 +51488,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-background-downloader", "npm": { - "downloads": 1021, - "weekDownloads": 166, + "downloads": 1038, + "weekDownloads": 180, "size": 89133, "latestRelease": "2.3.4", "latestReleaseDate": "2019-12-10T14:13:55.311Z" @@ -50783,7 +51505,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, + "popularity": -0.602, "topicSearchString": "react-native background download large-files" }, { @@ -50850,13 +51572,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-google-nearby-messages", "npm": { - "downloads": 33, - "weekDownloads": 7, + "downloads": 102, + "weekDownloads": 6, "size": 207047, "latestRelease": "1.0.22", "latestReleaseDate": "2021-10-05T12:29:39.538Z" @@ -50867,7 +51590,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -1.45, "topicSearchString": "react-native google nearby messages android ios native-module nearby-messages google-nearby swift java kotlin bluetooth ble wifi broadcast audio microphone api library typescript" }, { @@ -50892,7 +51615,7 @@ "forks": 185, "issues": 17, "subscribers": 63, - "stars": 3050, + "stars": 3052, "dependencies": 1 }, "name": "react-native-game-engine", @@ -50919,12 +51642,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-game-engine", "npm": { - "downloads": 8729, - "weekDownloads": 1473, + "downloads": 8823, + "weekDownloads": 1678, "size": 54003, "latestRelease": "1.2.0", "latestReleaseDate": "2020-06-09T06:13:40.275Z" @@ -50936,7 +51660,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.162, "topicSearchString": "react react-native game gaming game-dev game-development game-engine game-2d" }, { @@ -50992,13 +51716,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-font-faces", "npm": { - "downloads": 540, - "weekDownloads": 143, + "downloads": 500, + "weekDownloads": 92, "size": 260519, "latestRelease": "4.1.4", "latestReleaseDate": "2023-04-17T12:32:48.084Z" @@ -51008,7 +51733,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.525, + "popularity": -1.593, "topicSearchString": "react-native fonts font-weight font-face font-style custom-fonts expo web" }, { @@ -51040,7 +51765,7 @@ "forks": 145, "issues": 103, "subscribers": 14, - "stars": 1877, + "stars": 1880, "dependencies": 0 }, "name": "react-native-actions-sheet", @@ -51079,12 +51804,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-actions-sheet", "npm": { - "downloads": 217605, - "weekDownloads": 42412, + "downloads": 207869, + "weekDownloads": 39561, "size": 153489, "latestRelease": "0.9.8", "latestReleaseDate": "2025-10-16T03:57:29.699Z" @@ -51097,7 +51823,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.162, "topicSearchString": "bottom-animated react-native javascript actionsheet android ios action-sheet bottom-sheet bottom-drawer dialog picker modal drawer raw-bottom-sheet bottom-app-bar react native action sheet bottom" }, { @@ -51149,13 +51875,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-photo-editor", "npm": { - "downloads": 3100, - "weekDownloads": 549, + "downloads": 3549, + "weekDownloads": 542, "size": 19488820, "latestRelease": "1.0.13", "latestReleaseDate": "2022-02-08T11:18:05.990Z" @@ -51168,7 +51895,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.62, "topicSearchString": "react-native android ios" }, { @@ -51237,12 +51964,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-blurhash", "npm": { - "downloads": 64036, - "weekDownloads": 13126, + "downloads": 59439, + "weekDownloads": 11399, "size": 108855, "latestRelease": "2.1.2", "latestReleaseDate": "2025-08-08T14:06:57.598Z" @@ -51253,7 +51981,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.163, "topicSearchString": "react-native blurhash image ui ux component loading placeholder swift kotlin native-module typescript node javascript library" }, { @@ -51281,7 +52009,7 @@ "forks": 164, "issues": 60, "subscribers": 8, - "stars": 670, + "stars": 671, "dependencies": 1 }, "name": "react-native-youtube-iframe", @@ -51315,12 +52043,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-youtube-iframe", "npm": { - "downloads": 409133, - "weekDownloads": 77518, + "downloads": 395176, + "weekDownloads": 76658, "size": 74746, "latestRelease": "2.4.1", "latestReleaseDate": "2025-07-01T04:27:12.457Z" @@ -51331,7 +52060,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.165, "topicSearchString": "react-native react-component component react mobile ios android ui youtube youtube-iframe iframe youtube-api youtube-player youtube-video expo" }, { @@ -51385,13 +52114,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-notification-badge", "npm": { - "downloads": 2995, - "weekDownloads": 490, + "downloads": 3013, + "weekDownloads": 464, "size": 32594, "latestRelease": "1.0.5", "latestReleaseDate": "2020-07-29T13:22:37.555Z" @@ -51401,7 +52131,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.611, + "popularity": -0.619, "topicSearchString": "react-native notification badge count native-module notifications manager library react" }, { @@ -51461,12 +52191,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-rooster", "npm": { - "downloads": 86, - "weekDownloads": 6, + "downloads": 113, + "weekDownloads": 4, "size": 719280, "latestRelease": "2.0.1", "latestReleaseDate": "2025-05-13T18:22:15.902Z" @@ -51475,7 +52206,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.69, + "popularity": -0.719, "topicSearchString": "react-native rooster ios android toast typescript macos windows" }, { @@ -51549,12 +52280,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "use-count-up", "npm": { - "downloads": 150347, - "weekDownloads": 27151, + "downloads": 144955, + "weekDownloads": 26600, "size": 27496, "latestRelease": "3.0.1", "latestReleaseDate": "2021-09-05T13:22:52.417Z" @@ -51565,7 +52297,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.156, "topicSearchString": "react reactjs react-native animate-numerical-value animations count-up countup react-count-up react-countup countdown count-down counting hooks ios android use use-count-up use-countup typescript animate-counting" }, { @@ -51599,7 +52331,7 @@ "forks": 88, "issues": 2, "subscribers": 7, - "stars": 712, + "stars": 713, "dependencies": 0 }, "name": "react-native-countdown-circle-timer", @@ -51624,11 +52356,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 57742, - "weekDownloads": 11132, + "downloads": 58490, + "weekDownloads": 11024, "size": 22520, "latestRelease": "3.2.1", "latestReleaseDate": "2023-03-15T07:26:20.362Z" @@ -51640,7 +52373,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.16, "topicSearchString": "react-native countdown timer circle clock svg" }, { @@ -51691,13 +52424,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-event-source", "npm": { - "downloads": 18897, - "weekDownloads": 6525, + "downloads": 15442, + "weekDownloads": 4612, "size": 16849, "latestRelease": "1.1.0", "latestReleaseDate": "2019-05-27T20:31:38.679Z" @@ -51708,7 +52442,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.206, + "popularity": -0.246, "topicSearchString": "react-native react-component event-source sse" }, { @@ -51770,13 +52504,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-zoom-bridge", "npm": { - "downloads": 51, - "weekDownloads": 11, + "downloads": 143, + "weekDownloads": 8, "size": 103880, "latestRelease": "1.0.18", "latestReleaseDate": "2020-07-14T14:11:07.347Z" @@ -51786,7 +52521,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.567, + "popularity": -1.702, "topicSearchString": "react-native zoom-sdk mobilertc zoom.us video-calls conference-calls chat-online zoom-us sdk bridge ios android confrence calls meetings" }, { @@ -51853,12 +52588,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-jw-media-player", "npm": { - "downloads": 1127, - "weekDownloads": 228, + "downloads": 1286, + "weekDownloads": 181, "size": 1232934, "latestRelease": "0.2.46", "latestReleaseDate": "2024-04-18T16:21:07.942Z" @@ -51870,7 +52606,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.578, + "popularity": -0.63, "topicSearchString": "react react-native jwplayer media player mediaplayer media-player jw android ios audio video sdk" }, { @@ -51919,13 +52655,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ios-kit", "npm": { - "downloads": 2424, - "weekDownloads": 370, + "downloads": 2338, + "weekDownloads": 373, "size": 289678, "latestRelease": "0.0.22", "latestReleaseDate": "2020-05-13T10:44:26.857Z" @@ -51936,7 +52673,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.62, + "popularity": -0.614, "topicSearchString": "react-native ios-ui ui-kit" }, { @@ -51960,7 +52697,7 @@ "updatedAt": "2025-01-02T21:01:14Z", "createdAt": "2017-12-25T01:44:50Z", "pushedAt": "2025-01-02T21:01:14Z", - "forks": 101, + "forks": 102, "issues": 21, "subscribers": 7, "stars": 312, @@ -51986,12 +52723,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-emoji-selector", "npm": { - "downloads": 16403, - "weekDownloads": 3057, + "downloads": 15587, + "weekDownloads": 3259, "size": 15476, "latestRelease": "0.2.0", "latestReleaseDate": "2020-12-04T19:35:57.846Z" @@ -52002,7 +52740,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.178, "topicSearchString": "emoji react react-native emoji-keyboard" }, { @@ -52059,13 +52797,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-scroll-bottom-sheet", "npm": { - "downloads": 2338, - "weekDownloads": 250, + "downloads": 2482, + "weekDownloads": 323, "size": 204895, "latestRelease": "0.7.0", "latestReleaseDate": "2020-08-24T22:22:17.293Z" @@ -52077,7 +52816,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.659, + "popularity": -0.639, "topicSearchString": "react-native react ios android bottom-sheet bottomsheet cross-platform 60fps reanimated gesture-handler" }, { @@ -52136,12 +52875,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 8134, - "weekDownloads": 2072, + "downloads": 6828, + "weekDownloads": 1603, "size": 4170390, "latestRelease": "1.2.2", "latestReleaseDate": "2020-10-27T01:20:57.332Z" @@ -52152,7 +52892,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.533, + "popularity": -0.55, "topicSearchString": "react-native react-component component react mobile ios android ui popup popup-ui popup-ui-design" }, { @@ -52224,12 +52964,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 184, - "weekDownloads": 8, + "downloads": 187, + "weekDownloads": 46, "size": 31102, "latestRelease": "1.2.0", "latestReleaseDate": "2021-09-20T16:39:32.999Z" @@ -52240,7 +52981,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.463, + "popularity": -1.291, "topicSearchString": "elegant elegant-header gorgeous gorgeous-header apple apple-header header classic modern modern-header classic-header react-native icons javascript ui-lib rn header-view view react reactjs ios mobile mobile-app-development android" }, { @@ -52298,13 +53039,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-phone-input", "npm": { - "downloads": 55290, - "weekDownloads": 11086, + "downloads": 52442, + "weekDownloads": 10797, "size": 2011977, "latestRelease": "1.3.7", "latestReleaseDate": "2023-07-28T15:10:30.658Z" @@ -52316,7 +53058,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.575, "topicSearchString": "react-native phone telephone phone-input input tel input-text international component ios android country-picker" }, { @@ -52371,12 +53113,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-siri-shortcut", "npm": { - "downloads": 16326, - "weekDownloads": 3151, + "downloads": 16068, + "weekDownloads": 3000, "size": 67729, "latestRelease": "3.2.4", "latestReleaseDate": "2023-12-13T17:29:12.036Z" @@ -52387,7 +53130,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.159, "topicSearchString": "react-native siri ios siri-shortcuts shortcuts automation swift react-component native react" }, { @@ -52442,12 +53185,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-image-keyboard", "npm": { - "downloads": 1032, - "weekDownloads": 209, + "downloads": 1050, + "weekDownloads": 167, "size": 35437, "latestRelease": "2.2.1", "latestReleaseDate": "2023-11-13T11:57:33.635Z" @@ -52457,7 +53201,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.135, "topicSearchString": "react-native text-input gif png clipboard ime gboard stickers media" }, { @@ -52520,11 +53264,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 209, - "weekDownloads": 31, + "downloads": 320, + "weekDownloads": 19, "size": 1496141, "latestRelease": "4.0.11", "latestReleaseDate": "2024-02-05T16:36:31.211Z" @@ -52534,7 +53279,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.623, + "popularity": -0.699, "topicSearchString": "qrcode easyqrcode qrcodejs react-native reactnative rn-qrcode reactnative-qrcode qrcode-react-native javascript-qrcode qrcode-logo qrcode-generator easyqrcodejs javascript javascript-qrcode-generator qrcode-javascript" }, { @@ -52590,12 +53335,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-app-review", "npm": { - "downloads": 3, + "downloads": 11, "weekDownloads": 0, "size": 59108, "latestRelease": "1.1.0", @@ -52664,13 +53410,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-responsive-linechart", "npm": { - "downloads": 7810, - "weekDownloads": 1511, + "downloads": 7916, + "weekDownloads": 1522, "size": 72429, "latestRelease": "5.7.1", "latestReleaseDate": "2021-03-30T12:01:26.776Z" @@ -52681,7 +53428,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, + "popularity": -0.587, "topicSearchString": "react-native chart flex responsive linechart svg area-chart" }, { @@ -52731,12 +53478,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-clean-project", "npm": { - "downloads": 268752, - "weekDownloads": 47901, + "downloads": 264914, + "weekDownloads": 48199, "size": 33122, "latestRelease": "4.0.3", "latestReleaseDate": "2023-12-05T19:19:52.543Z" @@ -52748,7 +53496,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.155, "topicSearchString": "react native clean react-native reactnative" }, { @@ -52797,12 +53545,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sass-transformer", "npm": { - "downloads": 42440, - "weekDownloads": 6148, + "downloads": 44869, + "weekDownloads": 6503, "size": 16584, "latestRelease": "3.0.0", "latestReleaseDate": "2024-05-15T13:00:22.063Z" @@ -52864,13 +53613,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bigimageviewer", "npm": { - "downloads": 6, - "weekDownloads": 2, + "downloads": 9, + "weekDownloads": 1, "size": 1185687, "latestRelease": "0.1.0", "latestReleaseDate": "2020-08-19T10:44:20.606Z" @@ -52880,7 +53630,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, + "popularity": -1.65, "topicSearchString": "react-native ios android image bigimageviewer imageview" }, { @@ -52930,13 +53680,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-tooltip", "npm": { - "downloads": 79360, - "weekDownloads": 13584, + "downloads": 79426, + "weekDownloads": 13579, "size": 21185, "latestRelease": "3.0.3", "latestReleaseDate": "2022-09-05T12:06:44.532Z" @@ -52947,7 +53698,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, + "popularity": -0.605, "topicSearchString": "" }, { @@ -53008,12 +53759,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-qr-code", "npm": { - "downloads": 3880943, - "weekDownloads": 721889, + "downloads": 3734580, + "weekDownloads": 711153, "size": 13763, "latestRelease": "2.0.18", "latestReleaseDate": "2025-07-06T20:47:33.365Z" @@ -53024,7 +53776,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.162, "topicSearchString": "code generator qr react react-native qr-code component" }, { @@ -53080,12 +53832,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 245, - "weekDownloads": 16, + "downloads": 308, + "weekDownloads": 23, "size": 113071, "latestRelease": "0.8.0", "latestReleaseDate": "2022-09-08T13:14:14.303Z" @@ -53095,7 +53848,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.444, + "popularity": -1.436, "topicSearchString": "react-native ios android react mercadopago sdk library mercadopago-api bridge" }, { @@ -53149,13 +53902,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-tabs", "npm": { - "downloads": 5680, - "weekDownloads": 218, + "downloads": 5824, + "weekDownloads": 214, "size": 51971, "latestRelease": "4.2.0", "latestReleaseDate": "2021-03-29T06:11:20.573Z" @@ -53166,7 +53920,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.717, + "popularity": -0.719, "topicSearchString": "react react-native material-design tabs material component typescript" }, { @@ -53197,7 +53951,7 @@ "forks": 173, "issues": 31, "subscribers": 23, - "stars": 1219, + "stars": 1222, "dependencies": 13 }, "name": "@storybook/react-native", @@ -53219,11 +53973,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1367304, - "weekDownloads": 261248, + "downloads": 1303271, + "weekDownloads": 259746, "size": 142539, "latestRelease": "9.1.4", "latestReleaseDate": "2025-09-29T14:41:31.331Z" @@ -53235,7 +53990,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.169, "topicSearchString": "react react-native storybook" }, { @@ -53296,12 +54051,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-apple-card-views", "npm": { - "downloads": 200, - "weekDownloads": 27, + "downloads": 279, + "weekDownloads": 22, "size": 994737, "latestRelease": "3.0.0", "latestReleaseDate": "2023-02-04T10:55:33.103Z" @@ -53311,7 +54067,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.635, + "popularity": -0.682, "topicSearchString": "bounceable bouncy apple apple-card card view card-view apple-card-view react-native icons javascript ui-lib rn" }, { @@ -53373,11 +54129,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 501810, - "weekDownloads": 96343, + "downloads": 477401, + "weekDownloads": 95437, "size": 125320, "latestRelease": "2.4.1", "latestReleaseDate": "2025-04-03T17:31:38.981Z" @@ -53389,7 +54146,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.17, "topicSearchString": "react react-native apple ios button firebase aws authentication apple-auth apple-authentication" }, { @@ -53453,13 +54210,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "tape-cli", "npm": { - "downloads": 20, - "weekDownloads": 4, + "downloads": 229, + "weekDownloads": 3, "size": 106713, "latestRelease": "0.14.0", "latestReleaseDate": "2020-12-18T16:22:31.941Z" @@ -53469,7 +54227,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -1.489, "topicSearchString": "oclif simulator ios android screen-record record share-screen gif screenshot emulator recording recorder screen-capture screenrecord screen-recorder" }, { @@ -53525,13 +54283,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-simple-logger", "npm": { - "downloads": 53, - "weekDownloads": 20, + "downloads": 84, + "weekDownloads": 14, "size": 13676, "latestRelease": "0.1.1", "latestReleaseDate": "2020-07-13T17:39:56.101Z" @@ -53541,7 +54300,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.417, + "popularity": -1.603, "topicSearchString": "simple-logger react-native logger simple" }, { @@ -53595,13 +54354,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-easy-calendar", "npm": { - "downloads": 625, - "weekDownloads": 92, + "downloads": 630, + "weekDownloads": 85, "size": 732039, "latestRelease": "0.3.0", "latestReleaseDate": "2021-02-26T14:20:47.500Z" @@ -53611,7 +54371,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.375, + "popularity": -1.385, "topicSearchString": "react-native ios android calendar" }, { @@ -53672,12 +54432,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 53, - "weekDownloads": 2, + "downloads": 97, + "weekDownloads": 1, "size": 19015, "latestRelease": "0.2.2", "latestReleaseDate": "2021-07-12T21:09:31.907Z" @@ -53687,7 +54448,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.717, + "popularity": -1.741, "topicSearchString": "react-native react native nestedlist nestedview nested android ios simple" }, { @@ -53741,13 +54502,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-paypal", "npm": { - "downloads": 1202, - "weekDownloads": 214, + "downloads": 1450, + "weekDownloads": 229, "size": 231473012, "latestRelease": "4.1.0", "latestReleaseDate": "2021-02-14T23:30:22.494Z" @@ -53758,7 +54520,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, + "popularity": -0.616, "topicSearchString": "react-native paypal checkout paypal-checkout braintree android ios payment" }, { @@ -53816,12 +54578,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 351, - "weekDownloads": 80, + "downloads": 335, + "weekDownloads": 76, "size": 56016, "latestRelease": "1.0.0-alpha.6", "latestReleaseDate": "2021-09-20T14:29:51.799Z" @@ -53897,12 +54660,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-qr-generator", "npm": { - "downloads": 81998, - "weekDownloads": 16295, + "downloads": 77976, + "weekDownloads": 14508, "size": 121016, "latestRelease": "1.4.5", "latestReleaseDate": "2025-10-13T19:54:14.444Z" @@ -53913,7 +54677,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.158, "topicSearchString": "react-native qr qr-code decode-qr generate-qr qrcode data-matrix datamatrix qr-generator qrcode-image qr-decode detect-qr-code scan-qr-code qrcode-generator detect-qr-code-from-image qrcode-detector totp decoder" }, { @@ -53935,13 +54699,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-05-23T15:52:22Z", + "updatedAt": "2025-10-17T22:22:03Z", "createdAt": "2020-09-17T22:44:48Z", - "pushedAt": "2025-05-23T15:52:22Z", + "pushedAt": "2025-10-17T22:22:03Z", "forks": 12, "issues": 4, "subscribers": 1, - "stars": 87, + "stars": 88, "dependencies": 0 }, "name": "react-native-pdf-light", @@ -53966,20 +54730,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 5449, - "weekDownloads": 1151, + "downloads": 5278, + "weekDownloads": 1246, "size": 250346, "latestRelease": "2.4.2", "latestReleaseDate": "2025-05-23T15:52:03.009Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.201, "topicSearchString": "react-native pdf ios android pdf-viewer" }, { @@ -54038,12 +54804,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-week-view", "npm": { - "downloads": 3342, - "weekDownloads": 618, + "downloads": 4057, + "weekDownloads": 317, "size": 136059, "latestRelease": "0.30.0", "latestReleaseDate": "2023-08-27T09:13:18.186Z" @@ -54054,7 +54821,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.066, "topicSearchString": "android ios react-native react react-component weekview calendar component calendar-view" }, { @@ -54078,7 +54845,7 @@ "forks": 113, "issues": 38, "subscribers": 14, - "stars": 1737, + "stars": 1738, "dependencies": 0 }, "name": "react-native-mmkv-storage", @@ -54120,12 +54887,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-mmkv-storage", "npm": { - "downloads": 76032, - "weekDownloads": 15335, + "downloads": 72597, + "weekDownloads": 14948, "size": 971324, "latestRelease": "12.0.0", "latestReleaseDate": "2025-08-25T19:31:15.761Z" @@ -54137,7 +54905,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.175, "topicSearchString": "react-native fast-storage react native asyncstorage async-storage mmkv-database mmkv-storage encrypted-storage encryption mmkv android ios key-value-storage database fast storage persist-storage secure-storage redux-persist-storage java objective-c" }, { @@ -54205,12 +54973,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-bouncy-checkbox", "npm": { - "downloads": 106430, - "weekDownloads": 20968, + "downloads": 102595, + "weekDownloads": 20967, "size": 318386, "latestRelease": "4.1.2", "latestReleaseDate": "2024-08-21T07:40:46.689Z" @@ -54221,7 +54990,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.174, "topicSearchString": "toggle switch bouncy checkbox animated check customizable rn-checkbox freakycoder kuray react react-native javascript ui-lib rn reactjs ios android mobile mobile-app customizable-ui" }, { @@ -54251,10 +55020,10 @@ "updatedAt": "2025-09-05T09:25:37Z", "createdAt": "2020-07-31T12:28:32Z", "pushedAt": "2025-09-05T09:25:37Z", - "forks": 850, - "issues": 63, + "forks": 851, + "issues": 64, "subscribers": 29, - "stars": 8402, + "stars": 8405, "dependencies": 2 }, "name": "@gorhom/bottom-sheet", @@ -54282,11 +55051,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3214210, - "weekDownloads": 619728, + "downloads": 3039515, + "weekDownloads": 601276, "size": 1306476, "latestRelease": "5.2.6", "latestReleaseDate": "2025-09-05T09:25:52.717Z" @@ -54298,7 +55068,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.168, "topicSearchString": "react-native ios android web bottom-sheet bottomsheet reanimated sheet modal" }, { @@ -54352,12 +55122,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 4185, - "weekDownloads": 802, + "downloads": 4087, + "weekDownloads": 764, "size": 86118, "latestRelease": "0.6.4", "latestReleaseDate": "2022-09-30T17:31:42.704Z" @@ -54368,7 +55139,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.591, "topicSearchString": "react react-native ios android keycloak keycloak-js hacktoberfest" }, { @@ -54398,7 +55169,7 @@ "forks": 966, "issues": 419, "subscribers": 160, - "stars": 13427, + "stars": 13428, "dependencies": 0 }, "name": "react-native-flipper", @@ -54419,12 +55190,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-flipper", "npm": { - "downloads": 285201, - "weekDownloads": 55322, + "downloads": 270708, + "weekDownloads": 52893, "size": 120282, "latestRelease": "0.273.0", "latestReleaseDate": "2024-11-21T15:15:45.801Z" @@ -54438,7 +55210,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, + "popularity": -0.584, "topicSearchString": "react-native flipper" }, { @@ -54490,12 +55262,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-testfairy", "npm": { - "downloads": 7786, - "weekDownloads": 1619, + "downloads": 7789, + "weekDownloads": 1845, "size": 41009591, "latestRelease": "2.65.0", "latestReleaseDate": "2025-02-27T15:30:30.523Z" @@ -54505,7 +55278,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.201, "topicSearchString": "react-component testfairy react-native ios android" }, { @@ -54565,13 +55338,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-gallery-toolkit", "npm": { - "downloads": 31, - "weekDownloads": 2, + "downloads": 35, + "weekDownloads": 6, "size": 422110, "latestRelease": "1.0.0-alpha.1.2", "latestReleaseDate": "2020-10-27T18:15:14.587Z" @@ -54582,7 +55356,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.443, + "popularity": -1.35, "topicSearchString": "gallery android ios react-native reanimated reanimated2 imageviewer react animations pinch-to-zoom" }, { @@ -54610,7 +55384,7 @@ "forks": 255, "issues": 13, "subscribers": 14, - "stars": 2739, + "stars": 2740, "dependencies": 10 }, "name": "react-native-rename", @@ -54637,12 +55411,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-rename", "npm": { - "downloads": 30361, - "weekDownloads": 5759, + "downloads": 28675, + "weekDownloads": 5495, "size": 624119, "latestRelease": "3.2.17", "latestReleaseDate": "2025-07-08T15:56:50.615Z" @@ -54653,7 +55428,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.163, "topicSearchString": "react-native ios android rename renamer react space cli" }, { @@ -54684,7 +55459,7 @@ "forks": 10, "issues": 1, "subscribers": 3, - "stars": 34, + "stars": 35, "dependencies": 1 }, "name": "react-native-pkce-challenge", @@ -54715,12 +55490,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-pkce-challenge", "npm": { - "downloads": 32199, - "weekDownloads": 6491, + "downloads": 30206, + "weekDownloads": 7586, "size": 83089, "latestRelease": "6.2.0", "latestReleaseDate": "2025-09-01T12:58:21.409Z" @@ -54729,7 +55505,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.213, "topicSearchString": "react-native web macos pkce oauth2 jsi c++ react reactjs windows expo" }, { @@ -54781,11 +55557,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { "downloads": 471, - "weekDownloads": 94, + "weekDownloads": 120, "size": 49173, "latestRelease": "4.1.7", "latestReleaseDate": "2025-10-07T21:42:55.757Z" @@ -54795,7 +55572,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.532, "topicSearchString": "react-native scripts utils development utilities cli development-tools" }, { @@ -54851,12 +55628,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-color-picker-ios", "npm": { - "downloads": 338, - "weekDownloads": 59, + "downloads": 378, + "weekDownloads": 65, "size": 32413, "latestRelease": "0.1.3", "latestReleaseDate": "2024-04-17T12:28:22.027Z" @@ -54865,7 +55643,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.601, + "popularity": -0.602, "topicSearchString": "react-native ios android hacktoberfest color-picker typescript" }, { @@ -54914,13 +55692,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-in-app-utils", "npm": { - "downloads": 7038, - "weekDownloads": 1080, + "downloads": 6918, + "weekDownloads": 1118, "size": 37607, "latestRelease": "6.1.0", "latestReleaseDate": "2020-09-23T15:39:00.493Z" @@ -54933,7 +55712,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.62, + "popularity": -0.613, "topicSearchString": "react react-native react-component ios in-app payments purchases" }, { @@ -54960,7 +55739,7 @@ "forks": 28, "issues": 12, "subscribers": 6, - "stars": 231, + "stars": 232, "dependencies": 0 }, "name": "react-native-external-display", @@ -54986,12 +55765,13 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-external-display", "npm": { - "downloads": 7592, - "weekDownloads": 1817, + "downloads": 7329, + "weekDownloads": 1783, "size": 90278, "latestRelease": "0.6.6", "latestReleaseDate": "2024-09-01T01:23:50.013Z" @@ -55002,7 +55782,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.203, + "popularity": 0.207, "topicSearchString": "react-native external-display uiscene native-module native-ui-component ios android" }, { @@ -55062,12 +55842,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-carplay", "npm": { - "downloads": 3585, - "weekDownloads": 778, + "downloads": 3635, + "weekDownloads": 534, "size": 4079938, "latestRelease": "2.4.1-beta.0", "latestReleaseDate": "2024-06-12T10:22:08.199Z" @@ -55078,7 +55859,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.185, + "popularity": 0.125, "topicSearchString": "react native carplay navigation car auto" }, { @@ -55107,7 +55888,7 @@ "updatedAt": "2023-08-23T15:08:42Z", "createdAt": "2020-09-08T15:51:18Z", "pushedAt": "2023-08-23T15:08:42Z", - "forks": 88, + "forks": 89, "issues": 25, "subscribers": 4, "stars": 585, @@ -55142,13 +55923,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-toast-notifications", "npm": { - "downloads": 135745, - "weekDownloads": 25501, + "downloads": 129033, + "weekDownloads": 24723, "size": 153307, "latestRelease": "3.4.0", "latestReleaseDate": "2023-08-23T14:59:59.550Z" @@ -55159,7 +55941,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.587, "topicSearchString": "component react-component react-native ios android windows toast animated animation message typescript swipe web" }, { @@ -55214,12 +55996,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-use-styles", "npm": { - "downloads": 13, + "downloads": 81, "weekDownloads": 3, "size": 49111, "latestRelease": "1.3.7", @@ -55230,7 +56013,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -1.468, "topicSearchString": "react react-native styles namespace hooks classes css usestyles" }, { @@ -55280,13 +56063,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-debugger", "npm": { - "downloads": 4765, - "weekDownloads": 1009, + "downloads": 4542, + "weekDownloads": 993, "size": 21018, "latestRelease": "1.1.0", "latestReleaseDate": "2018-05-20T16:21:04.077Z" @@ -55300,7 +56084,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.57, + "popularity": -0.564, "topicSearchString": "react-native debugger react-devtools redux-devtools-extension electron" }, { @@ -55356,12 +56140,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-spotify-remote", "npm": { - "downloads": 1035, - "weekDownloads": 212, + "downloads": 1075, + "weekDownloads": 201, "size": 17045075, "latestRelease": "0.3.10", "latestReleaseDate": "2021-07-15T14:04:06.538Z" @@ -55372,7 +56157,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.16, "topicSearchString": "react-native spotify music audio remote mobile player objective-c cocoapods xcode typescript android ios" }, { @@ -55398,7 +56183,7 @@ "forks": 832, "issues": 519, "subscribers": 82, - "stars": 13007, + "stars": 13008, "dependencies": 0 }, "name": "redux-persist", @@ -55421,13 +56206,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "redux-persist", "npm": { - "downloads": 5690939, - "weekDownloads": 1052352, + "downloads": 5484734, + "weekDownloads": 1066626, "size": 417857, "latestRelease": "6.0.0", "latestReleaseDate": "2019-09-02T00:39:26.341Z" @@ -55441,7 +56227,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.585, "topicSearchString": "persistor storage redux redux-middleware" }, { @@ -55502,12 +56288,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-ios-modal", "npm": { - "downloads": 5306, - "weekDownloads": 1053, + "downloads": 5224, + "weekDownloads": 818, "size": 286736, "latestRelease": "0.1.8", "latestReleaseDate": "2020-10-21T03:05:04.853Z" @@ -55517,7 +56304,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.133, "topicSearchString": "react-native ios android modal ios-swift native-module native-ui-component component" }, { @@ -55569,12 +56356,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "dripsy", "npm": { - "downloads": 20354, - "weekDownloads": 4623, + "downloads": 20463, + "weekDownloads": 3989, "size": 322952, "latestRelease": "4.3.8", "latestReleaseDate": "2024-10-22T21:22:00.278Z" @@ -55586,7 +56374,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.193, + "popularity": 0.166, "topicSearchString": "react-native ios android" }, { @@ -55644,12 +56432,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sdkx", "npm": { - "downloads": 14, + "downloads": 38, "weekDownloads": 0, "size": 3870738, "latestRelease": "0.1.8", @@ -55710,13 +56499,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "typed-async-storage", "npm": { - "downloads": 425, - "weekDownloads": 92, + "downloads": 405, + "weekDownloads": 184, "size": 32243, "latestRelease": "3.1.2", "latestReleaseDate": "2020-11-21T23:12:03.160Z" @@ -55726,7 +56516,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.566, + "popularity": -1.363, "topicSearchString": "react react-native asyncstorage storage asyncstorage-wrapper proptype-validators" }, { @@ -55753,7 +56543,7 @@ "forks": 232, "issues": 145, "subscribers": 6, - "stars": 871, + "stars": 867, "dependencies": 1 }, "name": "react-native-nitro-sound", @@ -55786,12 +56576,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-sound", "npm": { - "downloads": 18508, - "weekDownloads": 1725, + "downloads": 19715, + "weekDownloads": 1685, "size": 490020, "latestRelease": "0.2.8", "latestReleaseDate": "2025-09-25T14:47:23.094Z" @@ -55804,7 +56595,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.079, + "popularity": 0.073, "topicSearchString": "react-native ios android audio-player audio-recorder typescript java objective-c swift kotlin turbomodule nitromodule" }, { @@ -55870,13 +56661,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-swipeable-panel", "npm": { - "downloads": 2507, - "weekDownloads": 440, + "downloads": 2677, + "weekDownloads": 502, "size": 96633, "latestRelease": "1.2.7", "latestReleaseDate": "2021-12-31T07:00:06.914Z" @@ -55888,7 +56680,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, + "popularity": -0.59, "topicSearchString": "react react-native component mobile ios android swipeable panel swipeable-panel swipe-up swipe-down bottom bottom-panel bottom-up bottom-up-panel bottom-sheet sheet" }, { @@ -55938,13 +56730,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ionicons", "npm": { - "downloads": 2820, - "weekDownloads": 509, + "downloads": 2856, + "weekDownloads": 484, "size": 141080, "latestRelease": "4.6.5", "latestReleaseDate": "2020-05-27T06:49:03.299Z" @@ -55954,7 +56747,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.606, "topicSearchString": "react-native ionicons ionic icons icon vector-icons component" }, { @@ -55978,7 +56771,7 @@ "forks": 276, "issues": 133, "subscribers": 25, - "stars": 1281, + "stars": 1282, "dependencies": 5 }, "name": "react-native-video-processing", @@ -56009,12 +56802,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-video-processing", "npm": { - "downloads": 5957, - "weekDownloads": 1288, + "downloads": 5995, + "weekDownloads": 1059, "size": 102821217, "latestRelease": "1.7.2", "latestReleaseDate": "2022-09-08T10:38:35.654Z" @@ -56027,7 +56821,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.184, + "popularity": 0.15, "topicSearchString": "react react-native ios android video processing edit videoedit javascript xcode ios-video-editor android-video-editor" }, { @@ -56062,7 +56856,7 @@ "forks": 72, "issues": 47, "subscribers": 6, - "stars": 1155, + "stars": 1157, "dependencies": 0 }, "name": "@react-native-menu/menu", @@ -56088,11 +56882,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 307811, - "weekDownloads": 60315, + "downloads": 296497, + "weekDownloads": 57118, "size": 124048, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-10T00:20:59.390Z" @@ -56102,7 +56897,7 @@ "Popular", "Known" ], - "popularity": 0.167, + "popularity": 0.164, "topicSearchString": "react-native ios android uimenu uiaction hacktoberfest" }, { @@ -56194,12 +56989,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-ios-context-menu", "npm": { - "downloads": 165863, - "weekDownloads": 30900, + "downloads": 161637, + "weekDownloads": 30791, "size": 447974, "latestRelease": "3.2.1", "latestReleaseDate": "2025-09-28T15:08:00.238Z" @@ -56209,7 +57005,7 @@ "Known", "Recently updated" ], - "popularity": 0.158, + "popularity": 0.162, "topicSearchString": "react-native ios ios-context-menu reactnativeioscontextmenu component native-ui-component contextmenu" }, { @@ -56261,13 +57057,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "sharingan-rn-modal-dropdown", "npm": { - "downloads": 321, - "weekDownloads": 55, + "downloads": 339, + "weekDownloads": 69, "size": 481869, "latestRelease": "1.4.0", "latestReleaseDate": "2021-08-14T17:20:04.641Z" @@ -56277,7 +57074,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.353, + "popularity": -1.325, "topicSearchString": "react-native ios android dropdown material-dropdown group-dropdown" }, { @@ -56325,12 +57122,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-latlon", "npm": { - "downloads": 0, + "downloads": 3, "weekDownloads": 0, "size": 253499, "latestRelease": "0.1.3", @@ -56404,12 +57202,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-simple-bottom-sheet", "npm": { - "downloads": 11862, - "weekDownloads": 2560, + "downloads": 10969, + "weekDownloads": 2474, "size": 543504, "latestRelease": "1.0.4", "latestReleaseDate": "2022-09-10T07:56:37.674Z" @@ -56419,7 +57218,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.183, + "popularity": 0.192, "topicSearchString": "react react-native component slider panel bottom-sheet sheet simple slider-panel bottom bottom-slider ios android mobile" }, { @@ -56469,13 +57268,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-widgetkit", "npm": { - "downloads": 18278, - "weekDownloads": 3155, + "downloads": 17851, + "weekDownloads": 3021, "size": 55181, "latestRelease": "1.0.9", "latestReleaseDate": "2020-11-02T17:26:01.081Z" @@ -56485,7 +57285,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, + "popularity": -0.606, "topicSearchString": "react-native ios android widgetkit ios14" }, { @@ -56549,12 +57349,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-paper-dates", "npm": { - "downloads": 148362, - "weekDownloads": 28802, + "downloads": 143116, + "weekDownloads": 28653, "size": 990972, "latestRelease": "0.22.50", "latestReleaseDate": "2025-09-05T18:50:25.832Z" @@ -56565,7 +57366,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.17, "topicSearchString": "react-native ios android material web paper material-design datepicker timepicker react picker" }, { @@ -56617,12 +57418,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-stylex", "npm": { - "downloads": 911, - "weekDownloads": 216, + "downloads": 952, + "weekDownloads": 150, "size": 34054, "latestRelease": "4.2.1", "latestReleaseDate": "2023-01-07T21:11:32.621Z" @@ -56632,7 +57434,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.548, + "popularity": -0.616, "topicSearchString": "react-native theme style media-queries" }, { @@ -56685,13 +57487,14 @@ "hasTypes": false, "newArchitecture": true, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-fbt", "npm": { - "downloads": 38, - "weekDownloads": 5, + "downloads": 85, + "weekDownloads": 3, "size": 49577, "latestRelease": "0.0.7", "latestReleaseDate": "2021-10-07T23:52:09.831Z" @@ -56703,7 +57506,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.375, + "popularity": -1.47, "topicSearchString": "react-native android ios fbt" }, { @@ -56760,13 +57563,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-navigation-bar-color", "npm": { - "downloads": 78556, - "weekDownloads": 13430, + "downloads": 73321, + "weekDownloads": 18017, "size": 72034, "latestRelease": "2.0.2", "latestReleaseDate": "2022-12-28T23:06:30.475Z" @@ -56777,7 +57581,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, + "popularity": -0.541, "topicSearchString": "react-native component react-component react native navigation-bar navigation-bar-color navigation-theme bottom-bar bottom-bar-color" }, { @@ -56825,13 +57629,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-google-play-install-referrer", "npm": { - "downloads": 62, - "weekDownloads": 14, + "downloads": 58, + "weekDownloads": 17, "size": 1028247, "latestRelease": "1.0.0", "latestReleaseDate": "2020-11-25T14:54:22.750Z" @@ -56841,7 +57646,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.55, + "popularity": -1.488, "topicSearchString": "react-native ios android" }, { @@ -56864,7 +57669,7 @@ "updatedAt": "2024-08-20T18:28:15Z", "createdAt": "2019-06-12T15:24:16Z", "pushedAt": "2024-08-20T18:28:15Z", - "forks": 73, + "forks": 74, "issues": 40, "subscribers": 16, "stars": 954, @@ -56890,12 +57695,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "react-native-v8", "npm": { - "downloads": 21180, - "weekDownloads": 3777, + "downloads": 21553, + "weekDownloads": 4464, "size": 184890, "latestRelease": "2.5.1", "latestReleaseDate": "2024-08-20T18:29:21.956Z" @@ -56907,7 +57713,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.176, "topicSearchString": "react-native android v8" }, { @@ -56958,13 +57764,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bootstrap-icons", "npm": { - "downloads": 1252, - "weekDownloads": 136, + "downloads": 1350, + "weekDownloads": 160, "size": 1104992, "latestRelease": "1.5.0", "latestReleaseDate": "2021-05-19T23:38:00.768Z" @@ -56974,7 +57781,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.907, + "popularity": -0.899, "topicSearchString": "bootstrap icons react-native" }, { @@ -57039,13 +57846,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ios-popover", "npm": { - "downloads": 30, - "weekDownloads": 9, + "downloads": 111, + "weekDownloads": 4, "size": 178102, "latestRelease": "3.0.0", "latestReleaseDate": "2022-10-29T16:06:47.151Z" @@ -57055,7 +57863,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.243, + "popularity": -1.469, "topicSearchString": "react-native ios uipopover popover popover-view component native-component" }, { @@ -57111,13 +57919,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-background-upload", "npm": { - "downloads": 17125, - "weekDownloads": 4572, + "downloads": 16617, + "weekDownloads": 4253, "size": 689594, "latestRelease": "6.6.0", "latestReleaseDate": "2022-10-07T16:23:47.912Z" @@ -57130,7 +57939,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.523, + "popularity": -0.532, "topicSearchString": "nsurlsession uploadservice background upload react-native react android ios file-upload hacktoberfest" }, { @@ -57185,13 +57994,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tor", "npm": { - "downloads": 2823, - "weekDownloads": 693, + "downloads": 2634, + "weekDownloads": 594, "size": 118987805, "latestRelease": "0.1.8", "latestReleaseDate": "2022-02-09T21:17:40.504Z" @@ -57201,7 +58011,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.541, + "popularity": -0.558, "topicSearchString": "react-native tor socks5 streams proxy vpn privacy ios android" }, { @@ -57256,13 +58066,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-magnus", "npm": { - "downloads": 2597, - "weekDownloads": 519, + "downloads": 3057, + "weekDownloads": 481, "size": 1698217, "latestRelease": "1.0.63", "latestReleaseDate": "2022-09-22T11:53:39.251Z" @@ -57274,7 +58085,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.616, "topicSearchString": "react-native ios android design-system react typescript ui-components" }, { @@ -57296,7 +58107,7 @@ "updatedAt": "2023-05-17T11:40:24Z", "createdAt": "2020-12-09T10:58:16Z", "pushedAt": "2023-05-17T11:40:24Z", - "forks": 30, + "forks": 31, "issues": 15, "subscribers": 17, "stars": 139, @@ -57324,12 +58135,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 89937, - "weekDownloads": 26783, + "downloads": 79357, + "weekDownloads": 19436, "size": 174596, "latestRelease": "0.10.3", "latestReleaseDate": "2023-05-17T09:37:10.470Z" @@ -57340,7 +58152,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.247, + "popularity": -0.542, "topicSearchString": "react-native ios android flatlist wrapper scrollview" }, { @@ -57395,12 +58207,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-file-access", "npm": { - "downloads": 79730, - "weekDownloads": 13680, + "downloads": 76935, + "weekDownloads": 14694, "size": 201749, "latestRelease": "3.2.0", "latestReleaseDate": "2025-08-22T20:02:49.167Z" @@ -57410,7 +58223,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.162, "topicSearchString": "react-native ios android macos download file filesystem fs" }, { @@ -57462,13 +58275,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-print", "npm": { - "downloads": 59449, - "weekDownloads": 9744, + "downloads": 58809, + "weekDownloads": 11998, "size": 145699, "latestRelease": "0.11.0", "latestReleaseDate": "2023-01-22T06:11:15.154Z" @@ -57479,7 +58293,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.611, + "popularity": -0.577, "topicSearchString": "react-native print ndef react native" }, { @@ -57506,10 +58320,10 @@ "updatedAt": "2025-10-10T23:03:54Z", "createdAt": "2019-03-05T23:47:10Z", "pushedAt": "2025-10-10T23:03:54Z", - "forks": 2277, - "issues": 88, + "forks": 2279, + "issues": 89, "subscribers": 178, - "stars": 44003, + "stars": 44018, "dependencies": 0 }, "name": "react-hook-form", @@ -57541,12 +58355,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-hook-form", "npm": { - "downloads": 62735407, - "weekDownloads": 13035483, + "downloads": 60291579, + "weekDownloads": 12328497, "size": 1180785, "latestRelease": "7.65.0", "latestReleaseDate": "2025-10-10T22:43:28.298Z" @@ -57560,7 +58375,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.174, "topicSearchString": "react hooks form forms form-validation validation typescript react-hooks react-native form-builder dx ux reactjs" }, { @@ -57619,13 +58434,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-navigation-drawer-extension", "npm": { - "downloads": 2985, - "weekDownloads": 604, + "downloads": 3045, + "weekDownloads": 570, "size": 52119, "latestRelease": "4.3.1", "latestReleaseDate": "2022-11-02T13:19:33.526Z" @@ -57636,7 +58452,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.578, + "popularity": -0.591, "topicSearchString": "wix navigation react-native drawer side-menu ios android native typescript" }, { @@ -57691,12 +58507,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "reanimated-collapsible-helpers", "npm": { - "downloads": 440, - "weekDownloads": 99, + "downloads": 423, + "weekDownloads": 88, "size": 29012, "latestRelease": "2.0.1", "latestReleaseDate": "2025-06-12T13:27:55.938Z" @@ -57705,7 +58522,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.558, + "popularity": -0.572, "topicSearchString": "react-native ios android animation collapsible reanimated" }, { @@ -57737,7 +58554,7 @@ "forks": 33, "issues": 1, "subscribers": 3, - "stars": 591, + "stars": 592, "dependencies": 1 }, "name": "react-native-error-boundary", @@ -57761,12 +58578,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-error-boundary", "npm": { - "downloads": 232490, - "weekDownloads": 42483, + "downloads": 226627, + "weekDownloads": 41420, "size": 25584, "latestRelease": "3.0.0", "latestReleaseDate": "2025-10-08T19:19:21.868Z" @@ -57831,12 +58649,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "osmicsx", "npm": { - "downloads": 36, - "weekDownloads": 1, + "downloads": 576, + "weekDownloads": 4, "size": 141348, "latestRelease": "1.1.3", "latestReleaseDate": "2023-04-11T08:49:00.707Z" @@ -57847,7 +58666,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.725, + "popularity": -0.744, "topicSearchString": "style react-native framework javascript utility frontend hacktoberfest" }, { @@ -57901,12 +58720,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 60, - "weekDownloads": 13, + "downloads": 87, + "weekDownloads": 9, "size": 2942358, "latestRelease": "1.3.1", "latestReleaseDate": "2021-07-30T04:39:30.190Z" @@ -57916,7 +58736,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.314, + "popularity": -1.41, "topicSearchString": "cli react react-native boilerplate generator hacktoberfest" }, { @@ -57972,11 +58792,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 257, - "weekDownloads": 42, + "downloads": 263, + "weekDownloads": 70, "size": 466829, "latestRelease": "3.0.1", "latestReleaseDate": "2022-04-28T20:46:35.823Z" @@ -57986,7 +58807,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.61, + "popularity": -1.52, "topicSearchString": "react-native adobe adobe-experience-platform media ios android adobe-analytics" }, { @@ -58051,12 +58872,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-payments", "npm": { - "downloads": 11598, - "weekDownloads": 2111, + "downloads": 11172, + "weekDownloads": 2474, "size": 170548, "latestRelease": "0.8.4", "latestReleaseDate": "2021-05-25T11:04:19.845Z" @@ -58069,7 +58891,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.188, "topicSearchString": "react react-native apple-pay stripe braintree payments payment-request sca strong-customer-authentication 2-factor 2fa android ios payment-intents cross-platform" }, { @@ -58131,11 +58953,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 1054, - "weekDownloads": 181, + "downloads": 2211, + "weekDownloads": 126, "size": 160150, "latestRelease": "3.1.0", "latestReleaseDate": "2023-02-24T08:29:55.896Z" @@ -58145,7 +58968,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.048, "topicSearchString": "react-native health-kit google-fit fitness step track tracker health android ios healthkit apple-health fit googlefit fitnessapi steps activity body" }, { @@ -58173,7 +58996,7 @@ "forks": 152, "issues": 100, "subscribers": 3, - "stars": 475, + "stars": 474, "dependencies": 0 }, "name": "react-native-signature-canvas", @@ -58207,12 +59030,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-signature-canvas", "npm": { - "downloads": 329280, - "weekDownloads": 58476, + "downloads": 320703, + "weekDownloads": 66126, "size": 102612, "latestRelease": "5.0.1", "latestReleaseDate": "2025-06-28T05:36:03.351Z" @@ -58224,7 +59048,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.175, "topicSearchString": "react-native react-component ios android signature signature-pad canvas expo typescript drawing webview performance error-handling undo-redo svg-export" }, { @@ -58275,12 +59099,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-default-preference", "npm": { - "downloads": 298799, - "weekDownloads": 55851, + "downloads": 285831, + "weekDownloads": 66886, "size": 89097, "latestRelease": "1.4.4", "latestReleaseDate": "2022-04-07T14:14:17.310Z" @@ -58291,7 +59116,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.199, "topicSearchString": "react-native nsuserdefaults user-defaults sharedpreferences shared-preferences ios android userdefaults" }, { @@ -58365,11 +59190,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 2908, - "weekDownloads": 299, + "downloads": 4740, + "weekDownloads": 403, "size": 59070549, "latestRelease": "6.0.20", "latestReleaseDate": "2024-12-11T05:47:49.886Z" @@ -58380,7 +59206,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.087, + "popularity": 0.072, "topicSearchString": "2d 3d android babylon babylon.js babylonjs canvas dogz emoji font gcanvas glsl gpu ios multiple-touches native offscreen-canvas particles-bg pixel-animation-editor pixel-art-animation-editor pixel-art-editor pixel-gif-editor pixel-editor pixi proton react-native shader opengl webgl zdog" }, { @@ -58437,11 +59263,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 33736, - "weekDownloads": 3510, + "downloads": 33946, + "weekDownloads": 3186, "size": 2139134, "latestRelease": "0.0.80", "latestReleaseDate": "2025-06-18T23:23:09.319Z" @@ -58451,7 +59278,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.088, + "popularity": 0.08, "topicSearchString": "react-native windows xaml winui uwp fluent fluent-ui windows" }, { @@ -58508,12 +59335,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-blob-courier", "npm": { - "downloads": 195, - "weekDownloads": 14, + "downloads": 733, + "weekDownloads": 9, "size": 468860, "latestRelease": "5.0.2", "latestReleaseDate": "2024-04-12T11:57:20.726Z" @@ -58523,7 +59351,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.688, + "popularity": -0.74, "topicSearchString": "react-native ios android blob transfer files download upload courier upload-blobs" }, { @@ -58584,13 +59412,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-pinchable", "npm": { - "downloads": 7013, - "weekDownloads": 1267, + "downloads": 6705, + "weekDownloads": 1167, "size": 30979, "latestRelease": "0.2.1", "latestReleaseDate": "2021-02-14T17:39:23.795Z" @@ -58601,7 +59430,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.602, "topicSearchString": "react-native react-component component react mobile ios ui gesture zoom pinch image pinch-to-zoom" }, { @@ -58632,7 +59461,7 @@ "forks": 46, "issues": 9, "subscribers": 8, - "stars": 1008, + "stars": 1009, "dependencies": 0 }, "name": "react-native-performance", @@ -58656,12 +59485,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-performance", "npm": { - "downloads": 719084, - "weekDownloads": 133497, + "downloads": 697791, + "weekDownloads": 148539, "size": 208008, "latestRelease": "5.1.4", "latestReleaseDate": "2025-06-15T22:34:24.712Z" @@ -58672,7 +59502,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.181, "topicSearchString": "react-native performance perf benchmark" }, { @@ -58724,13 +59554,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bidirectional-infinite-scroll", "npm": { - "downloads": 11058, - "weekDownloads": 2268, + "downloads": 10203, + "weekDownloads": 2145, "size": 63160, "latestRelease": "0.3.3", "latestReleaseDate": "2021-04-04T11:51:40.530Z" @@ -58741,7 +59572,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.576, + "popularity": -0.571, "topicSearchString": "react-native ios android infinite-scroll flatlist" }, { @@ -58768,8 +59599,8 @@ "updatedAt": "2025-10-15T14:01:18Z", "createdAt": "2021-02-24T07:33:00Z", "pushedAt": "2025-10-15T14:01:18Z", - "forks": 306, - "issues": 18, + "forks": 305, + "issues": 19, "subscribers": 32, "stars": 7641, "dependencies": 0 @@ -58794,12 +59625,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-mmkv", "npm": { - "downloads": 2130269, - "weekDownloads": 410169, + "downloads": 2039568, + "weekDownloads": 414472, "size": 804546, "latestRelease": "3.3.3", "latestReleaseDate": "2025-09-18T14:54:37.543Z" @@ -58812,7 +59644,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.173, "topicSearchString": "react-native nitro" }, { @@ -58844,10 +59676,10 @@ "updatedAt": "2025-09-22T09:56:59Z", "createdAt": "2021-02-19T14:59:44Z", "pushedAt": "2025-09-22T09:56:59Z", - "forks": 1231, - "issues": 239, + "forks": 1233, + "issues": 240, "subscribers": 57, - "stars": 8901, + "stars": 8902, "dependencies": 0 }, "name": "react-native-vision-camera", @@ -58891,11 +59723,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 1299338, - "weekDownloads": 229825, + "downloads": 1257304, + "weekDownloads": 262183, "size": 1157619, "latestRelease": "4.7.2", "latestReleaseDate": "2025-09-02T20:41:12.748Z" @@ -58909,7 +59742,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.177, "topicSearchString": "react native camera react-native camera vision javascript typescript android ios library instagram snapchat ai scanner qrcode barcode qr-code jsi worklet module frame processing realtime" }, { @@ -58965,12 +59798,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-controlled-mentions", "npm": { - "downloads": 77466, - "weekDownloads": 15090, + "downloads": 75573, + "weekDownloads": 14861, "size": 83452, "latestRelease": "3.1.0", "latestReleaseDate": "2025-06-02T12:07:17.708Z" @@ -58980,7 +59814,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.167, "topicSearchString": "react react-native mentions text text-input textinput" }, { @@ -59005,7 +59839,7 @@ "updatedAt": "2025-04-23T21:47:53Z", "createdAt": "2019-10-05T10:22:34Z", "pushedAt": "2025-04-23T21:47:53Z", - "forks": 96, + "forks": 95, "issues": 25, "subscribers": 5, "stars": 356, @@ -59039,12 +59873,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-tcp-socket", "npm": { - "downloads": 236795, - "weekDownloads": 20555, + "downloads": 251166, + "weekDownloads": 19833, "size": 233583, "latestRelease": "6.3.0", "latestReleaseDate": "2025-04-23T21:48:01.365Z" @@ -59054,7 +59889,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.074, + "popularity": 0.067, "topicSearchString": "react-native ios android tcp-socket tls ssl tcp-server tcp-client tcp library net network" }, { @@ -59114,12 +59949,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-text-ticker", "npm": { - "downloads": 45180, - "weekDownloads": 8212, + "downloads": 44053, + "weekDownloads": 8806, "size": 19552, "latestRelease": "1.15.0", "latestReleaseDate": "2025-08-10T17:12:43.746Z" @@ -59129,7 +59965,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.17, "topicSearchString": "react-native marquee android ios text scroller ticker scrolling scroll" }, { @@ -59206,7 +60042,8 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": {}, @@ -59272,12 +60109,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-simple-biometrics", "npm": { - "downloads": 5462, - "weekDownloads": 946, + "downloads": 5217, + "weekDownloads": 1083, "size": 41628, "latestRelease": "2.0.0", "latestReleaseDate": "2025-08-25T15:46:01.318Z" @@ -59287,7 +60125,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.177, "topicSearchString": "react-native ios android biometrics fingerprint authentication faceid" }, { @@ -59344,13 +60182,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-animated-linear-gradient", "npm": { - "downloads": 1808, - "weekDownloads": 438, + "downloads": 1858, + "weekDownloads": 405, "size": 7567808, "latestRelease": "1.3.0", "latestReleaseDate": "2022-02-28T03:31:31.593Z" @@ -59361,7 +60200,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.544, + "popularity": -0.565, "topicSearchString": "react-native linear-gradient react background-animation ios android component animation" }, { @@ -59418,13 +60257,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-hold-menu", "npm": { - "downloads": 566, - "weekDownloads": 85, + "downloads": 809, + "weekDownloads": 90, "size": 329219, "latestRelease": "0.1.6", "latestReleaseDate": "2023-04-06T20:02:35.552Z" @@ -59436,7 +60276,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.372, + "popularity": -1.405, "topicSearchString": "react-native ios android hold-menu context-menu hold-to-open reanimated menu" }, { @@ -59490,13 +60330,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "consistencss", "npm": { - "downloads": 1385, - "weekDownloads": 252, + "downloads": 1396, + "weekDownloads": 229, "size": 137773, "latestRelease": "1.7.0", "latestReleaseDate": "2021-05-01T16:53:20.900Z" @@ -59506,7 +60347,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, + "popularity": -0.61, "topicSearchString": "react-native atomic-css css styles typescript" }, { @@ -59565,12 +60406,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 712, - "weekDownloads": 162, + "downloads": 679, + "weekDownloads": 172, "size": 70499, "latestRelease": "1.2.1", "latestReleaseDate": "2023-08-26T22:20:57.793Z" @@ -59580,7 +60422,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.306, + "popularity": -1.284, "topicSearchString": "react native datepicker date picker expo select react-native" }, { @@ -59613,7 +60455,7 @@ "forks": 62, "issues": 20, "subscribers": 5, - "stars": 588, + "stars": 587, "dependencies": 0 }, "name": "react-native-awesome-gallery", @@ -59643,12 +60485,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-awesome-gallery", "npm": { - "downloads": 134591, - "weekDownloads": 24045, + "downloads": 128644, + "weekDownloads": 25602, "size": 271501, "latestRelease": "0.4.3", "latestReleaseDate": "2024-09-28T11:54:49.390Z" @@ -59659,7 +60502,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.169, "topicSearchString": "react-native ios android reanimated2 image-viewer pinch-to-zoom react image-gallery lightbox expo" }, { @@ -59696,13 +60539,14 @@ "license": null, "hasTypes": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-head-tab-view", "npm": { - "downloads": 5522, - "weekDownloads": 1452, + "downloads": 5013, + "weekDownloads": 1239, "size": 78240, "latestRelease": "4.0.0-rc.13", "latestReleaseDate": "2021-07-18T16:58:42.353Z" @@ -59714,7 +60558,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.526, + "popularity": -0.54, "topicSearchString": "" }, { @@ -59768,12 +60612,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-background-actions", "npm": { - "downloads": 43980, - "weekDownloads": 8555, + "downloads": 42679, + "weekDownloads": 7975, "size": 63191, "latestRelease": "4.0.1", "latestReleaseDate": "2024-07-09T09:44:41.067Z" @@ -59784,7 +60629,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.159, "topicSearchString": "react-native background service task android ios library background-task" }, { @@ -59847,12 +60692,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-image-modal", "npm": { - "downloads": 15769, - "weekDownloads": 2359, + "downloads": 16031, + "weekDownloads": 2591, "size": 151369, "latestRelease": "3.0.13", "latestReleaseDate": "2024-11-23T13:02:03.185Z" @@ -59863,7 +60709,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.127, + "popularity": 0.137, "topicSearchString": "react-native react-component component react ios android ui image-box image gallery image-modal" }, { @@ -59916,7 +60762,8 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { @@ -59987,13 +60834,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-customized-image-picker", "npm": { - "downloads": 1264, - "weekDownloads": 242, + "downloads": 1533, + "weekDownloads": 224, "size": 1082592, "latestRelease": "1.3.4", "latestReleaseDate": "2022-03-12T04:08:12.296Z" @@ -60004,7 +60852,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.626, "topicSearchString": "react native react-native image picker crop cropping multiple camera" }, { @@ -60059,13 +60907,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-accessibility-engine", "npm": { - "downloads": 40282, - "weekDownloads": 7052, + "downloads": 38783, + "weekDownloads": 7687, "size": 477893, "latestRelease": "3.2.0", "latestReleaseDate": "2022-11-15T20:26:24.025Z" @@ -60076,7 +60925,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, + "popularity": -0.582, "topicSearchString": "react-native jest testing testing-library a11y accessibility ios android" }, { @@ -60098,7 +60947,7 @@ "updatedAt": "2025-01-26T12:09:44Z", "createdAt": "2021-03-09T14:38:42Z", "pushedAt": "2025-01-26T12:09:44Z", - "forks": 161, + "forks": 162, "issues": 5, "subscribers": 13, "stars": 757, @@ -60128,12 +60977,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "react-native-fbsdk-next", "npm": { - "downloads": 512936, - "weekDownloads": 105527, + "downloads": 491524, + "weekDownloads": 98747, "size": 657791, "latestRelease": "13.4.1", "latestReleaseDate": "2025-01-26T12:09:54.511Z" @@ -60145,7 +60995,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.171, "topicSearchString": "react react-native react-component ios android facebook core" }, { @@ -60187,12 +61037,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-next-react-navigation", "npm": { - "downloads": 5557, - "weekDownloads": 854, + "downloads": 6298, + "weekDownloads": 979, "size": 41337, "latestRelease": "2.0.2", "latestReleaseDate": "2021-09-25T19:43:55.198Z" @@ -60203,7 +61054,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.131, + "popularity": 0.132, "topicSearchString": "" }, { @@ -60255,13 +61106,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-search-box", "npm": { - "downloads": 1233, - "weekDownloads": 288, + "downloads": 1204, + "weekDownloads": 221, "size": 26465, "latestRelease": "0.0.20", "latestReleaseDate": "2020-10-03T16:06:36.368Z" @@ -60272,7 +61124,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.551, + "popularity": -0.594, "topicSearchString": "react-native ios android anhtuank7c ctlabvn" }, { @@ -60330,12 +61182,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "unmaintained": true, "npm": { - "downloads": 2726, - "weekDownloads": 419, + "downloads": 2636, + "weekDownloads": 510, "size": 44118, "latestRelease": "0.4.0", "latestReleaseDate": "2022-10-28T08:59:14.432Z" @@ -60345,7 +61198,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.619, + "popularity": -0.585, "topicSearchString": "react-native react mobile ios android ui dark-mode accessibility css web klarna-featured" }, { @@ -60398,13 +61251,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-web-swiper", "npm": { - "downloads": 46798, - "weekDownloads": 7889, + "downloads": 45788, + "weekDownloads": 7539, "size": 53727, "latestRelease": "2.2.4", "latestReleaseDate": "2022-10-02T12:54:46.383Z" @@ -60415,7 +61269,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, + "popularity": -0.61, "topicSearchString": "react-native web swipe swiper slider" }, { @@ -60475,13 +61329,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-popable", "npm": { - "downloads": 17704, - "weekDownloads": 3044, + "downloads": 17073, + "weekDownloads": 3276, "size": 149855, "latestRelease": "0.4.3", "latestReleaseDate": "2021-08-27T15:50:40.651Z" @@ -60492,7 +61347,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, + "popularity": -0.587, "topicSearchString": "react-native ios android web popover tooltip alert expo" }, { @@ -60545,13 +61400,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-input-outline", "npm": { - "downloads": 1171, - "weekDownloads": 217, + "downloads": 1087, + "weekDownloads": 151, "size": 170311, "latestRelease": "1.5.2", "latestReleaseDate": "2021-09-06T18:51:27.488Z" @@ -60561,7 +61417,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.632, "topicSearchString": "react-native ios android" }, { @@ -60613,13 +61469,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-scalable-image", "npm": { - "downloads": 53008, - "weekDownloads": 6869, + "downloads": 55145, + "weekDownloads": 8730, "size": 8370, "latestRelease": "1.1.0", "latestReleaseDate": "2021-02-12T23:12:01.997Z" @@ -60630,7 +61487,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.64, + "popularity": -0.615, "topicSearchString": "react-native image component scalable aspect-ratio scales-width scales-height responsive reactjs" }, { @@ -60681,12 +61538,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 70, - "weekDownloads": 1, + "downloads": 262, + "weekDownloads": 3, "size": 1614808, "latestRelease": "1.1.0", "latestReleaseDate": "2021-07-21T22:10:56.632Z" @@ -60697,7 +61555,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.488, + "popularity": -1.49, "topicSearchString": "react-native mapbox navigation mapbox-navigation" }, { @@ -60724,10 +61582,10 @@ "updatedAt": "2025-10-01T11:57:23Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T11:57:23Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-screen-capture", @@ -60750,12 +61608,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-screen-capture", "npm": { - "downloads": 183978, - "weekDownloads": 43024, + "downloads": 167770, + "weekDownloads": 33629, "size": 109411, "latestRelease": "8.0.8", "latestReleaseDate": "2025-09-13T20:52:46.740Z" @@ -60769,7 +61628,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.199, + "popularity": 0.17, "topicSearchString": "react-native expo expo-screen-capture" }, { @@ -60822,12 +61681,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 120, - "weekDownloads": 27, + "downloads": 104, + "weekDownloads": 58, "size": 131213, "latestRelease": "0.5.6", "latestReleaseDate": "2022-09-27T14:43:47.808Z" @@ -60837,7 +61697,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.557, + "popularity": -1.267, "topicSearchString": "react-native ios android stripe stripe-payments stripe-payment" }, { @@ -60885,12 +61745,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-aes-gcm-crypto", "npm": { - "downloads": 11439, - "weekDownloads": 1212, + "downloads": 11156, + "weekDownloads": 1331, "size": 69769, "latestRelease": "0.2.2", "latestReleaseDate": "2022-07-20T05:21:17.954Z" @@ -60901,7 +61762,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.09, + "popularity": 0.101, "topicSearchString": "react-native ios android cryptography" }, { @@ -60951,13 +61812,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sqlite-2", "npm": { - "downloads": 17524, - "weekDownloads": 2612, + "downloads": 17505, + "weekDownloads": 2299, "size": 162192, "latestRelease": "3.6.2", "latestReleaseDate": "2022-11-01T03:49:23.465Z" @@ -60968,7 +61830,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.623, + "popularity": -0.638, "topicSearchString": "react-native ios android pouchdb sqlite sqlite3" }, { @@ -61026,12 +61888,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 101, - "weekDownloads": 28, + "downloads": 89, + "weekDownloads": 19, "size": 185208, "latestRelease": "0.9.0", "latestReleaseDate": "2021-12-11T19:16:39.945Z" @@ -61041,7 +61904,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.257, + "popularity": -1.31, "topicSearchString": "breeffy react-native android calendar component reanimated ui" }, { @@ -61095,13 +61958,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-rapi-ui", "npm": { - "downloads": 601, - "weekDownloads": 111, + "downloads": 638, + "weekDownloads": 124, "size": 2525166, "latestRelease": "0.2.1", "latestReleaseDate": "2021-06-06T08:03:28.329Z" @@ -61111,7 +61975,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.343, + "popularity": -1.335, "topicSearchString": "react-native components ui design" }, { @@ -61177,13 +62041,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-location-enabler", "npm": { - "downloads": 3112, - "weekDownloads": 679, + "downloads": 2901, + "weekDownloads": 659, "size": 50350, "latestRelease": "4.1.1", "latestReleaseDate": "2022-04-14T02:12:09.349Z" @@ -61193,7 +62058,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.564, + "popularity": -0.557, "topicSearchString": "react-native android location settings gps wi-fi settings-enabler settingsclient resolution wifi bluetooth ble accuracy android-device" }, { @@ -61221,7 +62086,7 @@ "updatedAt": "2025-03-11T20:25:50Z", "createdAt": "2020-10-17T15:31:32Z", "pushedAt": "2025-03-11T20:25:50Z", - "forks": 151, + "forks": 150, "issues": 29, "subscribers": 37, "stars": 4453, @@ -61248,12 +62113,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "moti", "npm": { - "downloads": 711397, - "weekDownloads": 142357, + "downloads": 680617, + "weekDownloads": 131874, "size": 778634, "latestRelease": "0.30.0", "latestReleaseDate": "2025-01-29T15:16:12.794Z" @@ -61266,7 +62132,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.165, "topicSearchString": "react-native ios android web" }, { @@ -61298,9 +62164,9 @@ "createdAt": "2017-02-08T09:55:18Z", "pushedAt": "2025-09-28T12:59:09Z", "forks": 720, - "issues": 44, + "issues": 45, "subscribers": 316, - "stars": 6949, + "stars": 6952, "dependencies": 16 }, "name": "react-native-ui-lib", @@ -61327,12 +62193,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-ui-lib", "npm": { - "downloads": 93725, - "weekDownloads": 17075, + "downloads": 146625, + "weekDownloads": 18419, "size": 2646666, "latestRelease": "7.46.3", "latestReleaseDate": "2025-09-04T12:51:09.210Z" @@ -61345,7 +62212,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.107, "topicSearchString": "react-native ui components ios android tools hacktoberfest" }, { @@ -61412,12 +62279,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 410, - "weekDownloads": 83, + "downloads": 662, + "weekDownloads": 90, "size": 119256, "latestRelease": "1.2.32", "latestReleaseDate": "2022-09-07T03:12:00.836Z" @@ -61427,7 +62295,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.577, + "popularity": -1.634, "topicSearchString": "re-state restate react-re-state react-native react ios android web context react-context global-state global state react-global-state global-state-for-react expo" }, { @@ -61488,13 +62356,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-see-more-inline", "npm": { - "downloads": 457, - "weekDownloads": 87, + "downloads": 489, + "weekDownloads": 88, "size": 21143, "latestRelease": "1.3.0", "latestReleaseDate": "2020-11-11T19:20:32.689Z" @@ -61505,7 +62374,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.337, + "popularity": -1.347, "topicSearchString": "react-native see-more read-more see-less javascript binary-search read-more-less text inline" }, { @@ -61555,12 +62424,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-lifecycle", "npm": { - "downloads": 88, - "weekDownloads": 22, + "downloads": 118, + "weekDownloads": 13, "size": 19152, "latestRelease": "2.1.2", "latestReleaseDate": "2023-10-09T16:56:53.364Z" @@ -61570,7 +62440,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.53, + "popularity": -0.654, "topicSearchString": "react-native hooks lifecycle" }, { @@ -61600,7 +62470,7 @@ "forks": 162, "issues": 97, "subscribers": 5, - "stars": 871, + "stars": 873, "dependencies": 2 }, "name": "react-native-blob-util", @@ -61628,12 +62498,13 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-blob-util", "npm": { - "downloads": 1844343, - "weekDownloads": 333069, + "downloads": 1787182, + "weekDownloads": 344545, "size": 784336, "latestRelease": "0.22.2", "latestReleaseDate": "2025-05-28T21:18:56.200Z" @@ -61645,7 +62516,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.164, "topicSearchString": "react-native fetch blob fs upload file download filestream image-header" }, { @@ -61681,7 +62552,7 @@ "forks": 38, "issues": 4, "subscribers": 4, - "stars": 383, + "stars": 384, "dependencies": 1 }, "name": "react-native-photo-manipulator", @@ -61712,12 +62583,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-photo-manipulator", "npm": { - "downloads": 45505, - "weekDownloads": 9889, + "downloads": 42420, + "weekDownloads": 8756, "size": 143562, "latestRelease": "1.9.2", "latestReleaseDate": "2025-01-30T14:18:35.068Z" @@ -61728,7 +62600,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.185, + "popularity": 0.175, "topicSearchString": "react-native image-editor image-processing image-manipulator photo-editor photo-processing photo-manipulator ios android image-manipulation" }, { @@ -61788,11 +62660,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npm": { - "downloads": 16102, - "weekDownloads": 2656, + "downloads": 15648, + "weekDownloads": 2078, "size": 73216, "latestRelease": "5.4.0", "latestReleaseDate": "2025-09-29T18:29:39.537Z" @@ -61802,7 +62675,7 @@ "Known", "Recently updated" ], - "popularity": 0.14, + "popularity": 0.113, "topicSearchString": "auth line login react react-native social wrapper wrapper-library hybrid-apps ios android" }, { @@ -61860,13 +62733,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-weather-chart", "npm": { "downloads": 42, - "weekDownloads": 2, + "weekDownloads": 4, "size": 476499, "latestRelease": "0.1.3", "latestReleaseDate": "2021-05-16T11:08:22.208Z" @@ -61876,7 +62750,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.706, + "popularity": -1.661, "topicSearchString": "react-native react-component component react ui weather chart weather-chart weather-forecast svg" }, { @@ -61927,12 +62801,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-compass-heading", "npm": { - "downloads": 10129, - "weekDownloads": 2199, + "downloads": 9417, + "weekDownloads": 2019, "size": 29785, "latestRelease": "2.0.2", "latestReleaseDate": "2025-04-03T02:00:47.736Z" @@ -61943,7 +62818,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.185, + "popularity": 0.182, "topicSearchString": "react-native ios android" }, { @@ -61970,10 +62845,10 @@ "updatedAt": "2025-10-16T12:52:20Z", "createdAt": "2020-12-16T23:51:01Z", "pushedAt": "2025-10-16T12:52:20Z", - "forks": 298, - "issues": 137, + "forks": 297, + "issues": 139, "subscribers": 45, - "stars": 1372, + "stars": 1375, "dependencies": 0 }, "name": "@stripe/stripe-react-native", @@ -61998,11 +62873,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npm": { - "downloads": 647055, - "weekDownloads": 118099, + "downloads": 633693, + "weekDownloads": 119305, "size": 1968380, "latestRelease": "0.54.1", "latestReleaseDate": "2025-10-02T16:50:02.280Z" @@ -62014,7 +62890,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.155, + "popularity": 0.16, "topicSearchString": "react-native ios android stripe payments" }, { @@ -62069,13 +62945,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-swipe-cards-deck", "npm": { - "downloads": 488, - "weekDownloads": 49, + "downloads": 509, + "weekDownloads": 45, "size": 35615, "latestRelease": "0.3.0", "latestReleaseDate": "2021-06-23T09:54:05.245Z" @@ -62085,7 +62962,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.414, + "popularity": -1.424, "topicSearchString": "react-native tinder cards swipe deck" }, { @@ -62138,12 +63015,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-redux-alert", "npm": { - "downloads": 0, + "downloads": 6, "weekDownloads": 0, "size": 28650, "latestRelease": "1.0.5", @@ -62212,12 +63090,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-radio-buttons-group", "npm": { - "downloads": 73197, - "weekDownloads": 14222, + "downloads": 70876, + "weekDownloads": 13025, "size": 111234, "latestRelease": "3.1.0", "latestReleaseDate": "2024-03-12T02:00:41.256Z" @@ -62228,7 +63107,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.156, "topicSearchString": "radio-buttons simple-radio-buttons react-native radio-buttons-group radio-group component ios android form radio button" }, { @@ -62296,12 +63175,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-floating-label-input", "npm": { - "downloads": 22344, - "weekDownloads": 5316, + "downloads": 21264, + "weekDownloads": 4319, "size": 283978, "latestRelease": "1.4.3", "latestReleaseDate": "2023-11-04T19:29:59.841Z" @@ -62312,7 +63192,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.202, + "popularity": 0.173, "topicSearchString": "react-native component react mobile ios android input mask floating text-input textinput customizable placeholder floating-label-input floatinglabelinput floatinglabeltextfield floating-label label" }, { @@ -62359,24 +63239,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-safe-modules", "npm": { - "downloads": 230623, - "weekDownloads": 45500, + "downloads": 219618, + "weekDownloads": 45372, "size": 42522, "latestRelease": "1.0.3", "latestReleaseDate": "2021-04-27T11:34:40.955Z" }, - "score": 41, + "score": 32, "matchingScoreModifiers": [ - "Known", "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.832, + "popularity": -0.824, "topicSearchString": "react-native react native-modules code-push" }, { @@ -62403,10 +63283,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-status-bar", @@ -62429,12 +63309,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-status-bar", "npm": { - "downloads": 5078775, - "weekDownloads": 979093, + "downloads": 4962145, + "weekDownloads": 954939, "size": 24829, "latestRelease": "3.0.8", "latestReleaseDate": "2025-09-11T20:23:09.748Z" @@ -62508,13 +63389,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-styled-text", "npm": { - "downloads": 14496, - "weekDownloads": 3101, + "downloads": 13472, + "weekDownloads": 3252, "size": 26878, "latestRelease": "2.0.0", "latestReleaseDate": "2021-12-11T12:35:19.340Z" @@ -62524,7 +63406,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.568, + "popularity": -0.545, "topicSearchString": "react-native text style format fonts color mixed html css nested" }, { @@ -62573,12 +63455,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-vector-image", "npm": { - "downloads": 5722, - "weekDownloads": 1329, + "downloads": 5229, + "weekDownloads": 1691, "size": 25937913, "latestRelease": "0.5.3", "latestReleaseDate": "2025-10-15T10:46:51.041Z" @@ -62589,7 +63472,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.197, + "popularity": 0.275, "topicSearchString": "react-native image svg vector component vector-drawable" }, { @@ -62641,12 +63524,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-auto-height-image", "npm": { - "downloads": 30095, - "weekDownloads": 5541, + "downloads": 28817, + "weekDownloads": 5401, "size": 26364, "latestRelease": "3.2.4", "latestReleaseDate": "2021-02-04T09:41:05.673Z" @@ -62657,7 +63541,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.159, "topicSearchString": "react-native image auto-height react images" }, { @@ -62749,12 +63633,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-big-list", "npm": { - "downloads": 14888, - "weekDownloads": 2953, + "downloads": 14048, + "weekDownloads": 2631, "size": 378632, "latestRelease": "1.6.4", "latestReleaseDate": "2025-10-08T13:42:54.767Z" @@ -62765,7 +63650,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.159, "topicSearchString": "big-list react react-native javascript ui-lib rn fast-list scroll-list large-list biglist fastlist scrolllist largelist fast scroll large bigdata big massive list performance virtualized-list infinite-scroll listview flatlist-alternative mobile-list ui-library ui component efficient-list memory-optimization recycler-view large-data-set dynamic-list custom-list expo android ios web" }, { @@ -62859,12 +63744,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-system-navigation-bar", "npm": { - "downloads": 51835, - "weekDownloads": 10026, + "downloads": 49498, + "weekDownloads": 9440, "size": 705089, "latestRelease": "2.6.4", "latestReleaseDate": "2024-02-01T18:15:34.541Z" @@ -62875,7 +63761,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.162, "topicSearchString": "react-native system-navigation-bar android navigation navigation-bar bar color bar-color navigation-bar-color hide show lean-back immersive stickyimmersive lowprofile barmode setbarmode light dark light-style dark-style status-bar-mode divider-color navigation-bar-divider-color contrast-enforced navigation-bar-contrast-enforced full-screen setfitssystemwindows fitssystemwindows decorfitssystemwindows setdecorfitssystemwindows navigation-hide navigation-show stiky-immersive light-navigation-bar low-profile navigation-color" }, { @@ -62930,12 +63816,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-figma-squircle", "npm": { - "downloads": 9002, - "weekDownloads": 1566, + "downloads": 8557, + "weekDownloads": 2393, "size": 31148, "latestRelease": "0.4.0", "latestReleaseDate": "2025-03-04T08:27:56.500Z" @@ -62946,7 +63833,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.238, "topicSearchString": "squircle react react-native figma expo" }, { @@ -62996,12 +63883,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-shader", "npm": { - "downloads": 6, + "downloads": 14, "weekDownloads": 0, "size": 491464, "latestRelease": "0.2.0", @@ -63082,12 +63970,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-hole-view", "npm": { - "downloads": 22744, - "weekDownloads": 4123, + "downloads": 22068, + "weekDownloads": 4363, "size": 1581144, "latestRelease": "3.0.1", "latestReleaseDate": "2025-05-08T16:19:51.561Z" @@ -63097,7 +63986,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.168, "topicSearchString": "react-native react-component component react mobile ios android ui vector retina hole mask tutorial overlay tint animated click-through view" }, { @@ -63153,11 +64042,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2318, - "weekDownloads": 421, + "downloads": 2395, + "weekDownloads": 406, "size": 69256, "latestRelease": "0.4.2", "latestReleaseDate": "2025-07-07T14:10:29.647Z" @@ -63166,7 +64056,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.096, + "popularity": -0.106, "topicSearchString": "svg icons react react-native expo" }, { @@ -63193,7 +64083,7 @@ "updatedAt": "2025-06-20T12:04:51Z", "createdAt": "2021-05-11T22:58:24Z", "pushedAt": "2025-06-20T12:04:51Z", - "forks": 42, + "forks": 43, "issues": 16, "subscribers": 3, "stars": 452, @@ -63222,12 +64112,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-mask-text", "npm": { - "downloads": 104292, - "weekDownloads": 17068, + "downloads": 101786, + "weekDownloads": 16842, "size": 153895, "latestRelease": "0.15.0", "latestReleaseDate": "2025-06-20T12:06:01.910Z" @@ -63237,7 +64128,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.139, + "popularity": 0.141, "topicSearchString": "react react-native input mask expo text-input" }, { @@ -63277,12 +64168,13 @@ }, "hasTypes": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-progress-wheel", "npm": { - "downloads": 6233, - "weekDownloads": 1038, + "downloads": 6151, + "weekDownloads": 1168, "size": 16433, "latestRelease": "2.1.0", "latestReleaseDate": "2023-10-22T10:29:34.009Z" @@ -63293,7 +64185,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.161, "topicSearchString": "" }, { @@ -63352,12 +64244,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-avoid-softinput", "npm": { - "downloads": 128304, - "weekDownloads": 18969, + "downloads": 122189, + "weekDownloads": 26696, "size": 236624, "latestRelease": "8.0.2", "latestReleaseDate": "2025-10-02T16:59:25.192Z" @@ -63368,7 +64261,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.126, + "popularity": 0.186, "topicSearchString": "react-native soft-input keyboard avoid-soft-input avoid-keyboard ios android" }, { @@ -63420,13 +64313,14 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "unmaintained": true, "npmPkg": "react-native-web-hooks", "npm": { - "downloads": 84022, - "weekDownloads": 15778, + "downloads": 79057, + "weekDownloads": 15424, "size": 39340, "latestRelease": "3.0.2", "latestReleaseDate": "2021-12-13T21:22:43.724Z" @@ -63437,7 +64331,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.584, "topicSearchString": "expo web utils react-native css-in-js react hooks ssr" }, { @@ -63496,12 +64390,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 659, - "weekDownloads": 115, + "downloads": 932, + "weekDownloads": 117, "size": 11323947, "latestRelease": "5.0.2", "latestReleaseDate": "2022-08-06T08:29:14.013Z" @@ -63512,7 +64407,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.352, + "popularity": -1.393, "topicSearchString": "react-native alipay uiwjs uiw 支付宝 ios android reactjs" }, { @@ -63567,12 +64462,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-get-location", "npm": { - "downloads": 42711, - "weekDownloads": 9834, + "downloads": 40313, + "weekDownloads": 8982, "size": 91208, "latestRelease": "6.0.0", "latestReleaseDate": "2025-09-22T20:53:38.393Z" @@ -63583,7 +64479,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.196, + "popularity": 0.189, "topicSearchString": "react-native android ios geolocation location gps hacktoberfest" }, { @@ -63615,7 +64511,7 @@ "forks": 592, "issues": 591, "subscribers": 104, - "stars": 5948, + "stars": 5947, "dependencies": 6 }, "name": "realm", @@ -63653,12 +64549,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "realm", "npm": { - "downloads": 203952, - "weekDownloads": 37146, + "downloads": 196964, + "weekDownloads": 35050, "size": 678086505, "latestRelease": "20.2.0", "latestReleaseDate": "2025-08-11T17:17:46.164Z" @@ -63671,7 +64568,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.151, "topicSearchString": "database db storage react react-native persistence local-storage localstorage sqlite async-storage asyncstorage rocksdb leveldb realm mongodb offline-first offlinefirst localfirst local-first" }, { @@ -63729,12 +64626,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 9599, - "weekDownloads": 1939, + "downloads": 9489, + "weekDownloads": 1927, "size": 125174, "latestRelease": "3.1.0", "latestReleaseDate": "2023-09-07T05:44:25.303Z" @@ -63745,7 +64643,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.578, + "popularity": -0.577, "topicSearchString": "react-native ios android image-cache cache file-system-image-cache" }, { @@ -63802,13 +64700,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-smooth-picker", "npm": { - "downloads": 2005, - "weekDownloads": 317, + "downloads": 2050, + "weekDownloads": 261, "size": 22601, "latestRelease": "1.1.5", "latestReleaseDate": "2021-07-03T14:12:50.128Z" @@ -63819,7 +64718,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.615, + "popularity": -0.642, "topicSearchString": "react react-native picker select react-component ui form" }, { @@ -63888,13 +64787,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-version", "npm": { - "downloads": 151773, - "weekDownloads": 27826, + "downloads": 146357, + "weekDownloads": 26786, "size": 30996, "latestRelease": "4.0.0", "latestReleaseDate": "2020-03-04T22:21:32.164Z" @@ -63952,13 +64852,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-events", "npm": { - "downloads": 1321, - "weekDownloads": 108, + "downloads": 1393, + "weekDownloads": 96, "size": 59703, "latestRelease": "1.0.21", "latestReleaseDate": "2022-01-17T23:18:14.119Z" @@ -63968,7 +64869,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.68, + "popularity": -0.691, "topicSearchString": "react-native event events eventemitter" }, { @@ -64033,12 +64934,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 1277, - "weekDownloads": 288, + "downloads": 1291, + "weekDownloads": 212, "size": 71924, "latestRelease": "1.0.0", "latestReleaseDate": "2023-04-05T11:30:56.273Z" @@ -64048,7 +64950,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.558, + "popularity": -0.61, "topicSearchString": "loading loading-image progressive lazy lazy-load fast-image image progressive-image progressive-fast-image freakycoder kuray react react-native javascript ui-lib rn mobile-app mobile" }, { @@ -64090,13 +64992,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-cache", "npm": { - "downloads": 22626, - "weekDownloads": 3745, + "downloads": 22303, + "weekDownloads": 3721, "size": 35704, "latestRelease": "2.0.3", "latestReleaseDate": "2022-12-30T19:55:16.337Z" @@ -64107,7 +65010,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.609, + "popularity": -0.608, "topicSearchString": "" }, { @@ -64163,12 +65066,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 3159680, - "weekDownloads": 609414, + "downloads": 3027966, + "weekDownloads": 585526, "size": 94278, "latestRelease": "1.0.14", "latestReleaseDate": "2022-06-23T20:49:41.147Z" @@ -64245,13 +65149,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-exception-handler", "npm": { - "downloads": 212625, - "weekDownloads": 42048, + "downloads": 201610, + "weekDownloads": 39431, "size": 55914, "latestRelease": "2.10.10", "latestReleaseDate": "2021-03-23T16:53:46.116Z" @@ -64263,7 +65168,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, + "popularity": -0.584, "topicSearchString": "modal react native exception handler red screen production ios android bug capture exception-handler react-native error openlibrary" }, { @@ -64327,11 +65232,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 10426, - "weekDownloads": 1212, + "downloads": 11281, + "weekDownloads": 2087, "size": 194568752, "latestRelease": "2.43.6", "latestReleaseDate": "2025-10-09T04:40:10.070Z" @@ -64344,7 +65250,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.099, + "popularity": 0.157, "topicSearchString": "viroreact viro-community android ios blacklivesmatter nowar augmented-reality expo react-native ar" }, { @@ -64399,12 +65305,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-bundle-visualizer", "npm": { - "downloads": 159840, - "weekDownloads": 30921, + "downloads": 152107, + "weekDownloads": 28983, "size": 12162, "latestRelease": "3.1.3", "latestReleaseDate": "2023-02-13T14:58:08.669Z" @@ -64416,7 +65323,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.162, "topicSearchString": "bundle-visualizer bundle-size react-native bundle visualizer size expo" }, { @@ -64471,13 +65378,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-feedback-reporter", "npm": { - "downloads": 34, - "weekDownloads": 15, + "downloads": 181, + "weekDownloads": 11, "size": 1780528, "latestRelease": "0.4.16", "latestReleaseDate": "2021-11-16T18:45:36.673Z" @@ -64487,7 +65395,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.125, + "popularity": -1.448, "topicSearchString": "react-native ios android feedback reporter" }, { @@ -64515,13 +65423,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-10-15T17:49:39Z", + "updatedAt": "2025-10-17T14:43:55Z", "createdAt": "2016-10-27T08:31:38Z", - "pushedAt": "2025-10-15T17:49:39Z", - "forks": 1013, - "issues": 49, + "pushedAt": "2025-10-17T14:43:55Z", + "forks": 1012, + "issues": 47, "subscribers": 63, - "stars": 6557, + "stars": 6558, "dependencies": 3 }, "name": "react-native-gesture-handler", @@ -64540,12 +65448,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-gesture-handler", "npm": { - "downloads": 8167750, - "weekDownloads": 1561385, + "downloads": 7930504, + "weekDownloads": 1549674, "size": 3259588, "latestRelease": "2.28.0", "latestReleaseDate": "2025-08-06T14:42:37.317Z" @@ -64558,7 +65467,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.166, "topicSearchString": "" }, { @@ -64619,13 +65528,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-responsive-dimensions", "npm": { - "downloads": 29860, - "weekDownloads": 5891, + "downloads": 29235, + "weekDownloads": 5770, "size": 47696, "latestRelease": "3.1.1", "latestReleaseDate": "2020-03-26T02:59:06.008Z" @@ -64683,12 +65593,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-job-queue", "npm": { - "downloads": 11371, - "weekDownloads": 2226, + "downloads": 11100, + "weekDownloads": 2511, "size": 291556, "latestRelease": "0.5.3", "latestReleaseDate": "2025-06-04T20:31:56.765Z" @@ -64699,7 +65610,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.192, "topicSearchString": "react-native" }, { @@ -64736,12 +65647,13 @@ "license": null, "hasTypes": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-quick-sqlite", "npm": { - "downloads": 18287, - "weekDownloads": 3675, + "downloads": 18544, + "weekDownloads": 3498, "size": 9358763, "latestRelease": "8.2.7", "latestReleaseDate": "2024-11-26T16:44:39.009Z" @@ -64752,7 +65664,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.829, + "popularity": -0.84, "topicSearchString": "" }, { @@ -64810,13 +65722,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-relative-popup", "npm": { - "downloads": 63, - "weekDownloads": 4, + "downloads": 87, + "weekDownloads": 2, "size": 17776984, "latestRelease": "0.1.7", "latestReleaseDate": "2021-09-10T13:04:15.905Z" @@ -64826,7 +65739,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.693, + "popularity": -1.73, "topicSearchString": "react-native ios android popup react javascript" }, { @@ -64853,7 +65766,7 @@ "forks": 166, "issues": 80, "subscribers": 42, - "stars": 1394, + "stars": 1393, "dependencies": 16 }, "name": "@fluentui/react-native", @@ -64871,11 +65784,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2054, - "weekDownloads": 473, + "downloads": 1837, + "weekDownloads": 318, "size": 982274, "latestRelease": "0.42.29", "latestReleaseDate": "2025-09-26T21:32:35.618Z" @@ -64888,7 +65802,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.196, + "popularity": 0.147, "topicSearchString": "" }, { @@ -64949,12 +65863,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-emoji-keyboard", "npm": { - "downloads": 132737, - "weekDownloads": 31747, + "downloads": 122800, + "weekDownloads": 25414, "size": 1327141, "latestRelease": "1.7.0", "latestReleaseDate": "2024-05-09T15:51:40.065Z" @@ -64965,7 +65880,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.203, + "popularity": 0.176, "topicSearchString": "react-native ios android typescript emoji-picker emoji emoji-keyboard hacktoberfest hacktoberfest2021 hacktoberfest2022" }, { @@ -65022,13 +65937,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-encrypted-storage", "npm": { - "downloads": 186612, - "weekDownloads": 34260, + "downloads": 180312, + "weekDownloads": 35042, "size": 151222, "latestRelease": "4.0.3", "latestReleaseDate": "2022-11-03T22:39:16.710Z" @@ -65039,7 +65955,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.585, "topicSearchString": "react-native ios android async-storage keychain sharedpreferences encryption security kotlin swift" }, { @@ -65097,12 +66013,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-curved-bottom-bar", "npm": { - "downloads": 12841, - "weekDownloads": 2879, + "downloads": 12548, + "weekDownloads": 2578, "size": 255669, "latestRelease": "3.5.1", "latestReleaseDate": "2025-04-24T05:40:37.688Z" @@ -65112,7 +66029,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.191, + "popularity": 0.175, "topicSearchString": "react-native elements components curved bottom tab-bar tabbar" }, { @@ -65169,13 +66086,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-image-viewing", "npm": { - "downloads": 180402, - "weekDownloads": 44703, + "downloads": 163092, + "weekDownloads": 35448, "size": 71366, "latestRelease": "0.2.2", "latestReleaseDate": "2022-04-18T19:38:20.779Z" @@ -65188,7 +66106,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.539, + "popularity": -0.565, "topicSearchString": "react react-native image gallery image-gallery image-viewer pinch-to-zoom" }, { @@ -65250,12 +66168,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "animation-wrapper-view", "npm": { - "downloads": 32, - "weekDownloads": 8, + "downloads": 63, + "weekDownloads": 9, "size": 127241, "latestRelease": "1.1.2-TEST.1", "latestReleaseDate": "2022-08-02T09:51:55.528Z" @@ -65265,7 +66184,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.521, + "popularity": -0.621, "topicSearchString": "react-components animation declarative animated react-native react reactjs library react-component" }, { @@ -65298,7 +66217,7 @@ "forks": 26, "issues": 11, "subscribers": 6, - "stars": 336, + "stars": 335, "dependencies": 0 }, "name": "@crowdlinker/react-native-pager", @@ -65324,12 +66243,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 1168, - "weekDownloads": 61, + "downloads": 1299, + "weekDownloads": 25, "size": 219093, "latestRelease": "0.2.3", "latestReleaseDate": "2020-03-27T18:54:45.283Z" @@ -65340,7 +66260,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.705, + "popularity": -0.734, "topicSearchString": "react react-native pager react-pager tabs react-tabs reactjs" }, { @@ -65398,12 +66318,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "jail-monkey", "npm": { - "downloads": 330679, - "weekDownloads": 63190, + "downloads": 312746, + "weekDownloads": 58972, "size": 172215, "latestRelease": "2.8.4", "latestReleaseDate": "2025-07-01T14:44:02.840Z" @@ -65415,7 +66336,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.16, "topicSearchString": "react-native native jail break jail-break ios android mock-locations detect react trust jailbreak" }, { @@ -65475,13 +66396,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-timeline-flatlist", "npm": { - "downloads": 24407, - "weekDownloads": 4667, + "downloads": 23524, + "weekDownloads": 4233, "size": 38497, "latestRelease": "0.8.0", "latestReleaseDate": "2022-01-18T21:04:11.230Z" @@ -65492,7 +66414,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.597, "topicSearchString": "react-native timeline flatlist schedule component ios android flatlist-based cross-platform" }, { @@ -65547,12 +66469,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-js-tableview", "npm": { - "downloads": 128, - "weekDownloads": 28, + "downloads": 266, + "weekDownloads": 54, "size": 56295, "latestRelease": "2.6.1", "latestReleaseDate": "2024-08-09T15:32:49.723Z" @@ -65562,7 +66485,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.563, + "popularity": -0.576, "topicSearchString": "react-native tableview uitableview ios android" }, { @@ -65624,11 +66547,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 190, - "weekDownloads": 23, + "downloads": 703, + "weekDownloads": 28, "size": 24945, "latestRelease": "2.5.4", "latestReleaseDate": "2023-08-07T06:28:30.204Z" @@ -65638,7 +66562,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.895, + "popularity": -0.966, "topicSearchString": "suggestions react-native component email chip tags input mobile ios android ui javascript native" }, { @@ -65696,11 +66620,12 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 64587, - "weekDownloads": 21733, + "downloads": 53131, + "weekDownloads": 13504, "size": 404592, "latestRelease": "5.0.1", "latestReleaseDate": "2025-09-26T15:12:42.036Z" @@ -65711,7 +66636,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.536, + "popularity": 0.216, "topicSearchString": "react-native ios android giphy sdk gifs giphy-sdks" }, { @@ -65784,12 +66709,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-shadow-2", "npm": { - "downloads": 162394, - "weekDownloads": 32008, + "downloads": 157009, + "weekDownloads": 29671, "size": 61089, "latestRelease": "7.1.2", "latestReleaseDate": "2025-07-18T15:05:01.347Z" @@ -65800,7 +66726,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.161, "topicSearchString": "shadow shadows react-native native gradient ios android react cross-platform automatic typescript cross blur shadow-2 native-shadow svg borders radiuses new improved" }, { @@ -65859,13 +66785,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-turbolinks", "npm": { - "downloads": 83, - "weekDownloads": 4, + "downloads": 1669, + "weekDownloads": 35, "size": 4079675, "latestRelease": "2.2.9", "latestReleaseDate": "2020-12-29T03:03:00.464Z" @@ -65876,7 +66803,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.458, + "popularity": -0.732, "topicSearchString": "react-native react native turbolinks pwa rails android ios webview hybrid" }, { @@ -65936,12 +66863,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "vision-camera-image-labeler", "npm": { - "downloads": 125, - "weekDownloads": 14, + "downloads": 129, + "weekDownloads": 18, "size": 48983, "latestRelease": "0.1.6", "latestReleaseDate": "2021-08-13T08:57:12.339Z" @@ -65950,7 +66878,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.653, + "popularity": -0.63, "topicSearchString": "react-native ios android image-labeling vision-camera library vision camera ml ai frame-processor-plugin mlkit-vision" }, { @@ -65977,7 +66905,7 @@ "forks": 11, "issues": 1, "subscribers": 1, - "stars": 26, + "stars": 28, "dependencies": 0 }, "name": "react-native-barcode-creator", @@ -66004,12 +66932,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-barcode-creator", "npm": { - "downloads": 34176, - "weekDownloads": 5498, + "downloads": 35156, + "weekDownloads": 5177, "size": 52780, "latestRelease": "0.1.8", "latestReleaseDate": "2025-01-04T15:49:00.776Z" @@ -66019,7 +66948,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.137, + "popularity": 0.125, "topicSearchString": "react-native ios android barcode barcode-generator qrcode-generator native" }, { @@ -66070,11 +66999,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 92, + "downloads": 101, "weekDownloads": 0, "size": 11425, "latestRelease": "1.0.0", @@ -66141,12 +67071,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-animateable-text", "npm": { - "downloads": 56929, - "weekDownloads": 20509, + "downloads": 46227, + "weekDownloads": 12544, "size": 190393, "latestRelease": "0.16.0", "latestReleaseDate": "2025-07-27T13:31:13.169Z" @@ -66155,7 +67086,7 @@ "matchingScoreModifiers": [ "Known" ], - "popularity": 0.556, + "popularity": 0.231, "topicSearchString": "react-native ios android reanimated shared-values animated text reanimated2" }, { @@ -66205,13 +67136,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-window-view", "npm": { - "downloads": 1647, - "weekDownloads": 348, + "downloads": 1531, + "weekDownloads": 317, "size": 23280, "latestRelease": "0.3.0", "latestReleaseDate": "2021-04-28T10:01:41.022Z" @@ -66221,7 +67153,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.82, + "popularity": -0.824, "topicSearchString": "react-native ios android" }, { @@ -66275,13 +67207,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-receive-sharing-intent", "npm": { - "downloads": 8329, - "weekDownloads": 1522, + "downloads": 8014, + "weekDownloads": 1478, "size": 225951, "latestRelease": "2.0.0", "latestReleaseDate": "2021-05-17T17:42:36.848Z" @@ -66292,7 +67225,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, + "popularity": -0.593, "topicSearchString": "react-native ios android" }, { @@ -66311,9 +67244,9 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T09:46:57Z", + "updatedAt": "2025-10-16T10:29:36Z", "createdAt": "2019-12-18T13:25:42Z", - "pushedAt": "2025-10-16T09:46:57Z", + "pushedAt": "2025-10-16T10:29:36Z", "forks": 50, "issues": 30, "subscribers": 16, @@ -66341,11 +67274,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npm": { - "downloads": 611875, - "weekDownloads": 127340, + "downloads": 574001, + "weekDownloads": 114023, "size": 2240344, "latestRelease": "2.12.3", "latestReleaseDate": "2025-10-14T16:07:36.704Z" @@ -66356,7 +67290,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.169, "topicSearchString": "datadog react-native ios android" }, { @@ -66419,12 +67353,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "pagescrollview", "npm": { - "downloads": 165, - "weekDownloads": 10, + "downloads": 225, + "weekDownloads": 7, "size": 9015, "latestRelease": "2.2.0", "latestReleaseDate": "2022-06-18T19:50:20.985Z" @@ -66434,7 +67369,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.947, + "popularity": -0.973, "topicSearchString": "pagescrollview page scrollview react-native scroll view list expo flatlist flex-grow flex fix typescript" }, { @@ -66485,13 +67420,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-system-bars", "npm": { - "downloads": 1947, - "weekDownloads": 578, + "downloads": 1593, + "weekDownloads": 310, "size": 994253, "latestRelease": "0.4.0", "latestReleaseDate": "2022-08-08T11:51:19.011Z" @@ -66501,7 +67437,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.498, + "popularity": -0.584, "topicSearchString": "react-native android status-bar navigation-bar system-ui-visibility" }, { @@ -66552,13 +67488,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-detector", "npm": { - "downloads": 17595, - "weekDownloads": 3625, + "downloads": 16671, + "weekDownloads": 3271, "size": 1356124, "latestRelease": "0.2.3", "latestReleaseDate": "2022-08-20T20:03:53.011Z" @@ -66569,7 +67506,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.575, + "popularity": -0.583, "topicSearchString": "react-native ios android screenshot detector" }, { @@ -66603,7 +67540,7 @@ "forks": 36, "issues": 19, "subscribers": 6, - "stars": 241, + "stars": 242, "dependencies": 3 }, "name": "@react-native-material/core", @@ -66627,11 +67564,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 13339, - "weekDownloads": 2125, + "downloads": 13244, + "weekDownloads": 2290, "size": 775667, "latestRelease": "1.3.7", "latestReleaseDate": "2022-03-15T12:17:57.416Z" @@ -66642,7 +67580,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.615, + "popularity": -0.603, "topicSearchString": "react-native ios android material-design" }, { @@ -66690,12 +67628,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 52376, - "weekDownloads": 9500, + "downloads": 47996, + "weekDownloads": 9642, "size": 8413, "latestRelease": "0.6.7", "latestReleaseDate": "2021-01-18T11:52:11.581Z" @@ -66705,7 +67644,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.579, "topicSearchString": "react-native generator barcode generating-barcodes" }, { @@ -66766,13 +67705,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-whirlwind", "npm": { - "downloads": 244, - "weekDownloads": 35, + "downloads": 271, + "weekDownloads": 44, "size": 653996, "latestRelease": "0.3.0", "latestReleaseDate": "2022-06-21T13:50:04.561Z" @@ -66782,7 +67722,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.377, + "popularity": -1.36, "topicSearchString": "react-native css styles stylesheet tailwind tailwindcss tachyon ios android react reactnative tachyons styled-components" }, { @@ -66842,13 +67782,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sectioned-multi-select", "npm": { - "downloads": 22622, - "weekDownloads": 4254, + "downloads": 23238, + "weekDownloads": 3924, "size": 3600424, "latestRelease": "0.10.0", "latestReleaseDate": "2023-05-11T03:17:04.505Z" @@ -66860,7 +67801,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.606, "topicSearchString": "select multiselect picker category react native reactnative" }, { @@ -66886,7 +67827,7 @@ "createdAt": "2021-05-28T10:34:48Z", "pushedAt": "2025-09-19T15:41:35Z", "forks": 123, - "issues": 41, + "issues": 42, "subscribers": 9, "stars": 1202, "dependencies": 0 @@ -66936,12 +67877,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-compressor", "npm": { - "downloads": 293202, - "weekDownloads": 56837, + "downloads": 280559, + "weekDownloads": 57202, "size": 488832, "latestRelease": "1.13.0", "latestReleaseDate": "2025-09-19T15:41:30.783Z" @@ -66953,7 +67895,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.173, "topicSearchString": "react-native ios android audio image compression video compress compress-images compress-videos compressor compress-audio whatsapp background nsurlsession uploader upload uploadservice downloader download thumbnail create-thumbnail video-metadata media bitrate exif metadata" }, { @@ -67017,13 +67959,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-phone-number-input", "npm": { - "downloads": 171884, - "weekDownloads": 31487, + "downloads": 165048, + "weekDownloads": 32836, "size": 23991, "latestRelease": "2.1.0", "latestReleaseDate": "2021-05-05T16:29:14.899Z" @@ -67036,7 +67979,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.581, "topicSearchString": "react-native phone telephone phone-input input tel input-text international component ios android phone-number reactjs react" }, { @@ -67095,12 +68038,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gesture-flip-card", "npm": { - "downloads": 633, - "weekDownloads": 133, + "downloads": 573, + "weekDownloads": 75, "size": 13684, "latestRelease": "1.1.0", "latestReleaseDate": "2024-11-10T08:16:49.484Z" @@ -67110,7 +68054,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.57, + "popularity": -0.638, "topicSearchString": "react-native flip-card card-flip card flip gesture gesture-flip flip-animation panresponder" }, { @@ -67170,13 +68114,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-month-year-picker", "npm": { - "downloads": 35354, - "weekDownloads": 5916, + "downloads": 34222, + "weekDownloads": 5789, "size": 62414, "latestRelease": "1.9.0", "latestReleaseDate": "2022-11-28T21:48:45.934Z" @@ -67187,7 +68132,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, + "popularity": -0.606, "topicSearchString": "react-native month-picker month-year-picker ios android react java objective-c" }, { @@ -67219,7 +68164,7 @@ "forks": 97, "issues": 16, "subscribers": 6, - "stars": 398, + "stars": 399, "dependencies": 5 }, "name": "@flyerhq/react-native-chat-ui", @@ -67245,12 +68190,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 3566, - "weekDownloads": 682, + "downloads": 3479, + "weekDownloads": 715, "size": 202821, "latestRelease": "1.4.3", "latestReleaseDate": "2021-10-24T14:55:55.385Z" @@ -67261,7 +68207,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.575, "topicSearchString": "chat ui react-native component ios android typescript" }, { @@ -67317,12 +68263,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 87, - "weekDownloads": 10, + "downloads": 88, + "weekDownloads": 12, "size": 61048, "latestRelease": "1.4.2", "latestReleaseDate": "2021-10-24T15:16:11.275Z" @@ -67332,7 +68279,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, + "popularity": -1.38, "topicSearchString": "chat firebase react-native ios android typescript" }, { @@ -67391,12 +68338,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 18461, - "weekDownloads": 3471, + "downloads": 18259, + "weekDownloads": 3235, "size": 38070, "latestRelease": "1.6.0", "latestReleaseDate": "2022-01-27T21:33:26.271Z" @@ -67407,7 +68355,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.599, "topicSearchString": "link url preview react-component react-native ios android typescript" }, { @@ -67467,12 +68415,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 5574, - "weekDownloads": 1180, + "downloads": 5300, + "weekDownloads": 1035, "size": 27094, "latestRelease": "2.4.0", "latestReleaseDate": "2022-01-27T20:40:42.829Z" @@ -67483,7 +68432,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.57, + "popularity": -0.584, "topicSearchString": "keyboard-accessory keyboard sticky react-component interactive react-native ios android typescript" }, { @@ -67536,12 +68485,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 4913, - "weekDownloads": 894, + "downloads": 4465, + "weekDownloads": 807, "size": 7966, "latestRelease": "2.3.0", "latestReleaseDate": "2022-01-26T21:26:02.744Z" @@ -67551,7 +68501,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, + "popularity": -0.596, "topicSearchString": "android react-native kotlin absolute-path intent resolver" }, { @@ -67611,11 +68561,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npm": { - "downloads": 4153, - "weekDownloads": 735, + "downloads": 4006, + "weekDownloads": 767, "size": 508779, "latestRelease": "2.2.4", "latestReleaseDate": "2025-08-02T14:21:39.861Z" @@ -67626,7 +68577,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.163, "topicSearchString": "react-native ios android image-picker native-module picker swift video multi-selector photo" }, { @@ -67674,11 +68625,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4927, - "weekDownloads": 997, + "downloads": 4777, + "weekDownloads": 872, "size": 65912, "latestRelease": "0.3.3", "latestReleaseDate": "2024-09-11T15:43:41.070Z" @@ -67688,7 +68640,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.155, "topicSearchString": "react react-native web web image" }, { @@ -67757,13 +68709,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-neomorph-shadows", "npm": { - "downloads": 2763, - "weekDownloads": 389, + "downloads": 2891, + "weekDownloads": 430, "size": 33081, "latestRelease": "1.1.2", "latestReleaseDate": "2020-06-17T06:31:25.630Z" @@ -67775,7 +68728,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.63, + "popularity": -0.624, "topicSearchString": "react-native react-component component react mobile ios android ui neomorph neomorphism neumorphism skeuomorphic skeuomorphism shadowbox shadow shadow-view shadowview neomorphism-view inner-shadow shadow-svg" }, { @@ -67823,13 +68776,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-idata-scanner", "npm": { - "downloads": 31, - "weekDownloads": 14, + "downloads": 32, + "weekDownloads": 7, "size": 383361, "latestRelease": "1.0.0", "latestReleaseDate": "2021-09-28T06:23:00.432Z" @@ -67839,7 +68793,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, + "popularity": -1.55, "topicSearchString": "react-native" }, { @@ -67886,13 +68840,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-headphone-detection", "npm": { - "downloads": 7662, - "weekDownloads": 1274, + "downloads": 7248, + "weekDownloads": 1461, "size": 31225, "latestRelease": "1.3.0", "latestReleaseDate": "2020-10-01T11:22:17.657Z" @@ -67902,7 +68857,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.609, + "popularity": -0.579, "topicSearchString": "react-native headphones audio-jack bluetooth" }, { @@ -67930,7 +68885,7 @@ "forks": 617, "issues": 211, "subscribers": 50, - "stars": 2491, + "stars": 2492, "dependencies": 2 }, "name": "react-native-charts-wrapper", @@ -67955,12 +68910,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-charts-wrapper", "npm": { - "downloads": 29055, - "weekDownloads": 6422, + "downloads": 28050, + "weekDownloads": 6239, "size": 359518, "latestRelease": "0.6.0", "latestReleaseDate": "2023-10-28T07:10:38.440Z" @@ -67973,7 +68929,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.188, + "popularity": 0.189, "topicSearchString": "react-native chart android mpandroidchart ios charts" }, { @@ -68028,13 +68984,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-awesome-alerts", "npm": { - "downloads": 12550, - "weekDownloads": 2682, + "downloads": 12059, + "weekDownloads": 2305, "size": 24339, "latestRelease": "2.0.0", "latestReleaseDate": "2022-06-01T20:58:31.959Z" @@ -68045,7 +69002,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.568, + "popularity": -0.588, "topicSearchString": "react-native alerts dialog ios android alert popup" }, { @@ -68111,12 +69068,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-swipeable-list", "npm": { - "downloads": 27675, - "weekDownloads": 6208, + "downloads": 25687, + "weekDownloads": 5397, "size": 21793, "latestRelease": "0.1.2", "latestReleaseDate": "2022-03-27T15:12:24.385Z" @@ -68126,7 +69084,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.191, + "popularity": 0.179, "topicSearchString": "react-native flatlist swipeable ux list gesture animations performant react android component ios web" }, { @@ -68178,7 +69136,8 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-jsi-contacts", @@ -68249,13 +69208,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-openalpr", "npm": { - "downloads": 823, - "weekDownloads": 201, + "downloads": 1009, + "weekDownloads": 142, "size": 480189297, "latestRelease": "2.2.0", "latestReleaseDate": "2021-05-04T09:55:40.405Z" @@ -68267,7 +69227,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.292, + "popularity": -0.63, "topicSearchString": "react-native openalpr camera camera-component opencv" }, { @@ -68325,13 +69285,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-multibar", "npm": { - "downloads": 46, - "weekDownloads": 7, + "downloads": 182, + "weekDownloads": 9, "size": 2551676, "latestRelease": "1.1.5", "latestReleaseDate": "2021-03-17T09:37:35.348Z" @@ -68342,7 +69303,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.36, + "popularity": -1.457, "topicSearchString": "react react-native navigation bar bottom-bar tab-bar multi-bar tabbar" }, { @@ -68407,12 +69368,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ui-buttons", "npm": { - "downloads": 24, + "downloads": 22, "weekDownloads": 2, "size": 15236, "latestRelease": "2.1.1", @@ -68484,12 +69446,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 31190, - "weekDownloads": 6250, + "downloads": 29539, + "weekDownloads": 5903, "size": 76622, "latestRelease": "0.14.0", "latestReleaseDate": "2022-08-15T18:15:22.698Z" @@ -68554,11 +69517,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2191, - "weekDownloads": 548, + "downloads": 2288, + "weekDownloads": 480, "size": 141717, "latestRelease": "0.13.1", "latestReleaseDate": "2024-02-04T20:48:08.763Z" @@ -68568,7 +69532,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.213, + "popularity": 0.178, "topicSearchString": "view-android-ios-ui-screenshot-snapshot-testing react-native testing ui view screenshot" }, { @@ -68594,7 +69558,7 @@ "forks": 33, "issues": 17, "subscribers": 15, - "stars": 1623, + "stars": 1624, "dependencies": 0 }, "name": "react-freeze", @@ -68615,12 +69579,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-freeze", "npm": { - "downloads": 7342042, - "weekDownloads": 1393034, + "downloads": 6834211, + "weekDownloads": 1386520, "size": 17179, "latestRelease": "1.0.4", "latestReleaseDate": "2024-02-28T22:44:42.518Z" @@ -68633,7 +69598,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.172, "topicSearchString": "react freeze" }, { @@ -68659,7 +69624,7 @@ "forks": 3, "issues": 1, "subscribers": 6, - "stars": 251, + "stars": 252, "dependencies": 2 }, "name": "react-native-native-runtime", @@ -68682,7 +69647,8 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-native-runtime", "npm": { @@ -68752,13 +69718,14 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-mlkit-ocr", "npm": { - "downloads": 15811, - "weekDownloads": 3037, + "downloads": 15170, + "weekDownloads": 3266, "size": 51794, "latestRelease": "0.3.0", "latestReleaseDate": "2023-04-13T03:57:44.266Z" @@ -68769,7 +69736,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.567, "topicSearchString": "mlkit ocr text-recognition react-native ios android" }, { @@ -68825,11 +69792,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 315176, - "weekDownloads": 60333, + "downloads": 300577, + "weekDownloads": 60794, "size": 101483, "latestRelease": "2.6.0", "latestReleaseDate": "2024-03-24T23:06:05.847Z" @@ -68840,7 +69808,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.172, "topicSearchString": "react-component react-native ios android slider javascript web" }, { @@ -68888,13 +69856,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-shareplay", "npm": { - "downloads": 104, - "weekDownloads": 21, + "downloads": 109, + "weekDownloads": 2, "size": 33600, "latestRelease": "0.9.0", "latestReleaseDate": "2021-11-10T01:25:16.318Z" @@ -68904,7 +69873,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.325, + "popularity": -1.484, "topicSearchString": "react-native ios" }, { @@ -68952,12 +69921,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-shake", "npm": { - "downloads": 101688, - "weekDownloads": 19427, + "downloads": 96654, + "weekDownloads": 19853, "size": 47705, "latestRelease": "6.8.1", "latestReleaseDate": "2025-10-15T09:21:33.894Z" @@ -68968,7 +69938,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.175, "topicSearchString": "react-native ios android" }, { @@ -69016,13 +69986,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-home-indicator", "npm": { - "downloads": 2526, - "weekDownloads": 415, + "downloads": 2463, + "weekDownloads": 406, "size": 17161, "latestRelease": "0.2.10", "latestReleaseDate": "2022-09-20T12:51:14.777Z" @@ -69084,12 +70055,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-email-link", "npm": { - "downloads": 285766, - "weekDownloads": 65533, + "downloads": 265710, + "weekDownloads": 53980, "size": 43434, "latestRelease": "1.16.1", "latestReleaseDate": "2024-06-29T13:32:37.003Z" @@ -69100,7 +70072,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.195, + "popularity": 0.173, "topicSearchString": "react-native react-component email link linking react ios android" }, { @@ -69132,7 +70104,7 @@ "forks": 193, "issues": 138, "subscribers": 3, - "stars": 1268, + "stars": 1269, "dependencies": 1 }, "name": "react-native-element-dropdown", @@ -69164,12 +70136,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-element-dropdown", "npm": { - "downloads": 458951, - "weekDownloads": 98446, + "downloads": 433663, + "weekDownloads": 86746, "size": 358790, "latestRelease": "2.12.4", "latestReleaseDate": "2025-01-11T03:16:34.351Z" @@ -69182,7 +70155,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.182, + "popularity": 0.17, "topicSearchString": "react-native elements components material dropdown lazy-loading load-more menu multiselect picker select select-country" }, { @@ -69243,12 +70216,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 154, - "weekDownloads": 28, + "downloads": 145, + "weekDownloads": 22, "size": 293297, "latestRelease": "1.2.0", "latestReleaseDate": "2021-07-28T20:26:31.990Z" @@ -69260,7 +70234,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.344, + "popularity": -1.371, "topicSearchString": "onboarding paper paper-onboarding react-native ios android reanimated slider material ui redash" }, { @@ -69318,11 +70292,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1382, - "weekDownloads": 330, + "downloads": 1378, + "weekDownloads": 250, "size": 684037, "latestRelease": "2.3.0", "latestReleaseDate": "2024-10-18T13:59:10.773Z" @@ -69333,7 +70308,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.203, + "popularity": 0.154, "topicSearchString": "react-native react ios android select picker dropdown menu component" }, { @@ -69384,12 +70359,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-quick-base64", "npm": { - "downloads": 718251, - "weekDownloads": 129116, + "downloads": 694130, + "weekDownloads": 141528, "size": 42766, "latestRelease": "2.2.2", "latestReleaseDate": "2025-09-01T07:12:22.541Z" @@ -69400,7 +70376,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.173, "topicSearchString": "react-native ios android" }, { @@ -69457,13 +70433,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-cardscan", "npm": { - "downloads": 311, - "weekDownloads": 91, + "downloads": 838, + "weekDownloads": 119, "size": 5246634, "latestRelease": "2.0.0", "latestReleaseDate": "2021-10-04T22:29:31.113Z" @@ -69474,7 +70451,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.251, + "popularity": -1.379, "topicSearchString": "react-native card scan cardscan payment mobile android ios" }, { @@ -69525,13 +70502,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "vision-camera-code-scanner", "npm": { - "downloads": 26242, - "weekDownloads": 2599, + "downloads": 27447, + "weekDownloads": 4237, "size": 160020, "latestRelease": "0.2.0", "latestReleaseDate": "2022-04-01T12:40:01.176Z" @@ -69543,7 +70521,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.666, + "popularity": -0.619, "topicSearchString": "react-native ios android" }, { @@ -69598,11 +70576,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 388, - "weekDownloads": 33, + "downloads": 408, + "weekDownloads": 29, "size": 40178415, "latestRelease": "1.2.0", "latestReleaseDate": "2021-10-09T07:58:57.328Z" @@ -69612,7 +70591,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.677, + "popularity": -0.69, "topicSearchString": "react react-native native twitter signin social-signin authentication hacktoberfest" }, { @@ -69659,13 +70638,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-svg-app-icon", "npm": { - "downloads": 2588, - "weekDownloads": 471, + "downloads": 2546, + "weekDownloads": 523, "size": 50938, "latestRelease": "0.6.1", "latestReleaseDate": "2022-04-19T18:05:44.993Z" @@ -69675,7 +70655,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, + "popularity": -0.575, "topicSearchString": "react-native svg app-icon" }, { @@ -69730,13 +70710,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-bounceable", "npm": { - "downloads": 970, - "weekDownloads": 234, + "downloads": 1080, + "weekDownloads": 218, "size": 9110, "latestRelease": "1.2.0", "latestReleaseDate": "2022-08-29T13:45:05.747Z" @@ -69746,7 +70727,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.295, + "popularity": -0.578, "topicSearchString": "react react-native expo bounceable reanimated bounceable-component rn-bounceable web" }, { @@ -69800,12 +70781,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-checkbox-reanimated", "npm": { - "downloads": 9106, - "weekDownloads": 1737, + "downloads": 8618, + "weekDownloads": 1564, "size": 39288, "latestRelease": "0.1.2", "latestReleaseDate": "2025-04-04T00:29:14.276Z" @@ -69816,7 +70798,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.154, "topicSearchString": "react-native ios android ui" }, { @@ -69843,7 +70825,7 @@ "forks": 28, "issues": 3, "subscribers": 6, - "stars": 968, + "stars": 969, "dependencies": 0 }, "name": "react-native-edge-to-edge", @@ -69870,12 +70852,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-edge-to-edge", "npm": { - "downloads": 3060330, - "weekDownloads": 629220, + "downloads": 2920565, + "weekDownloads": 602963, "size": 120168, "latestRelease": "1.7.0", "latestReleaseDate": "2025-08-28T13:02:44.060Z" @@ -69935,13 +70918,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sha", "npm": { - "downloads": 4, - "weekDownloads": 3, + "downloads": 7, + "weekDownloads": 0, "size": 97336, "latestRelease": "0.1.6", "latestReleaseDate": "2021-11-26T02:17:35.028Z" @@ -70005,12 +70989,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-customizable-toast", "npm": { - "downloads": 579, - "weekDownloads": 132, + "downloads": 564, + "weekDownloads": 110, "size": 146642, "latestRelease": "0.2.1", "latestReleaseDate": "2023-08-13T13:33:44.971Z" @@ -70020,7 +71005,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.556, + "popularity": -0.583, "topicSearchString": "react-native ios android" }, { @@ -70078,13 +71063,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-lazy-index", "npm": { - "downloads": 7, - "weekDownloads": 3, + "downloads": 29, + "weekDownloads": 4, "size": 20906, "latestRelease": "2.1.4", "latestReleaseDate": "2021-12-06T07:33:09.910Z" @@ -70095,7 +71081,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.9, + "popularity": -1.367, "topicSearchString": "babel bundle codegen index.js inline lazy macro on-demand performance ram react react-native require ram-bundle lazy-loading" }, { @@ -70153,11 +71139,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 6870, - "weekDownloads": 1004, + "downloads": 6985, + "weekDownloads": 1392, "size": 24290, "latestRelease": "1.1.2", "latestReleaseDate": "2025-09-10T14:20:53.920Z" @@ -70167,7 +71154,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.124, + "popularity": 0.169, "topicSearchString": "react-native ios android react marquee auto-scrolling auto-scroll" }, { @@ -70228,12 +71215,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-recaptcha-that-works", "npm": { - "downloads": 74829, - "weekDownloads": 14058, + "downloads": 71323, + "weekDownloads": 14250, "size": 39880, "latestRelease": "2.0.0", "latestReleaseDate": "2023-08-19T18:14:23.406Z" @@ -70244,7 +71232,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.17, "topicSearchString": "react-native ios android recaptcha captcha security webview hacktoberfest" }, { @@ -70306,12 +71294,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-payment-icons", "npm": { - "downloads": 7197, - "weekDownloads": 1582, + "downloads": 6697, + "weekDownloads": 1286, "size": 53834, "latestRelease": "1.0.11", "latestReleaseDate": "2021-12-13T17:01:37.615Z" @@ -70321,7 +71310,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.063, + "popularity": -0.087, "topicSearchString": "credit card payment visa mastercard react-native credit-card native icon paypal icons logo svg image creditcard" }, { @@ -70374,12 +71363,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-sfsymbols", "npm": { - "downloads": 9301, - "weekDownloads": 1404, + "downloads": 9370, + "weekDownloads": 1449, "size": 24204, "latestRelease": "1.2.2", "latestReleaseDate": "2024-06-12T10:16:24.735Z" @@ -70389,7 +71379,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.128, + "popularity": 0.131, "topicSearchString": "sf symbols icons react native sfsymbols symbol ios" }, { @@ -70440,13 +71430,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-platforms", "npm": { - "downloads": 98, - "weekDownloads": 18, + "downloads": 94, + "weekDownloads": 16, "size": 21164, "latestRelease": "0.2.0", "latestReleaseDate": "2021-12-25T23:23:38.274Z" @@ -70456,7 +71447,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.593, + "popularity": -1.605, "topicSearchString": "react-native ios android" }, { @@ -70492,7 +71483,7 @@ "forks": 341, "issues": 24, "subscribers": 27, - "stars": 3238, + "stars": 3240, "dependencies": 0 }, "name": "react-native-reanimated-carousel", @@ -70521,12 +71512,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-reanimated-carousel", "npm": { - "downloads": 1123627, - "weekDownloads": 215906, + "downloads": 1085266, + "weekDownloads": 206828, "size": 1764025, "latestRelease": "4.0.3", "latestReleaseDate": "2025-08-08T02:20:17.525Z" @@ -70539,7 +71531,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.162, "topicSearchString": "react-native ios android carousel reanimated infinite-scroll swiper web snap" }, { @@ -70612,12 +71604,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-in-app-review", "npm": { - "downloads": 699037, - "weekDownloads": 121291, + "downloads": 675329, + "weekDownloads": 134515, "size": 60618, "latestRelease": "4.4.2", "latestReleaseDate": "2025-09-03T13:04:19.644Z" @@ -70628,7 +71621,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.169, "topicSearchString": "react-native review app-review in-app-review store-kit android ios app-store play-store app-gallery rate-your-app review-is-sent-to-the-play-store review-is-sent-to-the-app-store review-is-sent-to-the-app-gallery rating view react-component component in-app-comment review-api playstore appstore" }, { @@ -70683,11 +71676,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 206, - "weekDownloads": 48, + "downloads": 245, + "weekDownloads": 43, "size": 38458, "latestRelease": "2.1.10", "latestReleaseDate": "2025-03-19T18:10:01.083Z" @@ -70698,7 +71692,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.55, + "popularity": -0.599, "topicSearchString": "react react-native state-management hooks state-persistence shipt" }, { @@ -70755,12 +71749,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-owl", "npm": { - "downloads": 1392, - "weekDownloads": 316, + "downloads": 1349, + "weekDownloads": 394, "size": 155902, "latestRelease": "1.5.0", "latestReleaseDate": "2025-01-14T19:34:19.293Z" @@ -70771,7 +71766,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.193, + "popularity": 0.249, "topicSearchString": "react-native ios android mobile visual-regression testing tooling react javscript typescript" }, { @@ -70822,12 +71817,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ticker", "npm": { - "downloads": 2293, - "weekDownloads": 455, + "downloads": 2460, + "weekDownloads": 382, "size": 14162, "latestRelease": "6.0.1", "latestReleaseDate": "2024-02-06T03:32:22.696Z" @@ -70838,7 +71834,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.132, "topicSearchString": "react-native react ticker animated" }, { @@ -70861,7 +71857,7 @@ "forks": 264, "issues": 121, "subscribers": 26, - "stars": 1078, + "stars": 1080, "dependencies": 1 }, "name": "react-native-health", @@ -70890,12 +71886,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-health", "npm": { - "downloads": 60422, - "weekDownloads": 11011, + "downloads": 58977, + "weekDownloads": 10272, "size": 552260, "latestRelease": "1.19.0", "latestReleaseDate": "2024-10-15T16:21:11.925Z" @@ -70908,7 +71905,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.148, "topicSearchString": "apple health-kit healthkit ios react-native react native apple-healthkit health fitness" }, { @@ -70967,13 +71964,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-interactable-reanimated", "npm": { - "downloads": 1634, - "weekDownloads": 336, + "downloads": 1577, + "weekDownloads": 338, "size": 129811, "latestRelease": "0.0.15", "latestReleaseDate": "2021-04-21T19:54:21.052Z" @@ -70983,7 +71981,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.575, + "popularity": -0.568, "topicSearchString": "reanimated interactable interactable-reanimated react native react-native" }, { @@ -71040,13 +72038,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "expo-video-player", "npm": { - "downloads": 10706, - "weekDownloads": 1517, + "downloads": 11000, + "weekDownloads": 1668, "size": 41869, "latestRelease": "2.2.0", "latestReleaseDate": "2022-09-29T19:32:53.919Z" @@ -71057,7 +72056,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.63, + "popularity": -0.621, "topicSearchString": "customizable expo player react-native video-player expo-video-player videoplayer expo-videoplayer video typescript" }, { @@ -71106,12 +72105,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-accelerometer-parallax", "npm": { - "downloads": 3, + "downloads": 183, "weekDownloads": 0, "size": 10594, "latestRelease": "1.6.1", @@ -71178,13 +72178,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-swipe-calendar", "npm": { - "downloads": 1061, - "weekDownloads": 257, + "downloads": 1119, + "weekDownloads": 247, "size": 219985, "latestRelease": "0.0.21", "latestReleaseDate": "2022-11-19T23:05:19.814Z" @@ -71194,7 +72195,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.544, + "popularity": -0.562, "topicSearchString": "react native infinite pager swipe calendar" }, { @@ -71250,13 +72251,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-pan-pinch-view", "npm": { - "downloads": 554, - "weekDownloads": 80, + "downloads": 557, + "weekDownloads": 135, "size": 66733, "latestRelease": "2.0.0", "latestReleaseDate": "2023-10-12T16:53:54.651Z" @@ -71266,7 +72268,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.377, + "popularity": -1.294, "topicSearchString": "react-native ios android component zoom" }, { @@ -71322,12 +72324,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "unmaintained": true, "npm": { - "downloads": 99, - "weekDownloads": 14, + "downloads": 111, + "weekDownloads": 18, "size": 2437197, "latestRelease": "2.0.1", "latestReleaseDate": "2023-09-28T20:14:42.427Z" @@ -71337,7 +72340,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.628, + "popularity": -1.612, "topicSearchString": "react-native ios android oauth passkey passkeys passwordless authentication" }, { @@ -71393,12 +72396,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "vision-camera-dynamsoft-barcode-reader", "npm": { - "downloads": 465, - "weekDownloads": 28, + "downloads": 523, + "weekDownloads": 93, "size": 77310, "latestRelease": "2.3.0", "latestReleaseDate": "2025-09-22T07:48:36.110Z" @@ -71408,7 +72412,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.699, + "popularity": -0.599, "topicSearchString": "react-native ios android pdf417 barcode qr-code ean13 data-matrix" }, { @@ -71466,12 +72470,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-lan-port-scanner", "npm": { - "downloads": 98, - "weekDownloads": 13, + "downloads": 174, + "weekDownloads": 18, "size": 57006, "latestRelease": "1.4.2", "latestReleaseDate": "2023-12-16T16:56:02.454Z" @@ -71481,7 +72486,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.637, + "popularity": -0.66, "topicSearchString": "react-native ios android lan scanner port lan-scan lan-scanner port-scanner wifi-scanner" }, { @@ -71539,13 +72544,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-animated-pagination-dot", "npm": { - "downloads": 11688, - "weekDownloads": 2382, + "downloads": 10934, + "weekDownloads": 2266, "size": 90946, "latestRelease": "0.4.0", "latestReleaseDate": "2022-09-15T13:52:56.667Z" @@ -71556,7 +72562,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.577, + "popularity": -0.574, "topicSearchString": "pagination dot react-native instagram scroll scrollable page paginate" }, { @@ -71607,12 +72613,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-ad", "npm": { - "downloads": 131, - "weekDownloads": 15, + "downloads": 130, + "weekDownloads": 14, "size": 4186934, "latestRelease": "1.2.4", "latestReleaseDate": "2021-10-26T16:31:37.137Z" @@ -71622,7 +72629,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.65, + "popularity": -0.657, "topicSearchString": "react-native ads gromore ad" }, { @@ -71672,12 +72679,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 118, - "weekDownloads": 20, + "downloads": 181, + "weekDownloads": 24, "size": 281570979, "latestRelease": "1.0.0-beta.4", "latestReleaseDate": "2022-02-05T20:52:22.954Z" @@ -71687,7 +72695,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.352, + "popularity": -1.386, "topicSearchString": "material-you material-design react-native personalization" }, { @@ -71710,13 +72718,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T18:35:54Z", + "updatedAt": "2025-10-17T18:15:17Z", "createdAt": "2021-12-14T16:53:48Z", - "pushedAt": "2025-10-16T18:35:54Z", - "forks": 392, - "issues": 15, + "pushedAt": "2025-10-17T18:15:17Z", + "forks": 393, + "issues": 16, "subscribers": 8, - "stars": 1578, + "stars": 1580, "dependencies": 7 }, "name": "@clerk/clerk-expo", @@ -71743,14 +72751,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 217568, - "weekDownloads": 36871, - "size": 350815, - "latestRelease": "2.16.4", - "latestReleaseDate": "2025-10-16T16:43:45.675Z" + "downloads": 268527, + "weekDownloads": 35625, + "size": 351246, + "latestRelease": "2.17.0", + "latestReleaseDate": "2025-10-17T18:18:49.238Z" }, "score": 73, "matchingScoreModifiers": [ @@ -71759,7 +72768,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.113, "topicSearchString": "react react-native expo auth authentication passwordless session jwt" }, { @@ -71812,13 +72821,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-hashing", "npm": { - "downloads": 18, - "weekDownloads": 0, + "downloads": 25, + "weekDownloads": 3, "size": 216882, "latestRelease": "0.1.5", "latestReleaseDate": "2022-03-26T17:25:02.091Z" @@ -71828,7 +72838,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -1.63, "topicSearchString": "react-native ios android hashing jsi cpp javascript react typescript" }, { @@ -71886,12 +72896,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-icomoon", "npm": { - "downloads": 122128, - "weekDownloads": 22919, + "downloads": 116418, + "weekDownloads": 21920, "size": 92411, "latestRelease": "2.6.1", "latestReleaseDate": "2025-02-04T05:33:07.040Z" @@ -71962,13 +72973,14 @@ "newArchitecture": false, "isArchived": true, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "unmaintained": true, "npmPkg": "react-native-chatty", "npm": { - "downloads": 4860, - "weekDownloads": 8, + "downloads": 5124, + "weekDownloads": 4, "size": 725887, "latestRelease": "0.4.3", "latestReleaseDate": "2022-04-20T17:39:25.101Z" @@ -72028,12 +73040,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 98, - "weekDownloads": 9, + "downloads": 139, + "weekDownloads": 10, "size": 36562, "latestRelease": "0.1.2", "latestReleaseDate": "2022-03-11T18:58:40.482Z" @@ -72043,7 +73056,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.672, + "popularity": -1.688, "topicSearchString": "react-native react-native gauge" }, { @@ -72100,13 +73113,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-insta-story", "npm": { - "downloads": 3027, - "weekDownloads": 536, + "downloads": 3174, + "weekDownloads": 602, "size": 71597, "latestRelease": "1.1.9", "latestReleaseDate": "2023-04-21T02:00:47.076Z" @@ -72117,7 +73131,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.589, "topicSearchString": "react-native insta-story story instagram ios android" }, { @@ -72175,13 +73189,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-section-alphabet-list", "npm": { - "downloads": 23598, - "weekDownloads": 3641, + "downloads": 23083, + "weekDownloads": 4133, "size": 25645, "latestRelease": "3.0.0", "latestReleaseDate": "2022-11-24T20:50:59.533Z" @@ -72192,7 +73207,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.619, + "popularity": -0.598, "topicSearchString": "react-native alphabet sectionlist letters address addressbook custom" }, { @@ -72250,13 +73265,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-skeleton-content", "npm": { - "downloads": 8015, - "weekDownloads": 1173, + "downloads": 8260, + "weekDownloads": 1079, "size": 42964, "latestRelease": "1.0.28", "latestReleaseDate": "2022-10-04T07:22:35.066Z" @@ -72267,7 +73283,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.626, + "popularity": -0.639, "topicSearchString": "react-native skeleton loader placeholders gradient animation component" }, { @@ -72323,13 +73339,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-skeleton-content-nonexpo", "npm": { - "downloads": 3252, - "weekDownloads": 591, + "downloads": 3170, + "weekDownloads": 612, "size": 42316, "latestRelease": "1.0.13", "latestReleaseDate": "2021-05-22T10:24:43.879Z" @@ -72340,7 +73357,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, + "popularity": -0.586, "topicSearchString": "node npm react-native component loader animation skeleton" }, { @@ -72398,13 +73415,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-share-menu", "npm": { - "downloads": 10537, - "weekDownloads": 1866, + "downloads": 10751, + "weekDownloads": 1561, "size": 62433, "latestRelease": "6.0.0", "latestReleaseDate": "2022-05-12T20:35:00.093Z" @@ -72417,7 +73435,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.627, "topicSearchString": "react-component react-native android ios share share-extension custom-view share-intent" }, { @@ -72464,12 +73482,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-colo-loco", "npm": { - "downloads": 72, - "weekDownloads": 39, + "downloads": 210, + "weekDownloads": 35, "size": 40769, "latestRelease": "1.3.0", "latestReleaseDate": "2023-11-15T17:03:17.509Z" @@ -72480,7 +73499,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.263, + "popularity": -0.607, "topicSearchString": "react-native ios android" }, { @@ -72527,13 +73546,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-url-router", "npm": { - "downloads": 65, - "weekDownloads": 12, + "downloads": 138, + "weekDownloads": 14, "size": 63032, "latestRelease": "0.2.2", "latestReleaseDate": "2023-01-04T16:09:43.221Z" @@ -72543,7 +73563,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.34, + "popularity": -1.413, "topicSearchString": "" }, { @@ -72605,13 +73625,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-scrollable-tabstring", "npm": { - "downloads": 48, - "weekDownloads": 2, + "downloads": 59, + "weekDownloads": 9, "size": 38314, "latestRelease": "0.0.8", "latestReleaseDate": "2021-02-15T04:48:56.071Z" @@ -72621,7 +73642,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.714, + "popularity": -1.612, "topicSearchString": "react native tab scroll string navigator tabstring stringtab scrollable horizontal animated component scrollview ios android" }, { @@ -72678,7 +73699,8 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "create-luna-app", @@ -72747,12 +73769,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-media-console", "npm": { - "downloads": 31283, - "weekDownloads": 5336, + "downloads": 30203, + "weekDownloads": 5320, "size": 1368036, "latestRelease": "2.2.4", "latestReleaseDate": "2024-06-02T10:05:33.734Z" @@ -72763,7 +73786,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.145, + "popularity": 0.15, "topicSearchString": "react-native video react-video-controls react-video-player react video-controls video-player community tvos media-player" }, { @@ -72815,13 +73838,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-status-bar", "npm": { - "downloads": 7, - "weekDownloads": 5, + "downloads": 11, + "weekDownloads": 0, "size": 84475, "latestRelease": "0.1.6", "latestReleaseDate": "2022-03-22T23:00:33.181Z" @@ -72831,7 +73855,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.75, + "popularity": -1, "topicSearchString": "react-native ios android statusbar" }, { @@ -72884,13 +73908,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-virtual-keyboard", "npm": { - "downloads": 1418, - "weekDownloads": 231, + "downloads": 1472, + "weekDownloads": 173, "size": 7758, "latestRelease": "1.2.3", "latestReleaseDate": "2023-07-26T15:27:17.519Z" @@ -72900,7 +73925,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.611, + "popularity": -0.65, "topicSearchString": "keyboard react react-native" }, { @@ -72925,7 +73950,7 @@ "createdAt": "2020-07-29T14:55:43Z", "pushedAt": "2024-04-18T10:39:18Z", "forks": 43, - "issues": 44, + "issues": 45, "subscribers": 4, "stars": 164, "dependencies": 0 @@ -72950,12 +73975,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-record-screen", "npm": { - "downloads": 2250, - "weekDownloads": 372, + "downloads": 2591, + "weekDownloads": 283, "size": 69149, "latestRelease": "0.6.2", "latestReleaseDate": "2024-04-18T10:44:17.457Z" @@ -72966,7 +73992,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.141, + "popularity": 0.093, "topicSearchString": "react-native ios android" }, { @@ -73015,13 +74041,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tags", "npm": { - "downloads": 3179, - "weekDownloads": 465, + "downloads": 3176, + "weekDownloads": 502, "size": 12484, "latestRelease": "2.2.1", "latestReleaseDate": "2021-10-28T16:40:41.531Z" @@ -73032,7 +74059,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.626, + "popularity": -0.616, "topicSearchString": "react-native tags tag-input" }, { @@ -73090,11 +74117,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 5284, - "weekDownloads": 1148, + "downloads": 4898, + "weekDownloads": 1074, "size": 15225, "latestRelease": "1.0.2", "latestReleaseDate": "2020-11-09T13:50:54.003Z" @@ -73104,7 +74132,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.565, + "popularity": -0.564, "topicSearchString": "react-native react visibility visbility-sensor viewport" }, { @@ -73158,11 +74186,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 140, - "weekDownloads": 36, + "downloads": 121, + "weekDownloads": 29, "size": 116231, "latestRelease": "0.1.7", "latestReleaseDate": "2024-09-21T17:31:01.632Z" @@ -73172,7 +74201,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.525, + "popularity": -0.543, "topicSearchString": "react-native ios android" }, { @@ -73226,13 +74255,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-flex-layout", "npm": { - "downloads": 20573, - "weekDownloads": 3037, + "downloads": 21169, + "weekDownloads": 3435, "size": 181167, "latestRelease": "0.1.5", "latestReleaseDate": "2022-03-03T15:09:07.887Z" @@ -73242,7 +74272,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.625, + "popularity": -0.612, "topicSearchString": "react-native ios android flexbox layout" }, { @@ -73296,11 +74326,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-tableview-list", "npm": { - "downloads": 123, + "downloads": 166, "weekDownloads": 1, "size": 168653, "latestRelease": "0.1.17", @@ -73311,7 +74342,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.743, + "popularity": -0.745, "topicSearchString": "react-native ios android" }, { @@ -73335,7 +74366,7 @@ "createdAt": "2017-06-02T09:44:41Z", "pushedAt": "2025-01-24T18:09:33Z", "forks": 252, - "issues": 31, + "issues": 30, "subscribers": 16, "stars": 2106, "dependencies": 0 @@ -73367,11 +74398,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 997240, - "weekDownloads": 181998, + "downloads": 963536, + "weekDownloads": 197392, "size": 919380, "latestRelease": "9.1.8", "latestReleaseDate": "2024-12-20T01:36:19.738Z" @@ -73383,7 +74415,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.174, "topicSearchString": "react react-native scheduling channels android ios firebase fcm notifee notifications onesignal" }, { @@ -73407,7 +74439,7 @@ "forks": 669, "issues": 2, "subscribers": 325, - "stars": 3318, + "stars": 3319, "dependencies": 0 }, "name": "react-native-notifications", @@ -73437,13 +74469,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-notifications", "npm": { - "downloads": 139118, - "weekDownloads": 27062, + "downloads": 134475, + "weekDownloads": 25964, "size": 2758655, "latestRelease": "5.1.0", "latestReleaseDate": "2023-09-14T07:17:44.264Z" @@ -73456,7 +74489,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, + "popularity": -0.586, "topicSearchString": "react-component react-native ios push-notifications notifications notification pushkit push-kit actionable-notifications interactive-notifications" }, { @@ -73507,13 +74540,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-focus", "npm": { - "downloads": 10, - "weekDownloads": 3, + "downloads": 7, + "weekDownloads": 0, "size": 52379, "latestRelease": "1.2.0", "latestReleaseDate": "2022-04-24T10:40:12.185Z" @@ -73523,7 +74557,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.45, + "popularity": -1, "topicSearchString": "react-native ios ios-15 focus do-not-disturb" }, { @@ -73577,11 +74611,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { "downloads": 184, - "weekDownloads": 1, + "weekDownloads": 2, "size": 44909, "latestRelease": "2.0.2", "latestReleaseDate": "2025-10-10T23:45:14.019Z" @@ -73591,7 +74626,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.995, + "popularity": -0.991, "topicSearchString": "react react-native auth authentication" }, { @@ -73646,13 +74681,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-wheely", "npm": { - "downloads": 54330, - "weekDownloads": 9103, + "downloads": 53006, + "weekDownloads": 10014, "size": 20511, "latestRelease": "0.6.0", "latestReleaseDate": "2022-11-13T15:28:28.324Z" @@ -73663,7 +74699,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, + "popularity": -0.589, "topicSearchString": "react react-native wheel-picker wheel picker wheely" }, { @@ -73687,8 +74723,8 @@ "pushedAt": "2025-02-22T11:47:35Z", "forks": 29, "issues": 2, - "subscribers": 3, - "stars": 67, + "subscribers": 2, + "stars": 66, "dependencies": 0 }, "name": "react-native-launch-arguments", @@ -73716,12 +74752,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-launch-arguments", "npm": { - "downloads": 669529, - "weekDownloads": 132410, + "downloads": 605814, + "weekDownloads": 135206, "size": 30750, "latestRelease": "4.1.0", "latestReleaseDate": "2025-02-22T11:50:49.412Z" @@ -73732,7 +74769,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.19, "topicSearchString": "react native react-native launch arguments detox testing appium maestro" }, { @@ -73791,12 +74828,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-numbers", "npm": { - "downloads": 16669, - "weekDownloads": 2697, + "downloads": 16489, + "weekDownloads": 2950, "size": 44605, "latestRelease": "0.6.3", "latestReleaseDate": "2024-11-15T04:57:21.111Z" @@ -73807,7 +74845,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.138, + "popularity": 0.152, "topicSearchString": "react-native component react-component ios android react animation text number animated numbers" }, { @@ -73857,13 +74895,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-switch-selector", "npm": { - "downloads": 33360, - "weekDownloads": 6271, + "downloads": 32262, + "weekDownloads": 5881, "size": 234161, "latestRelease": "2.3.0", "latestReleaseDate": "2022-12-02T13:51:09.318Z" @@ -73873,7 +74912,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.595, "topicSearchString": "react-native" }, { @@ -73936,12 +74975,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "react-native-admob-native-ads", "npm": { - "downloads": 3076, - "weekDownloads": 534, + "downloads": 3621, + "weekDownloads": 468, "size": 757247, "latestRelease": "0.7.6", "latestReleaseDate": "2024-08-29T10:31:33.272Z" @@ -73952,7 +74992,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.11, "topicSearchString": "android ios react-native admob native-ads admob-native-ads admob-ads google-admob react native advanced ads native-advanced-ads admob-native-advanced-ads objective-c java" }, { @@ -73981,10 +75021,10 @@ "updatedAt": "2024-03-21T14:15:34Z", "createdAt": "2022-04-29T12:40:18Z", "pushedAt": "2024-03-21T14:15:34Z", - "forks": 122, + "forks": 123, "issues": 30, "subscribers": 17, - "stars": 2332, + "stars": 2336, "dependencies": 0 }, "name": "react-native-graph", @@ -74023,12 +75063,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-graph", "npm": { - "downloads": 30362, - "weekDownloads": 6312, + "downloads": 29528, + "weekDownloads": 5573, "size": 264119, "latestRelease": "1.1.0", "latestReleaseDate": "2024-03-12T12:21:31.205Z" @@ -74040,7 +75081,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.16, "topicSearchString": "react-native ios android react svg chart charts library performance crypto graph animation graphs stock beautiful wallet animated skia linegraph" }, { @@ -74066,7 +75107,7 @@ "createdAt": "2022-03-03T08:52:46Z", "pushedAt": "2025-07-21T11:09:34Z", "forks": 16, - "issues": 10, + "issues": 9, "subscribers": 8, "stars": 369, "dependencies": 1 @@ -74105,12 +75146,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-bignumber", "npm": { - "downloads": 730, - "weekDownloads": 208, + "downloads": 665, + "weekDownloads": 175, "size": 352235, "latestRelease": "0.3.0", "latestReleaseDate": "2025-07-21T11:09:31.601Z" @@ -74120,7 +75162,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.507, + "popularity": -0.526, "topicSearchString": "react-native ios android jsi crypto c++ fast web3 number bignumber bn big math library react native wallet" }, { @@ -74169,13 +75211,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-select-contact", "npm": { - "downloads": 39741, - "weekDownloads": 7282, + "downloads": 38095, + "weekDownloads": 7309, "size": 182975, "latestRelease": "1.6.3", "latestReleaseDate": "2021-06-04T16:00:42.223Z" @@ -74186,7 +75229,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.587, "topicSearchString": "react react-native contacts address-book people select-contact" }, { @@ -74230,13 +75273,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-shared-group-preferences", "npm": { - "downloads": 34795, - "weekDownloads": 6288, + "downloads": 33512, + "weekDownloads": 5691, "size": 36840, "latestRelease": "1.1.24", "latestReleaseDate": "2023-09-18T15:52:57.494Z" @@ -74247,7 +75291,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.606, "topicSearchString": "react-native" }, { @@ -74305,11 +75349,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1007, - "weekDownloads": 258, + "downloads": 955, + "weekDownloads": 251, "size": 62417, "latestRelease": "2.0.0", "latestReleaseDate": "2025-03-10T18:40:03.773Z" @@ -74319,7 +75364,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.219, + "popularity": -0.526, "topicSearchString": "react react-native ios android segmented-arc arc segmented-gauge" }, { @@ -74387,13 +75432,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-actions-sheet-picker", "npm": { - "downloads": 301, - "weekDownloads": 77, + "downloads": 343, + "weekDownloads": 49, "size": 54672, "latestRelease": "0.3.5", "latestReleaseDate": "2022-08-11T08:52:53.342Z" @@ -74403,7 +75449,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.28, + "popularity": -1.377, "topicSearchString": "react-native ios android select searchable-select picker dropdown modal selector selectbox searchable option actions-sheet actionsheet filterable react javascript" }, { @@ -74460,11 +75506,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 4736, - "weekDownloads": 966, + "downloads": 4606, + "weekDownloads": 1019, "size": 517438, "latestRelease": "1.1.2", "latestReleaseDate": "2025-06-02T15:39:53.882Z" @@ -74474,7 +75521,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.188, "topicSearchString": "react-native ios android leaflet leaflet-map" }, { @@ -74502,10 +75549,10 @@ "updatedAt": "2025-10-14T11:04:31Z", "createdAt": "2022-04-17T18:00:04Z", "pushedAt": "2025-10-14T11:04:31Z", - "forks": 122, - "issues": 56, - "subscribers": 13, - "stars": 2921, + "forks": 123, + "issues": 60, + "subscribers": 14, + "stars": 2928, "dependencies": 1 }, "name": "react-native-keyboard-controller", @@ -74547,12 +75594,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-keyboard-controller", "npm": { - "downloads": 1486759, - "weekDownloads": 274188, + "downloads": 1446550, + "weekDownloads": 273884, "size": 1105086, "latestRelease": "1.19.1", "latestReleaseDate": "2025-10-14T11:10:53.199Z" @@ -74564,7 +75612,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.161, "topicSearchString": "react-native keyboard interactive dismiss animation focused-input text-changed selection-changed avoiding-view avoid-keyboard sticky-view over-keyboard-view keyboard-background-view keyboard-aware-scroll-view keyboard-toolbar keyboard-done-button keyboard-next-button keyboard-previous-button extend-keyboard ios android" }, { @@ -74617,13 +75665,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-quick-websql", "npm": { - "downloads": 332, - "weekDownloads": 48, + "downloads": 364, + "weekDownloads": 52, "size": 42762, "latestRelease": "0.3.0", "latestReleaseDate": "2023-01-17T06:12:43.872Z" @@ -74633,7 +75682,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.377, + "popularity": -1.378, "topicSearchString": "react-native ios android sqlite jsi typescript" }, { @@ -74688,12 +75737,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-notificated", "npm": { - "downloads": 4897, - "weekDownloads": 878, + "downloads": 4637, + "weekDownloads": 626, "size": 591251, "latestRelease": "0.1.7", "latestReleaseDate": "2024-10-14T14:46:58.189Z" @@ -74704,7 +75754,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.115, "topicSearchString": "react-native ios android push-notifications notifications toast toast-notifications notification" }, { @@ -74756,13 +75806,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-esbuild", "npm": { - "downloads": 83, - "weekDownloads": 6, + "downloads": 238, + "weekDownloads": 5, "size": 52997, "latestRelease": "0.6.0", "latestReleaseDate": "2023-07-11T07:12:43.301Z" @@ -74773,7 +75824,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.437, + "popularity": -1.482, "topicSearchString": "react-native esbuild dev-server development bundler" }, { @@ -74824,12 +75875,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "cross-local-storage", "npm": { - "downloads": 5, + "downloads": 35, "weekDownloads": 0, "size": 1795929, "latestRelease": "0.0.5", @@ -74895,12 +75947,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "rn-card-scanner", "npm": { - "downloads": 5432, - "weekDownloads": 1362, + "downloads": 4739, + "weekDownloads": 1544, "size": 137603552, "latestRelease": "1.1.2", "latestReleaseDate": "2024-03-13T05:08:49.979Z" @@ -74910,7 +75963,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.213, + "popularity": 0.277, "topicSearchString": "react-native ios android card-scanner" }, { @@ -74962,13 +76015,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-cupertino-list", "npm": { - "downloads": 21, - "weekDownloads": 1, + "downloads": 110, + "weekDownloads": 3, "size": 16359, "latestRelease": "0.0.8", "latestReleaseDate": "2023-03-15T12:34:17.730Z" @@ -74978,7 +76032,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.7, + "popularity": -1.726, "topicSearchString": "cupertino react-native component" }, { @@ -75030,12 +76084,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-infinite-pager", "npm": { - "downloads": 11422, - "weekDownloads": 2145, + "downloads": 11571, + "weekDownloads": 2151, "size": 194270, "latestRelease": "0.3.18", "latestReleaseDate": "2024-08-17T00:25:09.282Z" @@ -75046,7 +76101,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.158, "topicSearchString": "react native infinite pager swipe slideshow" }, { @@ -75097,11 +76152,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 43800, - "weekDownloads": 7209, + "downloads": 42879, + "weekDownloads": 7172, "size": 64815, "latestRelease": "0.3.2", "latestReleaseDate": "2024-06-01T03:32:08.143Z" @@ -75112,7 +76168,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.14, + "popularity": 0.142, "topicSearchString": "react-native react-navigation bottom-sheet" }, { @@ -75172,13 +76228,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-picky", "npm": { - "downloads": 725, - "weekDownloads": 179, + "downloads": 650, + "weekDownloads": 136, "size": 97781, "latestRelease": "0.4.0", "latestReleaseDate": "2022-07-16T06:06:24.860Z" @@ -75188,7 +76245,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.289, + "popularity": -1.321, "topicSearchString": "react-native ios android picker wheel react typescript wheelpicker" }, { @@ -75246,12 +76303,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "react-native-place-picker", "npm": { - "downloads": 973, - "weekDownloads": 230, + "downloads": 994, + "weekDownloads": 172, "size": 93346, "latestRelease": "3.0.8", "latestReleaseDate": "2024-09-22T11:22:54.350Z" @@ -75261,7 +76319,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.548, + "popularity": -0.602, "topicSearchString": "react-native expo place-picker reactnativeplacepicker android ios kotlin react reactjs swift typescript" }, { @@ -75310,11 +76368,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 27399, - "weekDownloads": 7538, + "downloads": 24745, + "weekDownloads": 6701, "size": 881469, "latestRelease": "4.1.2", "latestReleaseDate": "2022-08-30T08:03:01.929Z" @@ -75326,7 +76385,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.234, + "popularity": 0.23, "topicSearchString": "react-native" }, { @@ -75347,9 +76406,9 @@ "createdAt": "2022-06-14T01:25:17Z", "pushedAt": "2025-05-12T16:31:15Z", "forks": 31, - "issues": 9, + "issues": 10, "subscribers": 9, - "stars": 619, + "stars": 620, "dependencies": 2 }, "name": "react-native-app-clip", @@ -75374,12 +76433,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "react-native-app-clip", "npm": { - "downloads": 33942, - "weekDownloads": 6272, + "downloads": 33458, + "weekDownloads": 6394, "size": 68597, "latestRelease": "0.6.1", "latestReleaseDate": "2025-05-12T16:32:11.452Z" @@ -75389,7 +76449,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.162, "topicSearchString": "react-native expo app-clip reactnativeappclip ios" }, { @@ -75440,13 +76500,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-compressed-jsbundle", "npm": { - "downloads": 465, - "weekDownloads": 89, + "downloads": 417, + "weekDownloads": 80, "size": 2151590, "latestRelease": "0.1.2", "latestReleaseDate": "2021-09-20T10:31:10.297Z" @@ -75479,10 +76540,10 @@ "updatedAt": "2024-03-06T17:24:07Z", "createdAt": "2018-08-20T11:08:29Z", "pushedAt": "2024-03-06T17:24:07Z", - "forks": 48, + "forks": 49, "issues": 11, "subscribers": 6, - "stars": 389, + "stars": 390, "dependencies": 1 }, "name": "react-native-get-random-values", @@ -75512,12 +76573,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-get-random-values", "npm": { - "downloads": 5520093, - "weekDownloads": 1041026, + "downloads": 5300851, + "weekDownloads": 1015693, "size": 20018, "latestRelease": "1.11.0", "latestReleaseDate": "2024-03-06T17:25:12.791Z" @@ -75530,7 +76592,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.163, "topicSearchString": "crypto.getrandomvalues crypto get-random-values getrandomvalues polyfill react-native webcrypto rng random javascript hacktoberfest" }, { @@ -75557,13 +76619,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T12:29:04Z", + "updatedAt": "2025-10-18T08:20:05Z", "createdAt": "2021-11-08T13:19:09Z", - "pushedAt": "2025-10-16T12:29:04Z", - "forks": 520, - "issues": 74, + "pushedAt": "2025-10-18T08:20:05Z", + "forks": 521, + "issues": 75, "subscribers": 272, - "stars": 7881, + "stars": 7890, "dependencies": 2 }, "name": "@shopify/react-native-skia", @@ -75584,23 +76646,25 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 1300414, - "weekDownloads": 246157, - "size": 488103790, - "latestRelease": "2.3.0", - "latestReleaseDate": "2025-10-03T10:08:48.358Z" + "downloads": 1244716, + "weekDownloads": 232438, + "size": 9254220, + "latestRelease": "2.3.4", + "latestReleaseDate": "2025-10-18T08:25:08.163Z" }, - "score": 100, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", + "Lots of open issues", "Recently updated" ], - "popularity": 0.161, + "popularity": 0.159, "topicSearchString": "react-native" }, { @@ -75629,10 +76693,10 @@ "updatedAt": "2025-09-25T16:26:48Z", "createdAt": "2021-12-20T15:48:14Z", "pushedAt": "2025-09-25T16:26:48Z", - "forks": 306, - "issues": 53, + "forks": 307, + "issues": 54, "subscribers": 249, - "stars": 6700, + "stars": 6703, "dependencies": 0 }, "name": "@shopify/flash-list", @@ -75661,11 +76725,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2389543, - "weekDownloads": 461094, + "downloads": 2300807, + "weekDownloads": 457345, "size": 804730, "latestRelease": "2.1.0", "latestReleaseDate": "2025-09-25T16:30:34.501Z" @@ -75678,7 +76743,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.169, "topicSearchString": "react-native recyclerview listview flatlist-alternative flatlist recyclerlistview 60fps cross-platform web performance" }, { @@ -75728,12 +76793,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "reassure", "npm": { - "downloads": 492784, - "weekDownloads": 96743, + "downloads": 472971, + "weekDownloads": 101608, "size": 30430, "latestRelease": "1.4.0", "latestReleaseDate": "2025-03-12T09:59:52.922Z" @@ -75745,7 +76811,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.183, "topicSearchString": "react-native ios android" }, { @@ -75794,7 +76860,8 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-turbo-starter", @@ -75824,9 +76891,9 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-05T17:02:15Z", + "updatedAt": "2025-10-17T16:38:00Z", "createdAt": "2020-04-24T16:50:07Z", - "pushedAt": "2025-09-05T17:02:15Z", + "pushedAt": "2025-10-17T16:38:00Z", "forks": 27, "issues": 25, "subscribers": 1, @@ -75836,7 +76903,7 @@ "name": "myapp", "fullName": "leotm/react-native-template-new-architecture", "isPrivate": true, - "description": "React Native 0.71.12 ⚡ M1, Ubuntu 💻 Hermes ⚙️ Fabric 🚅 Turbo Modules 💨 TypeScript 5 ✅ Gradle 7.6, JDK 19, NDK 25 🍎 Xcode 15b, Sonoma 14b, Ruby 3 💎 Bison 2.3 🦬 ccache ♻️ Yarn 4rc 📦 ESLint 🧹 Prettier ✨ SES, LavaMoat, Buck2 🚧 Babel 🗼 GitHub Actions ✔️ Node 19 ⬢ Storybook 6.5rc 📓 libs 📚 for curious early adopters :suspect: #RNEU #APPJS", + "description": "React Native 0.71.12 ⚡ M1-4, Ubuntu 💻 Hermes ⚙️ Fabric 🚅 Turbo Modules 💨 TypeScript 5 ✅ Gradle 7.6, JDK 19, NDK 25 🍎 Xcode 26, Tahoe 26, Ruby 3 💎 Bison 2.3 🦬 ccache ♻️ Yarn 4rc 📦 ESLint 🧹 Prettier ✨ SES, LavaMoat, Buck2 🚧 Babel 🗼 GitHub Actions ✔️ Node 19 ⬢ Storybook 6.5rc 📓 libs 📚 for curious early adopters :suspect: #RNEU #APPJS", "topics": [ "react-native", "typescript", @@ -75853,14 +76920,16 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-template-new-architecture", "npm": {}, - "score": 41, + "score": 46, "matchingScoreModifiers": [ "Known", "No license", + "Recently updated", "Not supporting New Architecture" ], "popularity": -1, @@ -75918,7 +76987,8 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-universal-monorepo", @@ -75962,7 +77032,7 @@ "forks": 180, "issues": 101, "subscribers": 6, - "stars": 1141, + "stars": 1145, "dependencies": 1 }, "name": "react-native-gifted-charts", @@ -76003,25 +77073,25 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-gifted-charts", "npm": { - "downloads": 301907, - "weekDownloads": 55051, + "downloads": 291046, + "weekDownloads": 57742, "size": 343207, "latestRelease": "1.4.64", "latestReleaseDate": "2025-08-26T19:58:16.835Z" }, - "score": 62, + "score": 57, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.169, "topicSearchString": "chart charts graph data-visualization bar pie donut area line radar star population pyramid react react-native barchart piechart line-charts pie-chart donut-chart area-chart" }, { @@ -76079,12 +77149,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rxn-input", "npm": { "downloads": 22, - "weekDownloads": 0, + "weekDownloads": 20, "size": 100091, "latestRelease": "0.0.1", "latestReleaseDate": "2022-11-30T06:03:59.091Z" @@ -76094,7 +77165,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -0.95, "topicSearchString": "react typescript react-native input web rxn gamepad keyboard mouse keyboard-events android ios listener gamepad-inputs" }, { @@ -76151,12 +77222,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-perfect-sketch-canvas", "npm": { - "downloads": 496, - "weekDownloads": 112, + "downloads": 502, + "weekDownloads": 86, "size": 80063, "latestRelease": "0.3.0", "latestReleaseDate": "2022-08-03T22:01:13.102Z" @@ -76166,7 +77238,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.557, + "popularity": -0.604, "topicSearchString": "react-native ios android sketch canvas skia react" }, { @@ -76217,12 +77289,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-skia-sketch-canvas", "npm": { - "downloads": 3, + "downloads": 10, "weekDownloads": 0, "size": 57576, "latestRelease": "0.3.1", @@ -76285,12 +77358,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 61, - "weekDownloads": 6, + "downloads": 210, + "weekDownloads": 14, "size": 911621, "latestRelease": "1.1.2", "latestReleaseDate": "2023-06-06T17:49:16.736Z" @@ -76301,7 +77375,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.414, + "popularity": -1.443, "topicSearchString": "react react-native styling tailwind-css" }, { @@ -76363,12 +77437,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-react-bridge", "npm": { - "downloads": 5837, - "weekDownloads": 965, + "downloads": 5748, + "weekDownloads": 1033, "size": 52187, "latestRelease": "0.12.4", "latestReleaseDate": "2025-03-04T22:57:35.288Z" @@ -76378,7 +77453,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.141, + "popularity": 0.153, "topicSearchString": "react react-native expo react-dom preact web metro webview html react-hooks webassembly" }, { @@ -76463,12 +77538,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "reanimated-color-picker", "npm": { - "downloads": 138744, - "weekDownloads": 27789, + "downloads": 133581, + "weekDownloads": 28039, "size": 3713380, "latestRelease": "4.1.1", "latestReleaseDate": "2025-09-11T10:27:28.162Z" @@ -76478,7 +77554,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.178, "topicSearchString": "react-native color-picker expo android ios web reanimated color picker wheel slider swatches palette rgb hex hsl hsv hwb colorkit renimated" }, { @@ -76540,12 +77616,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-material-you-colors", "npm": { - "downloads": 131, - "weekDownloads": 35, + "downloads": 185, + "weekDownloads": 34, "size": 440753, "latestRelease": "0.1.2", "latestReleaseDate": "2023-10-23T11:59:37.795Z" @@ -76554,7 +77631,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.517, + "popularity": -0.592, "topicSearchString": "web react-native palette material-you material-design ios dynamic-color colors android expo palette-generation" }, { @@ -76614,11 +77691,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 42252, - "weekDownloads": 9075, + "downloads": 39779, + "weekDownloads": 8093, "size": 331001, "latestRelease": "0.9.5", "latestReleaseDate": "2024-04-25T15:20:35.662Z" @@ -76628,7 +77706,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.183, + "popularity": 0.173, "topicSearchString": "react-native web maps maps ios android" }, { @@ -76700,11 +77778,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 181378, - "weekDownloads": 34114, + "downloads": 179592, + "weekDownloads": 31878, "size": 205566, "latestRelease": "4.3.0", "latestReleaseDate": "2024-12-20T13:22:58.902Z" @@ -76715,7 +77794,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.151, "topicSearchString": "photo image picture zoom pinch pan reanimated gesture instagram react react-native image-zoom zoom-image zoomable-image zoomable javascript ui-lib rn likashefqet likashefi" }, { @@ -76771,13 +77850,14 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "unmaintained": true, "npmPkg": "expo-music-picker", "npm": { - "downloads": 87, - "weekDownloads": 11, + "downloads": 101, + "weekDownloads": 16, "size": 71006, "latestRelease": "0.1.1", "latestReleaseDate": "2022-07-14T12:21:54.392Z" @@ -76787,7 +77867,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.39, + "popularity": -1.361, "topicSearchString": "react-native expo expo-music-picker music picker music-picker expomusicpicker android ios music-metadata" }, { @@ -76840,12 +77920,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { "downloads": 591, - "weekDownloads": 116, + "weekDownloads": 127, "size": 197655, "latestRelease": "0.5.3", "latestReleaseDate": "2021-04-19T16:27:44.896Z" @@ -76856,7 +77937,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.333, + "popularity": -1.317, "topicSearchString": "react native react-native health-kit google-fit fitness android ios apple-health" }, { @@ -76913,12 +77994,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-outside-press", "npm": { - "downloads": 56810, - "weekDownloads": 9099, + "downloads": 55639, + "weekDownloads": 9855, "size": 50287, "latestRelease": "1.2.2", "latestReleaseDate": "2024-01-02T04:41:39.274Z" @@ -76928,7 +78010,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.136, + "popularity": 0.151, "topicSearchString": "react-native ios android expo react macos web windows reactjs" }, { @@ -76981,12 +78063,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-document-scanner-plugin", "npm": { - "downloads": 82436, - "weekDownloads": 12034, + "downloads": 81071, + "weekDownloads": 14503, "size": 53842, "latestRelease": "2.0.2", "latestReleaseDate": "2025-09-29T22:38:03.550Z" @@ -76997,7 +78080,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.124, + "popularity": 0.152, "topicSearchString": "react-native ios android document-scanner" }, { @@ -77056,12 +78139,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-btr", "npm": { - "downloads": 10305, - "weekDownloads": 1724, + "downloads": 10044, + "weekDownloads": 1533, "size": 20186, "latestRelease": "2.2.2", "latestReleaseDate": "2025-07-25T18:47:49.602Z" @@ -77070,7 +78154,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.13, "topicSearchString": "android ios bottomsheet checkbox collapsible-card color-picker radio-buttons snackbar tags ui-components ui-elements icon-picker" }, { @@ -77101,7 +78185,7 @@ "forks": 18, "issues": 24, "subscribers": 28, - "stars": 283, + "stars": 284, "dependencies": 1 }, "name": "@react-native-ama/core", @@ -77123,11 +78207,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2769, - "weekDownloads": 393, + "downloads": 2670, + "weekDownloads": 495, "size": 81407, "latestRelease": "1.2.1", "latestReleaseDate": "2025-08-07T09:10:45.848Z" @@ -77137,7 +78222,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.121, + "popularity": 0.158, "topicSearchString": "react-native a11y accessibility" }, { @@ -77192,12 +78277,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "vision-camera-dynamsoft-label-recognizer", "npm": { - "downloads": 229, - "weekDownloads": 20, + "downloads": 338, + "weekDownloads": 34, "size": 204902, "latestRelease": "3.1.0", "latestReleaseDate": "2025-02-26T07:43:10.305Z" @@ -77206,7 +78292,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.675, + "popularity": -0.664, "topicSearchString": "react-native mrz machine-readable-zone ocr optical-character-recognition ios android" }, { @@ -77238,7 +78324,7 @@ "forks": 12, "issues": 0, "subscribers": 7, - "stars": 568, + "stars": 569, "dependencies": 0 }, "name": "react-native-fiesta", @@ -77270,12 +78356,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-fiesta", "npm": { - "downloads": 908, - "weekDownloads": 191, + "downloads": 1015, + "weekDownloads": 216, "size": 300788, "latestRelease": "0.7.0", "latestReleaseDate": "2024-06-09T14:00:18.830Z" @@ -77286,7 +78373,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.571, + "popularity": 0.182, "topicSearchString": "react-native ios android @shopify/skia web skia animations react-component javascript react typescript hacktoberfest" }, { @@ -77342,13 +78429,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "vision-camera-ocr", "npm": { - "downloads": 511, - "weekDownloads": 78, + "downloads": 487, + "weekDownloads": 70, "size": 48307, "latestRelease": "1.0.0", "latestReleaseDate": "2022-02-21T22:35:39.641Z" @@ -77359,7 +78447,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.37, + "popularity": -1.377, "topicSearchString": "react-native ios android mobile camera" }, { @@ -77415,11 +78503,12 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 6183, - "weekDownloads": 1322, + "downloads": 5759, + "weekDownloads": 1668, "size": 30013, "latestRelease": "0.5.1", "latestReleaseDate": "2024-02-10T13:33:14.155Z" @@ -77428,7 +78517,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": 0.182, + "popularity": 0.246, "topicSearchString": "react-native react mobile android ui vector image component" }, { @@ -77459,10 +78548,10 @@ "updatedAt": "2025-10-05T17:50:50Z", "createdAt": "2016-06-15T11:58:01Z", "pushedAt": "2025-10-05T17:50:50Z", - "forks": 1885, + "forks": 1884, "issues": 198, "subscribers": 370, - "stars": 11668, + "stars": 11672, "dependencies": 37 }, "name": "detox", @@ -77480,12 +78569,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "detox", "npm": { - "downloads": 1552222, - "weekDownloads": 278810, + "downloads": 1495274, + "weekDownloads": 304936, "size": 14943702, "latestRelease": "20.43.0", "latestReleaseDate": "2025-10-05T17:50:54.218Z" @@ -77499,7 +78589,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.173, "topicSearchString": "" }, { @@ -77558,12 +78648,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-wallet-manager", "npm": { - "downloads": 41654, - "weekDownloads": 6370, + "downloads": 42881, + "weekDownloads": 5935, "size": 52579, "latestRelease": "1.1.1", "latestReleaseDate": "2024-10-17T11:30:04.678Z" @@ -77574,7 +78665,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.13, + "popularity": 0.118, "topicSearchString": "react-native ios android wallet apple-wallet pkpass google-wallet google-wallet-api passkit" }, { @@ -77622,13 +78713,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-wallet-pass", "npm": { - "downloads": 494, - "weekDownloads": 44, + "downloads": 523, + "weekDownloads": 86, "size": 36611, "latestRelease": "1.0.5", "latestReleaseDate": "2021-06-09T15:09:03.102Z" @@ -77638,7 +78730,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.674, + "popularity": -1.61, "topicSearchString": "react-native ios android passkit wallet" }, { @@ -77697,11 +78789,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "nitro" }, "npm": { - "downloads": 27184, - "weekDownloads": 5205, + "downloads": 29496, + "weekDownloads": 5375, "size": 5784001, "latestRelease": "3.11.2", "latestReleaseDate": "2025-10-16T03:57:52.835Z" @@ -77712,7 +78805,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.155, "topicSearchString": "sendbird uikit react-native chat messaging real-time ui-components user-authentication channel-management sdk-integration customizable feature-rich social-app customer-support gaming api" }, { @@ -77736,9 +78829,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-01T00:41:49Z", + "updatedAt": "2025-10-17T05:55:38Z", "createdAt": "2022-01-12T06:21:54Z", - "pushedAt": "2025-10-01T00:41:49Z", + "pushedAt": "2025-10-17T05:55:38Z", "forks": 3, "issues": 0, "subscribers": 6, @@ -77785,21 +78878,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 1590, - "weekDownloads": 309, - "size": 1147001, - "latestRelease": "1.1.9", - "latestReleaseDate": "2025-10-01T00:39:17.628Z" + "downloads": 1693, + "weekDownloads": 276, + "size": 1034268, + "latestRelease": "1.1.10", + "latestReleaseDate": "2025-10-17T05:55:37.488Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.085, + "popularity": -0.111, "topicSearchString": "react-native calls audio-calls video-calls group-calls voice-calls conference-calls communication video-chat real-time webrtc voip call-kit callkeep voip-push-notification audio callkit conference javascript reactnative reactnativecalls sendbird typescript" }, { @@ -77858,12 +78952,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rxn-units", "npm": { - "downloads": 168, - "weekDownloads": 25, + "downloads": 149, + "weekDownloads": 47, "size": 7596, "latestRelease": "0.1.7", "latestReleaseDate": "2022-12-30T00:47:41.488Z" @@ -77872,7 +78967,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.622, + "popularity": -0.481, "topicSearchString": "react typescript react-native units web expo rxn viewport viewport-units reactjs vh" }, { @@ -77923,11 +79018,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1220, - "weekDownloads": 196, + "downloads": 1308, + "weekDownloads": 194, "size": 64555, "latestRelease": "1.9.0", "latestReleaseDate": "2025-07-13T10:06:52.132Z" @@ -77937,7 +79033,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.137, + "popularity": 0.126, "topicSearchString": "react-native" }, { @@ -77984,13 +79080,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-video-cache", "npm": { - "downloads": 24944, - "weekDownloads": 4657, + "downloads": 24554, + "weekDownloads": 4636, "size": 80219, "latestRelease": "2.7.4", "latestReleaseDate": "2023-09-28T01:09:25.708Z" @@ -78001,7 +79098,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.59, "topicSearchString": "react-native" }, { @@ -78025,7 +79122,7 @@ "forks": 103, "issues": 21, "subscribers": 9, - "stars": 266, + "stars": 267, "dependencies": 1 }, "name": "react-native-bluetooth-classic", @@ -78051,12 +79148,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-bluetooth-classic", "npm": { - "downloads": 17693, - "weekDownloads": 3779, + "downloads": 17501, + "weekDownloads": 3633, "size": 340030, "latestRelease": "1.73.0-rc.15", "latestReleaseDate": "2025-09-26T13:08:54.135Z" @@ -78067,7 +79165,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.182, + "popularity": 0.176, "topicSearchString": "react-native bluetooth-classic bluetooth-adapter android external-accessory ios bluetooth" }, { @@ -78116,12 +79214,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-cloud-store", "npm": { - "downloads": 14457, - "weekDownloads": 2395, + "downloads": 15191, + "weekDownloads": 2291, "size": 221149, "latestRelease": "0.12.0", "latestReleaseDate": "2024-04-11T05:51:23.622Z" @@ -78131,7 +79230,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.141, + "popularity": 0.128, "topicSearchString": "react-native ios android icloud swift react" }, { @@ -78190,13 +79289,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-clocks", "npm": { - "downloads": 16, - "weekDownloads": 1, + "downloads": 24, + "weekDownloads": 2, "size": 167694, "latestRelease": "0.1.1", "latestReleaseDate": "2023-09-30T11:34:11.451Z" @@ -78206,7 +79306,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.433, + "popularity": -1.42, "topicSearchString": "react-native ios android clock react web skia time javascript typescript" }, { @@ -78259,12 +79359,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 129, - "weekDownloads": 19, + "downloads": 150, + "weekDownloads": 15, "size": 19730, "latestRelease": "0.3.1", "latestReleaseDate": "2023-05-30T11:40:43.640Z" @@ -78274,7 +79375,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.623, + "popularity": -1.664, "topicSearchString": "react-native react expo picker select" }, { @@ -78328,12 +79429,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 51, - "weekDownloads": 8, + "downloads": 55, + "weekDownloads": 7, "size": 20317, "latestRelease": "0.1.4", "latestReleaseDate": "2022-10-03T16:32:29.200Z" @@ -78343,7 +79445,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.617, + "popularity": -1.633, "topicSearchString": "react-native react expo snackbar popup notification" }, { @@ -78375,7 +79477,7 @@ "forks": 21, "issues": 3, "subscribers": 3, - "stars": 330, + "stars": 331, "dependencies": 0 }, "name": "react-native-volume-manager", @@ -78403,12 +79505,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-volume-manager", "npm": { - "downloads": 102553, - "weekDownloads": 22541, + "downloads": 97926, + "weekDownloads": 21772, "size": 240484, "latestRelease": "2.0.8", "latestReleaseDate": "2024-12-23T13:58:26.362Z" @@ -78419,7 +79522,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.187, + "popularity": 0.189, "topicSearchString": "react-native ios expo volume mute silent android react" }, { @@ -78470,12 +79573,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "amazon-ivs-react-native-player", "npm": { - "downloads": 6647, - "weekDownloads": 1044, + "downloads": 7159, + "weekDownloads": 1075, "size": 204354489, "latestRelease": "1.5.0", "latestReleaseDate": "2024-02-20T20:44:39.220Z" @@ -78485,7 +79589,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.134, + "popularity": 0.128, "topicSearchString": "react-native ios android amazon-ivs" }, { @@ -78517,13 +79621,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T08:17:02Z", + "updatedAt": "2025-10-17T14:38:55Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-10-16T08:17:02Z", - "forks": 9188, - "issues": 379, + "pushedAt": "2025-10-17T14:38:55Z", + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 23 }, "name": "expo-router", @@ -78545,12 +79649,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-router", "npm": { - "downloads": 3762536, - "weekDownloads": 727339, + "downloads": 3678126, + "weekDownloads": 711172, "size": 2441201, "latestRelease": "6.0.12", "latestReleaseDate": "2025-10-10T18:56:30.434Z" @@ -78618,12 +79723,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-help-create", "npm": { - "downloads": 147, - "weekDownloads": 1, + "downloads": 283, + "weekDownloads": 3, "size": 115710, "latestRelease": "2.7.0", "latestReleaseDate": "2022-09-30T14:37:41.706Z" @@ -78633,7 +79739,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.744, + "popularity": -0.741, "topicSearchString": "react-native help-create rnhc mobile-development best-practice best-practices cross-platform redux typescript javascript" }, { @@ -78694,11 +79800,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 10, + "downloads": 13, "weekDownloads": 0, "size": 263300, "latestRelease": "0.1.2", @@ -78771,11 +79878,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 465, - "weekDownloads": 50, + "downloads": 550, + "weekDownloads": 62, "size": 146257, "latestRelease": "3.0.1", "latestReleaseDate": "2025-05-09T08:30:14.759Z" @@ -78786,7 +79894,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.658, + "popularity": -0.654, "topicSearchString": "react-native basic-components tabbar react-tab reactnative reactnative-animation-challenges react-animation navigation component library easy-to-use" }, { @@ -78845,11 +79953,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 90, - "weekDownloads": 11, + "downloads": 121, + "weekDownloads": 7, "size": 43006, "latestRelease": "0.0.4", "latestReleaseDate": "2023-12-20T10:24:44.976Z" @@ -78859,7 +79968,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.645, + "popularity": -0.7, "topicSearchString": "react-native ios android header navbar rn-header actionbar navigation-header top-navigation-bar reactnative mobile-app" }, { @@ -78923,11 +80032,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 78, + "downloads": 118, "weekDownloads": 0, "size": 12266, "latestRelease": "1.0.4", @@ -78999,12 +80109,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 338, - "weekDownloads": 63, + "downloads": 358, + "weekDownloads": 58, "size": 100280, "latestRelease": "1.2.1", "latestReleaseDate": "2022-11-22T06:23:58.376Z" @@ -79014,7 +80125,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.341, + "popularity": -1.362, "topicSearchString": "stagger-view rn-stagger-view stagger-list rn-stagger-list react-native reactnative-list-view" }, { @@ -79071,7 +80182,8 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": {}, "score": 32, @@ -79142,11 +80254,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 40, + "downloads": 47, "weekDownloads": 6, "size": 51785, "latestRelease": "1.0.2", @@ -79157,7 +80270,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.617, + "popularity": -1.641, "topicSearchString": "react-native ios android animation progress-view svg speedview speed-meter speed-progress speed-view runningspeed react" }, { @@ -79208,11 +80321,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 53913, - "weekDownloads": 10561, + "downloads": 50549, + "weekDownloads": 9687, "size": 2175612, "latestRelease": "1.3.1", "latestReleaseDate": "2024-02-08T13:16:20.215Z" @@ -79223,7 +80337,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.163, "topicSearchString": "react-native ios android" }, { @@ -79278,13 +80392,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "expo-split-pane", "npm": { - "downloads": 40, - "weekDownloads": 3, + "downloads": 123, + "weekDownloads": 4, "size": 31794, "latestRelease": "0.4.1", "latestReleaseDate": "2022-11-13T05:15:51.554Z" @@ -79294,7 +80409,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.683, + "popularity": -1.721, "topicSearchString": "react expo react-native web split divider movable" }, { @@ -79327,7 +80442,7 @@ "forks": 26, "issues": 15, "subscribers": 1, - "stars": 278, + "stars": 279, "dependencies": 7 }, "name": "react-native-marked", @@ -79353,12 +80468,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-marked", "npm": { - "downloads": 48057, - "weekDownloads": 8403, + "downloads": 46793, + "weekDownloads": 8766, "size": 210930, "latestRelease": "7.0.2", "latestReleaseDate": "2025-06-28T05:46:26.001Z" @@ -79369,7 +80485,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.159, "topicSearchString": "react-native markdown react renderer marked-js typescript" }, { @@ -79417,12 +80533,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-style-queries", "npm": { - "downloads": 51, - "weekDownloads": 4, + "downloads": 53, + "weekDownloads": 3, "size": 30464, "latestRelease": "0.1.1", "latestReleaseDate": "2022-08-29T13:34:07.724Z" @@ -79432,7 +80549,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.933, + "popularity": -0.95, "topicSearchString": "" }, { @@ -79497,12 +80614,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-autocomplete-dropdown", "npm": { - "downloads": 71678, - "weekDownloads": 13605, + "downloads": 68748, + "weekDownloads": 12060, "size": 271247, "latestRelease": "5.0.0", "latestReleaseDate": "2025-05-07T13:31:58.206Z" @@ -79512,7 +80630,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.149, "topicSearchString": "react-native dropdown autocomplete picker typeahead select android ios dropdown-menu autocomplete-suggestions hacktoberfest" }, { @@ -79566,12 +80684,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fast-shadow", "npm": { - "downloads": 29590, - "weekDownloads": 5521, + "downloads": 28078, + "weekDownloads": 5782, "size": 50559, "latestRelease": "0.1.1", "latestReleaseDate": "2024-08-05T10:01:19.279Z" @@ -79581,7 +80700,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.175, "topicSearchString": "react-native shadow android" }, { @@ -79636,11 +80755,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 10750, - "weekDownloads": 1857, + "downloads": 10332, + "weekDownloads": 1897, "size": 1984351, "latestRelease": "2.5.6", "latestReleaseDate": "2025-10-10T05:53:18.944Z" @@ -79651,7 +80771,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.156, "topicSearchString": "react-native ios android calendar-kit calendar-week-view" }, { @@ -79715,13 +80835,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tooltiplize", "npm": { - "downloads": 292, - "weekDownloads": 52, + "downloads": 303, + "weekDownloads": 48, "size": 156244, "latestRelease": "0.3.0", "latestReleaseDate": "2022-11-09T03:36:08.677Z" @@ -79731,7 +80852,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.347, + "popularity": -1.365, "topicSearchString": "react-native ios android web tooltip tooltiplize tooltip-lib popover popover-view" }, { @@ -79752,9 +80873,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-16T05:50:36Z", + "updatedAt": "2025-10-17T09:44:25Z", "createdAt": "2022-10-31T08:02:32Z", - "pushedAt": "2025-10-16T05:50:36Z", + "pushedAt": "2025-10-17T09:44:25Z", "forks": 5, "issues": 2, "subscribers": 5, @@ -79789,12 +80910,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "vision-camera-dynamsoft-document-normalizer", "npm": { - "downloads": 527, - "weekDownloads": 111, + "downloads": 498, + "weekDownloads": 55, "size": 87550, "latestRelease": "4.1.0", "latestReleaseDate": "2025-10-14T08:09:52.174Z" @@ -79804,7 +80926,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.571, + "popularity": -0.656, "topicSearchString": "react-native ios android document-scanning document-scanner document-scan document-detection perspective-transformation crop automatic" }, { @@ -79859,13 +80981,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-match-media-polyfill", "npm": { - "downloads": 16945, - "weekDownloads": 3171, + "downloads": 16385, + "weekDownloads": 2189, "size": 14147, "latestRelease": "1.0.3", "latestReleaseDate": "2020-01-17T19:28:00.965Z" @@ -79875,7 +80998,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.841, + "popularity": -0.886, "topicSearchString": "component react-component react-native ios media query responsive matchmedia mediaquery web react-responsive" }, { @@ -79918,12 +81041,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-ridge-state", "npm": { - "downloads": 3811, - "weekDownloads": 671, + "downloads": 3877, + "weekDownloads": 1093, "size": 28071, "latestRelease": "4.2.9", "latestReleaseDate": "2022-08-02T14:54:02.006Z" @@ -79933,7 +81057,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.24, "topicSearchString": "" }, { @@ -79981,13 +81105,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-paper-autocomplete", "npm": { - "downloads": 300, - "weekDownloads": 29, + "downloads": 410, + "weekDownloads": 15, "size": 351937, "latestRelease": "0.12.0", "latestReleaseDate": "2023-09-27T06:29:22.879Z" @@ -79997,7 +81122,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.667, + "popularity": -1.719, "topicSearchString": "react-native ios android" }, { @@ -80054,12 +81179,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "unmaintained": true, "npm": { - "downloads": 95554, - "weekDownloads": 19256, + "downloads": 89763, + "weekDownloads": 18481, "size": 14630, "latestRelease": "0.4.0", "latestReleaseDate": "2022-10-06T20:45:28.118Z" @@ -80070,7 +81196,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.575, "topicSearchString": "css css-in-js match-media expo expo-web react react-native web responsive breakpoint polyfill" }, { @@ -80136,12 +81262,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-form-component", "npm": { - "downloads": 405, - "weekDownloads": 71, + "downloads": 1138, + "weekDownloads": 54, "size": 265021, "latestRelease": "2.6.14", "latestReleaseDate": "2024-01-19T07:02:12.659Z" @@ -80151,7 +81278,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, + "popularity": 0.04, "topicSearchString": "react-native ios android form validated-form form-component component web picker pin-input otp validation declarative modal" }, { @@ -80214,13 +81341,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-confetti-cannon", "npm": { - "downloads": 363131, - "weekDownloads": 64882, + "downloads": 352002, + "weekDownloads": 76270, "size": 25243, "latestRelease": "1.5.2", "latestReleaseDate": "2021-03-03T11:57:14.300Z" @@ -80232,7 +81360,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, + "popularity": -0.566, "topicSearchString": "react react-native web confetti cannon explosion fall animation animated particles ios android" }, { @@ -80291,12 +81419,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-big-calendar", "npm": { - "downloads": 19087, - "weekDownloads": 3176, + "downloads": 19295, + "weekDownloads": 3237, "size": 619229, "latestRelease": "4.18.6", "latestReleaseDate": "2025-09-23T23:42:07.386Z" @@ -80309,7 +81438,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.141, + "popularity": 0.143, "topicSearchString": "react react-native web cross-platform calendar calendar-view calendar-component" }, { @@ -80372,13 +81501,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "expo-image-editor", "npm": { - "downloads": 1014, - "weekDownloads": 200, + "downloads": 1011, + "weekDownloads": 150, "size": 422831, "latestRelease": "1.7.1", "latestReleaseDate": "2021-10-18T13:01:07.627Z" @@ -80389,7 +81519,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, + "popularity": -0.623, "topicSearchString": "react react-native image image-editor image-cropping blur expo web" }, { @@ -80418,9 +81548,9 @@ "createdAt": "2022-04-02T12:30:41Z", "pushedAt": "2025-10-12T08:25:36Z", "forks": 366, - "issues": 67, + "issues": 68, "subscribers": 31, - "stars": 7133, + "stars": 7146, "dependencies": 1 }, "name": "nativewind", @@ -80449,12 +81579,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "nativewind", "npm": { - "downloads": 1606086, - "weekDownloads": 315433, + "downloads": 1560245, + "weekDownloads": 304574, "size": 415554, "latestRelease": "4.2.1", "latestReleaseDate": "2025-09-14T22:51:13.080Z" @@ -80467,7 +81598,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.166, "topicSearchString": "react-native react native tailwind tailwindcss theme style css web nativewind" }, { @@ -80528,12 +81659,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 9, - "weekDownloads": 1, + "downloads": 22, + "weekDownloads": 0, "size": 10820, "latestRelease": "1.0.1", "latestReleaseDate": "2022-12-06T09:24:49.650Z" @@ -80543,7 +81675,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.65, + "popularity": -1, "topicSearchString": "react-native react native modal android ios backdrop simple animated" }, { @@ -80601,12 +81733,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-snackbar-component", "npm": { - "downloads": 3475, - "weekDownloads": 683, + "downloads": 3167, + "weekDownloads": 581, "size": 310542, "latestRelease": "1.1.12", "latestReleaseDate": "2021-08-16T21:00:09.447Z" @@ -80617,7 +81750,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.156, "topicSearchString": "snackbar material design android ios notifications react-native material-design" }, { @@ -80672,13 +81805,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "expo-image-crop", "npm": { - "downloads": 869, - "weekDownloads": 96, + "downloads": 1171, + "weekDownloads": 157, "size": 3584603, "latestRelease": "1.0.4", "latestReleaseDate": "2020-03-04T11:40:14.865Z" @@ -80688,7 +81822,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.406, + "popularity": -0.636, "topicSearchString": "expo react-native crop image rotate" }, { @@ -80746,11 +81880,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 92, - "weekDownloads": 10, + "downloads": 513, + "weekDownloads": 27, "size": 79202, "latestRelease": "1.0.7", "latestReleaseDate": "2024-05-07T09:46:19.676Z" @@ -80760,7 +81895,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.905, + "popularity": -0.955, "topicSearchString": "expo-maps-polygon-editor maps polygon editor expo polygon-editor" }, { @@ -80820,12 +81955,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 221, - "weekDownloads": 33, + "downloads": 247, + "weekDownloads": 35, "size": 5247311, "latestRelease": "2.0.1", "latestReleaseDate": "2022-11-30T16:45:59.483Z" @@ -80835,7 +81971,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.373, + "popularity": -1.379, "topicSearchString": "react-native ios android maps draw maps-draw canvas polygon-overlay expo" }, { @@ -80891,12 +82027,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-skia-gesture", "npm": { - "downloads": 1194, - "weekDownloads": 157, + "downloads": 1138, + "weekDownloads": 289, "size": 81619, "latestRelease": "0.4.0", "latestReleaseDate": "2025-05-27T09:31:59.916Z" @@ -80905,7 +82042,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.112, + "popularity": 0.216, "topicSearchString": "react-native ios android gestures skia" }, { @@ -80931,10 +82068,10 @@ "updatedAt": "2025-10-09T00:03:40Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-09T00:03:40Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 2 }, "name": "expo-system-ui", @@ -80959,12 +82096,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-system-ui", "npm": { - "downloads": 3278284, - "weekDownloads": 640072, + "downloads": 3187406, + "weekDownloads": 616411, "size": 76586, "latestRelease": "6.0.7", "latestReleaseDate": "2025-09-10T18:40:26.974Z" @@ -80978,7 +82116,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.164, "topicSearchString": "react-native expo background-color user-interface appearance" }, { @@ -81031,12 +82169,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 218, - "weekDownloads": 86, + "downloads": 425, + "weekDownloads": 45, "size": 12910, "latestRelease": "1.0.7", "latestReleaseDate": "2023-04-09T12:56:31.280Z" @@ -81046,7 +82185,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.413, + "popularity": -1.66, "topicSearchString": "onboarding react-native flatlist swipeable indicator" }, { @@ -81107,12 +82246,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 234, - "weekDownloads": 25, + "downloads": 321, + "weekDownloads": 37, "size": 34079, "latestRelease": "0.0.21", "latestReleaseDate": "2022-12-16T16:23:45.281Z" @@ -81122,7 +82262,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.659, + "popularity": -1.651, "topicSearchString": "react-native react native android ios tabbed-sections tabbed-section-list scrollview flatlist sectionlist scroll tabs" }, { @@ -81173,12 +82313,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-performance-limiter", "npm": { - "downloads": 26708, - "weekDownloads": 8748, + "downloads": 22678, + "weekDownloads": 5769, "size": 46499, "latestRelease": "0.3.0", "latestReleaseDate": "2025-04-29T14:40:58.212Z" @@ -81188,7 +82329,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.278, + "popularity": -0.034, "topicSearchString": "react-native ios android performance" }, { @@ -81252,12 +82393,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-basic-carousel", "npm": { - "downloads": 1514, - "weekDownloads": 361, + "downloads": 1487, + "weekDownloads": 306, "size": 39177, "latestRelease": "1.1.2", "latestReleaseDate": "2024-02-01T14:37:57.718Z" @@ -81267,7 +82409,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.047, + "popularity": -0.075, "topicSearchString": "react-native carousel react slide slider swiper images scroll items snap android ios snapping autoplay" }, { @@ -81339,13 +82481,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-stories-view", "npm": { - "downloads": 5058, - "weekDownloads": 915, + "downloads": 4518, + "weekDownloads": 910, "size": 49527, "latestRelease": "1.0.9", "latestReleaseDate": "2021-12-03T12:52:15.186Z" @@ -81356,7 +82499,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.579, "topicSearchString": "react-native react-component component react mobile ios android ui story stories status whatsapp instagram cross-platform typescript hooks javascript react-hooks react-dom useeffect usestate" }, { @@ -81406,12 +82549,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-settings", "npm": { - "downloads": 6630, - "weekDownloads": 1394, + "downloads": 6497, + "weekDownloads": 1084, "size": 42668, "latestRelease": "1.0.2", "latestReleaseDate": "2025-06-10T14:13:32.068Z" @@ -81421,7 +82565,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.179, + "popularity": 0.142, "topicSearchString": "react-native settings android xcode" }, { @@ -81480,13 +82624,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-system-setting", "npm": { - "downloads": 68809, - "weekDownloads": 15498, + "downloads": 65789, + "weekDownloads": 15007, "size": 107553, "latestRelease": "1.7.6", "latestReleaseDate": "2020-10-11T08:08:16.557Z" @@ -81497,7 +82642,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.559, + "popularity": -0.556, "topicSearchString": "react-native system setting volume wifi brightness location bluetooth airplane" }, { @@ -81553,12 +82698,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-actions-shortcuts", "npm": { - "downloads": 6956, - "weekDownloads": 1643, + "downloads": 6421, + "weekDownloads": 1346, "size": 1081121, "latestRelease": "1.0.1", "latestReleaseDate": "2020-07-29T06:22:41.789Z" @@ -81568,7 +82714,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.201, + "popularity": 0.178, "topicSearchString": "react-native ios android quick-actions app-shortcuts home-screen actions uiapplicationshortcutitem shortcut shortcuts" }, { @@ -81594,9 +82740,9 @@ "createdAt": "2020-06-26T22:40:28Z", "pushedAt": "2025-10-15T01:58:41Z", "forks": 66, - "issues": 13, + "issues": 14, "subscribers": 10, - "stars": 515, + "stars": 519, "dependencies": 0 }, "name": "@kingstinct/react-native-healthkit", @@ -81622,11 +82768,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "nitro" }, "npm": { - "downloads": 47050, - "weekDownloads": 8120, + "downloads": 46613, + "weekDownloads": 8312, "size": 2412650, "latestRelease": "11.1.1", "latestReleaseDate": "2025-10-15T02:04:30.326Z" @@ -81637,7 +82784,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.152, "topicSearchString": "react-native nitro healthkit ios typescript" }, { @@ -81690,12 +82837,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "react-native-hotkeys", "npm": { - "downloads": 1453, - "weekDownloads": 455, + "downloads": 1286, + "weekDownloads": 337, "size": 112904, "latestRelease": "0.5.9", "latestReleaseDate": "2024-02-03T17:45:33.671Z" @@ -81705,7 +82853,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.017, + "popularity": -0.027, "topicSearchString": "react-native expo hotkeys reactnativekeys ios web" }, { @@ -81764,13 +82912,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-chunk-upload", "npm": { - "downloads": 512, - "weekDownloads": 65, + "downloads": 500, + "weekDownloads": 57, "size": 60930, "latestRelease": "2.0.3", "latestReleaseDate": "2021-09-11T09:33:47.337Z" @@ -81780,7 +82929,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.392, + "popularity": -1.403, "topicSearchString": "upload chunk chunk-upload chunked-upload resume resumable resumable-upload component reactnative react-native android ios javascript upload-file chunked-uploads blob" }, { @@ -81859,13 +83008,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-dropdown-picker", "npm": { - "downloads": 435405, - "weekDownloads": 87409, + "downloads": 417752, + "weekDownloads": 81882, "size": 161182, "latestRelease": "5.4.6", "latestReleaseDate": "2023-03-09T23:26:38.932Z" @@ -81878,7 +83028,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.583, "topicSearchString": "picker dropdown drop-down menu item multiple single theme localization customizable placeholder categorizable category search searchable sub-item context component rtl rtl-support react reactnative react-native android ios javascript select" }, { @@ -81903,7 +83053,7 @@ "updatedAt": "2024-10-24T22:06:18Z", "createdAt": "2022-12-01T07:56:48Z", "pushedAt": "2024-10-24T22:06:18Z", - "forks": 17, + "forks": 18, "issues": 4, "subscribers": 2, "stars": 42, @@ -81932,12 +83082,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-libsodium", "npm": { - "downloads": 4788, - "weekDownloads": 1221, + "downloads": 4565, + "weekDownloads": 992, "size": 13596239, "latestRelease": "1.4.0", "latestReleaseDate": "2024-06-11T17:29:58.900Z" @@ -81947,7 +83098,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.217, + "popularity": 0.185, "topicSearchString": "react-native ios android libsodium sodium type" }, { @@ -82009,12 +83160,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 1517, - "weekDownloads": 369, + "downloads": 1351, + "weekDownloads": 248, "size": 52394, "latestRelease": "1.1.2", "latestReleaseDate": "2022-01-16T06:53:01.961Z" @@ -82025,7 +83177,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.543, + "popularity": -0.594, "topicSearchString": "react-native react-component component react mobile ios android ui segmented-control typescript" }, { @@ -82071,12 +83223,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-screenshot-prevent", "npm": { - "downloads": 45324, - "weekDownloads": 8531, + "downloads": 43909, + "weekDownloads": 7758, "size": 68966, "latestRelease": "1.2.1", "latestReleaseDate": "2024-06-02T20:47:09.480Z" @@ -82087,7 +83240,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.15, "topicSearchString": "react-native ios android" }, { @@ -82146,12 +83299,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-hyperlinks", "npm": { - "downloads": 1608, - "weekDownloads": 410, + "downloads": 1503, + "weekDownloads": 337, "size": 35002, "latestRelease": "1.0.4", "latestReleaseDate": "2023-01-05T20:53:35.481Z" @@ -82161,7 +83315,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.217, + "popularity": 0.191, "topicSearchString": "react-native react link links hyperlink hyperlinks hyper-link hypertext rn typescript fuzzy-links hashtag mention url" }, { @@ -82220,12 +83374,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-reanimated-image-viewer", "npm": { - "downloads": 1259, - "weekDownloads": 220, + "downloads": 1188, + "weekDownloads": 255, "size": 61616, "latestRelease": "1.0.2", "latestReleaseDate": "2023-01-05T17:30:40.752Z" @@ -82235,7 +83390,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.183, "topicSearchString": "react-native react reanimated image image-viewer image-viewing viewer viewing pinch pan zoom double-tap rn typescript" }, { @@ -82302,13 +83457,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-unicorn-modals", "npm": { - "downloads": 62, - "weekDownloads": 10, + "downloads": 128, + "weekDownloads": 4, "size": 164454, "latestRelease": "0.5.1", "latestReleaseDate": "2023-03-03T14:46:06.912Z" @@ -82318,7 +83474,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.357, + "popularity": -1.473, "topicSearchString": "react-native expo modal popup react native ios android reanimated alert typescript dialog menu reanimated2" }, { @@ -82379,11 +83535,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3039, - "weekDownloads": 582, + "downloads": 2881, + "weekDownloads": 511, "size": 68022, "latestRelease": "1.0.0", "latestReleaseDate": "2023-09-02T15:55:00.078Z" @@ -82394,7 +83551,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.151, "topicSearchString": "react-native ios android animated scrollview expo flatlist react" }, { @@ -82448,13 +83605,14 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-appearance-control", "npm": { - "downloads": 2073, - "weekDownloads": 140, + "downloads": 2062, + "weekDownloads": 1285, "size": 52885, "latestRelease": "0.3.4", "latestReleaseDate": "2023-01-10T21:45:24.203Z" @@ -82464,7 +83622,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.943, + "popularity": -0.47, "topicSearchString": "react-native ios android dark-mode night-mode appearance user-interface-style" }, { @@ -82513,13 +83671,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-code-push-dev-menu", "npm": { - "downloads": 42, - "weekDownloads": 3, + "downloads": 58, + "weekDownloads": 5, "size": 17917, "latestRelease": "1.0.1", "latestReleaseDate": "2023-01-15T20:37:16.970Z" @@ -82529,7 +83688,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.683, + "popularity": -1.673, "topicSearchString": "cicd codepush reactnative" }, { @@ -82555,7 +83714,7 @@ "createdAt": "2022-08-27T13:38:37Z", "pushedAt": "2025-10-02T17:00:12Z", "forks": 29, - "issues": 3, + "issues": 4, "subscribers": 3, "stars": 742, "dependencies": 0 @@ -82582,12 +83741,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-android-widget", "npm": { - "downloads": 14302, - "weekDownloads": 3127, + "downloads": 13418, + "weekDownloads": 2942, "size": 389553, "latestRelease": "0.17.2", "latestReleaseDate": "2025-10-02T17:00:09.950Z" @@ -82650,13 +83810,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-apple-mapkit-directions", "npm": { - "downloads": 251, - "weekDownloads": 10, + "downloads": 339, + "weekDownloads": 11, "size": 27294, "latestRelease": "1.2.1", "latestReleaseDate": "2023-01-30T15:49:09.909Z" @@ -82666,7 +83827,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.716, + "popularity": -1.722, "topicSearchString": "react-native ios apple mapkit directions maps" }, { @@ -82690,7 +83851,7 @@ "forks": 10, "issues": 1, "subscribers": 1, - "stars": 29, + "stars": 30, "dependencies": 0 }, "name": "react-native-circular-chart", @@ -82716,13 +83877,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-circular-chart", "npm": { - "downloads": 4300, - "weekDownloads": 980, + "downloads": 3981, + "weekDownloads": 908, "size": 239516, "latestRelease": "1.0.9", "latestReleaseDate": "2023-01-25T01:42:28.064Z" @@ -82765,7 +83927,7 @@ "forks": 94, "issues": 3, "subscribers": 17, - "stars": 2011, + "stars": 2013, "dependencies": 3 }, "name": "@data-client/react", @@ -82823,11 +83985,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4510, - "weekDownloads": 808, + "downloads": 4303, + "weekDownloads": 954, "size": 1872886, "latestRelease": "0.14.25", "latestReleaseDate": "2025-03-12T17:52:13.394Z" @@ -82839,7 +84002,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.189, "topicSearchString": "react data cache flux suspense fetch hook networking async concurrent-mode typescript async data-fetching data-cache reactive state-management api-client api normalized-cache swr query front-end mobile react-native ios android web expo expogo nextjs middleware websocket rest graphql rpc sse declarative dynamic-data mutations" }, { @@ -82893,11 +84056,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 494, - "weekDownloads": 125, + "downloads": 644, + "weekDownloads": 144, "size": 152857, "latestRelease": "2.1.0", "latestReleaseDate": "2025-07-31T16:42:51.059Z" @@ -82906,7 +84070,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.784, + "popularity": -0.809, "topicSearchString": "react-native mytracker react native my.com" }, { @@ -82960,11 +84124,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 255, - "weekDownloads": 56, + "downloads": 663, + "weekDownloads": 72, "size": 380856, "latestRelease": "0.14.1", "latestReleaseDate": "2024-09-03T14:26:51.416Z" @@ -82974,7 +84139,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.563, + "popularity": -0.658, "topicSearchString": "react-native react maps osmdroid open-street-maps osm android" }, { @@ -83024,11 +84189,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 84429, - "weekDownloads": 17234, + "downloads": 79547, + "weekDownloads": 16363, "size": 558161, "latestRelease": "1.2.0", "latestReleaseDate": "2024-07-06T12:43:53.805Z" @@ -83039,7 +84205,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.175, "topicSearchString": "react-native ios android idfa aaid advertising" }, { @@ -83062,7 +84228,7 @@ "updatedAt": "2025-09-07T17:04:19Z", "createdAt": "2023-01-07T02:59:05Z", "pushedAt": "2025-09-07T17:04:19Z", - "forks": 79, + "forks": 78, "issues": 60, "subscribers": 10, "stars": 338, @@ -83091,12 +84257,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-health-connect", "npm": { - "downloads": 53090, - "weekDownloads": 10220, + "downloads": 52173, + "weekDownloads": 10058, "size": 435448, "latestRelease": "3.4.0", "latestReleaseDate": "2025-09-07T15:14:26.097Z" @@ -83165,12 +84332,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-simple-line-chart", "npm": { - "downloads": 3749, - "weekDownloads": 682, + "downloads": 3483, + "weekDownloads": 476, "size": 406533, "latestRelease": "0.39.1", "latestReleaseDate": "2025-10-07T08:07:02.743Z" @@ -83180,7 +84348,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.116, "topicSearchString": "react-native line-chart charts chart-library ui-component graphs android chart ios line reanimated reanimated3" }, { @@ -83239,12 +84407,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-qrcode-styled", "npm": { - "downloads": 98604, - "weekDownloads": 27382, + "downloads": 87817, + "weekDownloads": 20534, "size": 259634, "latestRelease": "0.4.0", "latestReleaseDate": "2025-08-27T23:53:42.745Z" @@ -83254,7 +84423,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.236, + "popularity": 0.199, "topicSearchString": "react-native qrcode svg qrcode-svg qrcode-styled qr-generator rn-qr-generator" }, { @@ -83278,10 +84447,10 @@ "updatedAt": "2025-08-15T23:19:06Z", "createdAt": "2014-03-11T06:09:42Z", "pushedAt": "2025-08-15T23:19:06Z", - "forks": 10320, - "issues": 3328, + "forks": 10322, + "issues": 3329, "subscribers": 1430, - "stars": 37264, + "stars": 37274, "dependencies": 5 }, "name": "@microsoft/signalr", @@ -83302,11 +84471,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3641749, - "weekDownloads": 662143, + "downloads": 3501422, + "weekDownloads": 665528, "size": 2831580, "latestRelease": "9.0.6", "latestReleaseDate": "2025-07-31T21:32:33.010Z" @@ -83319,7 +84489,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.162, "topicSearchString": "signalr aspnetcore" }, { @@ -83351,7 +84521,7 @@ "forks": 48, "issues": 6, "subscribers": 2, - "stars": 260, + "stars": 261, "dependencies": 0 }, "name": "rn-vertical-slider", @@ -83380,12 +84550,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-vertical-slider", "npm": { - "downloads": 3490, - "weekDownloads": 661, + "downloads": 3383, + "weekDownloads": 568, "size": 40664, "latestRelease": "4.4.1", "latestReleaseDate": "2025-07-12T23:20:45.660Z" @@ -83395,7 +84566,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.143, "topicSearchString": "react-native ios android vertical-slider column-slider rn rn-vertical-slider slider vertical" }, { @@ -83447,11 +84618,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2425, - "weekDownloads": 490, + "downloads": 2341, + "weekDownloads": 550, "size": 278045, "latestRelease": "0.2.1", "latestReleaseDate": "2024-02-20T09:54:28.673Z" @@ -83462,7 +84634,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.2, "topicSearchString": "react-native ios android" }, { @@ -83516,13 +84688,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-chatgpt", "npm": { - "downloads": 1433, - "weekDownloads": 19, + "downloads": 1569, + "weekDownloads": 14, "size": 176379, "latestRelease": "0.9.0", "latestReleaseDate": "2023-01-29T21:21:45.615Z" @@ -83533,7 +84706,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.739, + "popularity": -0.742, "topicSearchString": "react-native ios android chatbot chatgpt react" }, { @@ -83565,7 +84738,7 @@ "forks": 60, "issues": 6, "subscribers": 3, - "stars": 162, + "stars": 163, "dependencies": 0 }, "name": "react-native-amazing-cropper", @@ -83593,12 +84766,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-amazing-cropper", "npm": { "downloads": 258, - "weekDownloads": 59, + "weekDownloads": 38, "size": 207892, "latestRelease": "0.2.8", "latestReleaseDate": "2025-03-30T15:15:47.096Z" @@ -83609,7 +84783,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.553, + "popularity": -0.623, "topicSearchString": "react-native react crop rotate image cropper rotation ios android" }, { @@ -83658,21 +84832,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8184, - "weekDownloads": 934, + "downloads": 44181, + "weekDownloads": 940, "size": 281094, "latestRelease": "53.0.2", "latestReleaseDate": "2025-09-24T15:56:14.623Z" }, - "score": 49, + "score": 57, "matchingScoreModifiers": [ + "Known", "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.097, + "popularity": 0.018, "topicSearchString": "react-native ios android" }, { @@ -83700,7 +84876,7 @@ "forks": 83, "issues": 7, "subscribers": 37, - "stars": 1162, + "stars": 1163, "dependencies": 3 }, "name": "css-to-react-native", @@ -83724,12 +84900,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "css-to-react-native", "npm": { - "downloads": 31496089, - "weekDownloads": 5889822, + "downloads": 30437772, + "weekDownloads": 5695745, "size": 90021, "latestRelease": "3.2.0", "latestReleaseDate": "2023-02-14T22:20:46.436Z" @@ -83766,7 +84943,7 @@ "forks": 1766, "issues": 118, "subscribers": 329, - "stars": 22029, + "stars": 22027, "dependencies": 0 }, "name": "babel-plugin-react-native-web", @@ -83785,12 +84962,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "babel-plugin-react-native-web", "npm": { - "downloads": 7911948, - "weekDownloads": 1502040, + "downloads": 7745469, + "weekDownloads": 1485641, "size": 17221, "latestRelease": "0.21.2", "latestReleaseDate": "2025-10-16T15:09:50.060Z" @@ -83804,7 +84982,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.163, "topicSearchString": "" }, { @@ -83858,12 +85036,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-month", "npm": { - "downloads": 12137, - "weekDownloads": 2251, + "downloads": 11819, + "weekDownloads": 2656, "size": 510510, "latestRelease": "1.7.0", "latestReleaseDate": "2024-03-07T23:01:25.087Z" @@ -83873,7 +85052,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.191, "topicSearchString": "react-native month component" }, { @@ -83942,12 +85121,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-flex-grid", "npm": { - "downloads": 39090, - "weekDownloads": 7758, + "downloads": 36375, + "weekDownloads": 8429, "size": 142879, "latestRelease": "1.0.6", "latestReleaseDate": "2025-05-31T14:03:13.864Z" @@ -83956,7 +85136,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.197, "topicSearchString": "react react-native web grid layout flex flexbox design style bootstrap 12-columns n-columns demo storybook typescript flowtype expo framework customizable configurable zero-dependency" }, { @@ -83986,7 +85166,7 @@ "updatedAt": "2023-07-10T03:45:37Z", "createdAt": "2017-05-26T06:48:38Z", "pushedAt": "2023-07-10T03:45:37Z", - "forks": 322, + "forks": 323, "issues": 286, "subscribers": 23, "stars": 1325, @@ -84012,13 +85192,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-amap3d", "npm": { - "downloads": 1102, - "weekDownloads": 242, + "downloads": 1914, + "weekDownloads": 258, "size": 84469, "latestRelease": "3.2.4", "latestReleaseDate": "2023-07-10T03:46:54.253Z" @@ -84031,7 +85212,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.563, + "popularity": -0.635, "topicSearchString": "react-native amap maps mapview" }, { @@ -84058,7 +85239,7 @@ "updatedAt": "2025-07-17T23:01:27Z", "createdAt": "2020-02-06T08:11:13Z", "pushedAt": "2025-07-17T23:01:27Z", - "forks": 52, + "forks": 53, "issues": 21, "subscribers": 40, "stars": 122, @@ -84091,12 +85272,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "mixpanel-react-native", "npm": { - "downloads": 405774, - "weekDownloads": 86144, + "downloads": 381964, + "weekDownloads": 79639, "size": 40243541, "latestRelease": "3.1.2", "latestReleaseDate": "2025-06-05T17:13:47.708Z" @@ -84106,7 +85288,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.177, "topicSearchString": "mixpanel react native ios android analytics tracking sdk react-native analytics-tracking mixpanel-sdk" }, { @@ -84155,13 +85337,14 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-block-store", "npm": { - "downloads": 93, - "weekDownloads": 52, + "downloads": 62, + "weekDownloads": 13, "size": 20287, "latestRelease": "0.1.1", "latestReleaseDate": "2023-03-03T11:29:55.262Z" @@ -84171,7 +85354,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.255, + "popularity": -1.564, "topicSearchString": "react-native ios android" }, { @@ -84193,13 +85376,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-02T18:46:07Z", + "updatedAt": "2025-10-17T19:59:18Z", "createdAt": "2023-03-04T13:46:43Z", - "pushedAt": "2025-10-02T18:46:07Z", + "pushedAt": "2025-10-17T19:59:18Z", "forks": 13, "issues": 0, "subscribers": 5, - "stars": 88, + "stars": 89, "dependencies": 0 }, "name": "@pushpendersingh/react-native-scanner", @@ -84230,21 +85413,22 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 948, - "weekDownloads": 94, - "size": 93622, - "latestRelease": "1.9.0", - "latestReleaseDate": "2025-10-02T18:47:09.809Z" + "downloads": 1042, + "weekDownloads": 62, + "size": 101319, + "latestRelease": "2.0.0", + "latestReleaseDate": "2025-10-17T19:29:03.243Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.666, + "popularity": 0.051, "topicSearchString": "react-native ios android barcode barcode-scanner qrcode qrcode-scanner bar qr scanner" }, { @@ -84271,7 +85455,7 @@ "forks": 15, "issues": 4, "subscribers": 1, - "stars": 238, + "stars": 239, "dependencies": 0 }, "name": "react-native-ssl-public-key-pinning", @@ -84298,12 +85482,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-ssl-public-key-pinning", "npm": { - "downloads": 81180, - "weekDownloads": 13888, + "downloads": 78479, + "weekDownloads": 14387, "size": 59538, "latestRelease": "1.2.6", "latestReleaseDate": "2025-07-05T13:50:23.821Z" @@ -84313,7 +85498,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.145, + "popularity": 0.156, "topicSearchString": "react-native ios android ssl ssl-pinning network pki" }, { @@ -84369,12 +85554,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-a11y-slider", "npm": { - "downloads": 5513, - "weekDownloads": 1059, + "downloads": 5216, + "weekDownloads": 1027, "size": 68265, "latestRelease": "1.3.2", "latestReleaseDate": "2023-10-26T20:40:56.688Z" @@ -84384,7 +85570,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.087, + "popularity": -0.083, "topicSearchString": "a11y accessibility react-native slider" }, { @@ -84441,12 +85627,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-fancy-qrcode", "npm": { - "downloads": 6816, - "weekDownloads": 1124, + "downloads": 6644, + "weekDownloads": 1788, "size": 38561, "latestRelease": "1.0.4", "latestReleaseDate": "2024-10-11T19:36:44.268Z" @@ -84456,7 +85643,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.14, + "popularity": 0.229, "topicSearchString": "qrcode react react-native" }, { @@ -84522,10 +85709,11 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2, + "downloads": 10, "weekDownloads": 0, "size": 236973, "latestRelease": "1.0.0", @@ -84569,7 +85757,7 @@ "createdAt": "2022-01-04T07:33:01Z", "pushedAt": "2025-10-11T19:40:21Z", "forks": 28, - "issues": 5, + "issues": 6, "subscribers": 2, "stars": 164, "dependencies": 1 @@ -84607,11 +85795,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 14884, - "weekDownloads": 2699, + "downloads": 14822, + "weekDownloads": 2667, "size": 347835, "latestRelease": "2.1.8", "latestReleaseDate": "2025-08-24T06:43:40.828Z" @@ -84622,7 +85811,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.153, "topicSearchString": "react-native ios android dropdown selection dropdown-menu multiple-select picker pull-down-menu combo-box list-box react select multi-select multipleselection search" }, { @@ -84672,13 +85861,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-animated-bottom-drawer", "npm": { - "downloads": 2454, - "weekDownloads": 507, + "downloads": 2437, + "weekDownloads": 432, "size": 22114, "latestRelease": "0.0.23", "latestReleaseDate": "2023-08-11T08:03:52.877Z" @@ -84688,7 +85878,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.574, + "popularity": -0.599, "topicSearchString": "react-native bottom-drawer bottom-sheet react bottom-modal modal typescript" }, { @@ -84741,12 +85931,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-is-maestro", "npm": { - "downloads": 1372, - "weekDownloads": 195, + "downloads": 1396, + "weekDownloads": 296, "size": 43348, "latestRelease": "3.0.1", "latestReleaseDate": "2024-06-27T12:13:40.428Z" @@ -84756,7 +85947,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.121, + "popularity": 0.18, "topicSearchString": "react-native ios android web maestro" }, { @@ -84814,12 +86005,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-pdf-renderer", "npm": { - "downloads": 59359, - "weekDownloads": 10765, + "downloads": 57730, + "weekDownloads": 9961, "size": 174403, "latestRelease": "2.3.0", "latestReleaseDate": "2025-08-12T20:32:04.137Z" @@ -84829,7 +86021,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.147, "topicSearchString": "react-native android ios pdf pdfrenderer pdfkit" }, { @@ -84884,13 +86076,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-use-list", "npm": { - "downloads": 97, - "weekDownloads": 0, + "downloads": 124, + "weekDownloads": 10, "size": 55355, "latestRelease": "0.2.1", "latestReleaseDate": "2023-04-28T10:44:29.336Z" @@ -84900,7 +86093,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -1.431, "topicSearchString": "react-native ios android flatlist sectionlist virtualizedlist" }, { @@ -84951,11 +86144,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 28, - "weekDownloads": 5, + "downloads": 114, + "weekDownloads": 10, "size": 73561, "latestRelease": "2.0.5", "latestReleaseDate": "2023-05-07T10:51:18.033Z" @@ -84965,7 +86159,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.833, + "popularity": -0.923, "topicSearchString": "react-native ios android" }, { @@ -84995,7 +86189,7 @@ "forks": 8, "issues": 5, "subscribers": 2, - "stars": 67, + "stars": 66, "dependencies": 3 }, "name": "react-native-code-highlighter", @@ -85025,12 +86219,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-code-highlighter", "npm": { - "downloads": 13315, - "weekDownloads": 2707, + "downloads": 12624, + "weekDownloads": 2017, "size": 32860, "latestRelease": "1.3.0", "latestReleaseDate": "2025-07-01T15:00:49.859Z" @@ -85039,7 +86234,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.136, "topicSearchString": "react-native ios android web code-hightlighter syntax-highlighter code-highlight syntax-highlighting typescript react" }, { @@ -85061,7 +86256,7 @@ "createdAt": "2023-06-02T12:05:48Z", "pushedAt": "2025-07-21T07:30:28Z", "forks": 30, - "issues": 0, + "issues": 1, "subscribers": 3, "stars": 293, "dependencies": 0 @@ -85108,12 +86303,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-screenguard", "npm": { - "downloads": 36692, - "weekDownloads": 8122, + "downloads": 35351, + "weekDownloads": 8650, "size": 292591, "latestRelease": "1.1.0", "latestReleaseDate": "2025-07-09T16:37:42.032Z" @@ -85123,7 +86319,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.188, + "popularity": 0.208, "topicSearchString": "screenguard detector screen-capture capture protection prevent screenshot capture-protection screenshot-prevent screenshot-blocker screenshot-detector screenshot-protection screenshot-prevention screenshot-blocking screenshot-block screenshot-blocking-ios screenshot-blocking-android screenshot-block-ios screenshot-block-android screenshot-blocker-ios screenshot-blocker-android react native ios android" }, { @@ -85180,12 +86376,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-totp-utils", "npm": { - "downloads": 124, - "weekDownloads": 2, + "downloads": 130, + "weekDownloads": 91, "size": 74309, "latestRelease": "1.0.6", "latestReleaseDate": "2025-09-23T15:09:09.666Z" @@ -85194,7 +86391,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -1.736, + "popularity": -1.143, "topicSearchString": "react-native ios android totp totp-utils" }, { @@ -85239,13 +86436,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-hardwired", "npm": { - "downloads": 3, - "weekDownloads": 2, + "downloads": 10, + "weekDownloads": 0, "size": 702204, "latestRelease": "0.10.2", "latestReleaseDate": "2023-07-26T12:42:25.101Z" @@ -85274,13 +86472,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-14T18:42:36Z", + "updatedAt": "2025-10-17T06:30:12Z", "createdAt": "2023-06-09T10:46:18Z", - "pushedAt": "2025-10-14T18:42:36Z", + "pushedAt": "2025-10-17T06:30:12Z", "forks": 10, "issues": 2, "subscribers": 1, - "stars": 174, + "stars": 177, "dependencies": 1 }, "name": "react-native-maps-routes", @@ -85303,12 +86501,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-maps-routes", "npm": { - "downloads": 2028, - "weekDownloads": 367, + "downloads": 2070, + "weekDownloads": 424, "size": 21932, "latestRelease": "1.3.5", "latestReleaseDate": "2025-10-08T04:08:03.957Z" @@ -85318,7 +86517,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.174, "topicSearchString": "react-native maps ios android" }, { @@ -85367,12 +86566,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-esper-sdk", "npm": { - "downloads": 7, + "downloads": 27, "weekDownloads": 0, "size": 32692, "latestRelease": "0.2.2", @@ -85440,11 +86640,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 3418, - "weekDownloads": 698, + "downloads": 3375, + "weekDownloads": 489, "size": 117704, "latestRelease": "7.0.2", "latestReleaseDate": "2025-07-06T17:52:16.885Z" @@ -85453,7 +86654,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.123, "topicSearchString": "react-native ios android theme dark dark-mode apearance hacktoberfest" }, { @@ -85502,13 +86703,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-rsa-signer", "npm": { - "downloads": 3, - "weekDownloads": 0, + "downloads": 9, + "weekDownloads": 2, "size": 80881, "latestRelease": "1.5.1", "latestReleaseDate": "2023-07-28T00:44:37.843Z" @@ -85518,7 +86720,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -1.55, "topicSearchString": "react-native rsa jwt encryption security numero" }, { @@ -85573,12 +86775,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-pie-chart", "npm": { - "downloads": 39863, - "weekDownloads": 7936, + "downloads": 38923, + "weekDownloads": 7326, "size": 337223, "latestRelease": "4.0.1", "latestReleaseDate": "2025-02-06T22:54:12.919Z" @@ -85588,7 +86791,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.16, "topicSearchString": "react react-native chart pie-chart visualization" }, { @@ -85646,12 +86849,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 444, - "weekDownloads": 81, + "downloads": 456, + "weekDownloads": 92, "size": 52463, "latestRelease": "0.0.2", "latestReleaseDate": "2023-06-23T12:07:18.324Z" @@ -85661,7 +86865,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.594, + "popularity": -1.578, "topicSearchString": "react-native autofocus next-field enter onenter input textfield" }, { @@ -85712,12 +86916,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-web-jsonschema-form", "npm": { - "downloads": 428, - "weekDownloads": 18, + "downloads": 521, + "weekDownloads": 22, "size": 191929, "latestRelease": "4.0.0", "latestReleaseDate": "2022-04-20T14:55:23.902Z" @@ -85775,12 +86980,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 165, - "weekDownloads": 23, + "downloads": 160, + "weekDownloads": 32, "size": 2390368, "latestRelease": "1.0.3", "latestReleaseDate": "2020-03-25T13:41:20.987Z" @@ -85790,7 +86996,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.629, + "popularity": -1.577, "topicSearchString": "react-native ios apple-music apple-music-api music apple" }, { @@ -85856,12 +87062,13 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-keys", "npm": { - "downloads": 16418, - "weekDownloads": 3092, + "downloads": 15683, + "weekDownloads": 3210, "size": 45454803, "latestRelease": "0.7.13", "latestReleaseDate": "2025-09-07T15:48:03.636Z" @@ -85871,7 +87078,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.174, "topicSearchString": "react-native ios android config environment environment-variables secure env jsi jni keys jni-android jni-ios dotenv config-var 12factor protected undecryptable envs" }, { @@ -85931,11 +87138,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 77963, - "weekDownloads": 14407, + "downloads": 74972, + "weekDownloads": 12657, "size": 103674, "latestRelease": "11.0.11", "latestReleaseDate": "2025-08-27T22:34:39.778Z" @@ -85945,7 +87153,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.144, "topicSearchString": "react-native react native web slider range" }, { @@ -85973,9 +87181,9 @@ "createdAt": "2017-01-17T17:26:46Z", "pushedAt": "2025-10-10T09:08:19Z", "forks": 416, - "issues": 40, + "issues": 41, "subscribers": 32, - "stars": 5423, + "stars": 5425, "dependencies": 2 }, "name": "@lingui/react", @@ -86007,11 +87215,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1342642, - "weekDownloads": 250333, + "downloads": 1290835, + "weekDownloads": 247009, "size": 36126, "latestRelease": "5.5.1", "latestReleaseDate": "2025-10-10T09:43:52.512Z" @@ -86024,7 +87233,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.163, "topicSearchString": "react component react-component react-native i18n internationalization i9n translation icu messageformat multilingual localization l10n" }, { @@ -86077,7 +87286,8 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ultimate-icons", @@ -86148,13 +87358,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-click-outside", "npm": { - "downloads": 26426, - "weekDownloads": 4257, + "downloads": 24538, + "weekDownloads": 4285, "size": 39515, "latestRelease": "0.1.1", "latestReleaseDate": "2023-07-21T20:00:49.916Z" @@ -86164,7 +87375,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.613, + "popularity": -0.602, "topicSearchString": "react-native ios android click-outside open-source hacktoberfest" }, { @@ -86222,12 +87433,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "react-native-localization-settings", "npm": { - "downloads": 35357, - "weekDownloads": 4916, + "downloads": 34930, + "weekDownloads": 6403, "size": 63171, "latestRelease": "1.2.0", "latestReleaseDate": "2024-11-12T17:47:50.621Z" @@ -86237,7 +87449,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.118, + "popularity": 0.156, "topicSearchString": "react-native ios android i18n i18next i18n-react l10n language per-app hacktoberfest" }, { @@ -86302,11 +87514,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 34527, - "weekDownloads": 6239, + "downloads": 33604, + "weekDownloads": 5703, "size": 475635, "latestRelease": "1.6.2", "latestReleaseDate": "2025-08-01T16:13:58.249Z" @@ -86315,7 +87528,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.144, "topicSearchString": "react react-native apple-pay google-pay payment-request payments android ios android-pay apple-pay payment-intents cross-platform payments expo expo-plugin" }, { @@ -86369,12 +87582,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-detect-maestro", "npm": { - "downloads": 346, - "weekDownloads": 61, + "downloads": 387, + "weekDownloads": 62, "size": 18277, "latestRelease": "1.0.7", "latestReleaseDate": "2023-11-14T22:27:25.844Z" @@ -86384,7 +87598,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.849, + "popularity": -0.864, "topicSearchString": "react react-native component android ios maestro e2e is-e2e is-maestro" }, { @@ -86435,12 +87649,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-widget-picker", "npm": { "downloads": 1552, - "weekDownloads": 335, + "weekDownloads": 354, "size": 20301, "latestRelease": "1.1.0", "latestReleaseDate": "2025-08-01T09:31:00.302Z" @@ -86449,7 +87664,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.066, + "popularity": -0.056, "topicSearchString": "react react-native component android android-widget widget home-screen home-screen-widget" }, { @@ -86501,12 +87716,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-zoom-reanimated", "npm": { - "downloads": 24263, - "weekDownloads": 3902, + "downloads": 23873, + "weekDownloads": 3812, "size": 26705, "latestRelease": "1.4.10", "latestReleaseDate": "2025-08-13T08:48:47.191Z" @@ -86516,7 +87732,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.137, + "popularity": 0.136, "topicSearchString": "zoom react-native reanimated gesture-handler" }, { @@ -86581,11 +87797,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 223, - "weekDownloads": 8, + "downloads": 235, + "weekDownloads": 9, "size": 499557, "latestRelease": "2.1.0", "latestReleaseDate": "2023-11-10T17:25:29.232Z" @@ -86595,7 +87812,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.969, + "popularity": -0.967, "topicSearchString": "android ios web react-native reactjs native react ui-library responsive-ui bootstrap dark-mode mergerefs ui kit component" }, { @@ -86653,11 +87870,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 2133, - "weekDownloads": 340, + "downloads": 2388, + "weekDownloads": 312, "size": 862741, "latestRelease": "3.16.0", "latestReleaseDate": "2025-10-15T07:56:06.477Z" @@ -86667,7 +87885,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.136, + "popularity": 0.111, "topicSearchString": "react-native situm indoor-positioning indoor-maps wayfinding ios android" }, { @@ -86727,7 +87945,8 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "kratos-selfservice-ui-react-native", "npm": {}, @@ -86788,12 +88007,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-cone-slider", "npm": { - "downloads": 6, + "downloads": 24, "weekDownloads": 1, "size": 30067, "latestRelease": "0.2.0", @@ -86804,7 +88024,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.55, + "popularity": -1.71, "topicSearchString": "react-native ios android" }, { @@ -86864,13 +88084,14 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "unmaintained": true, "npmPkg": "react-native-palette-picker", "npm": { - "downloads": 96, - "weekDownloads": 71, + "downloads": 61, + "weekDownloads": 32, "size": 42415, "latestRelease": "0.2.1", "latestReleaseDate": "2023-08-19T09:04:25.836Z" @@ -86880,7 +88101,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.105, + "popularity": -1.293, "topicSearchString": "react-native android react palette image-colors dominant image color palette-api" }, { @@ -86937,12 +88158,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-vimeo-iframe", "npm": { - "downloads": 30808, - "weekDownloads": 5627, + "downloads": 29980, + "weekDownloads": 5887, "size": 41476, "latestRelease": "1.2.1", "latestReleaseDate": "2023-01-02T20:12:10.641Z" @@ -86952,7 +88174,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.167, "topicSearchString": "android ios react-native component-library vimeo videos hacktoberfest video-player javascript video" }, { @@ -87002,13 +88224,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-components-tracking", "npm": { - "downloads": 36, - "weekDownloads": 6, + "downloads": 62, + "weekDownloads": 5, "size": 63148, "latestRelease": "1.1.2", "latestReleaseDate": "2023-03-25T17:33:46.735Z" @@ -87018,7 +88241,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.6, + "popularity": -1.679, "topicSearchString": "react-native ios android" }, { @@ -87070,12 +88293,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-squish-button", "npm": { - "downloads": 9, + "downloads": 11, "weekDownloads": 0, "size": 27945, "latestRelease": "0.3.0", @@ -87168,12 +88392,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-timer-picker", "npm": { - "downloads": 23435, - "weekDownloads": 4205, + "downloads": 22917, + "weekDownloads": 4038, "size": 1264291, "latestRelease": "2.2.1", "latestReleaseDate": "2025-10-09T06:53:18.137Z" @@ -87184,7 +88409,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.15, "topicSearchString": "react react-native expo duration picker time timer alarm modal durationpicker duration-picker duration-picker-modal timepicker time-picker alarmpicker alarm-picker alarm-picker-modal timerpicker timer-picker timer-picker-modal expo-duration-picker expo-time-picker expo-timepicker expo-durationpicker component components" }, { @@ -87234,12 +88459,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-simple-keypad", "npm": { - "downloads": 571, - "weekDownloads": 135, + "downloads": 521, + "weekDownloads": 113, "size": 77129, "latestRelease": "0.5.2", "latestReleaseDate": "2025-09-07T18:53:14.298Z" @@ -87248,7 +88474,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.549, + "popularity": -0.565, "topicSearchString": "react-native ios android" }, { @@ -87305,13 +88531,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-responsive-scalability", "npm": { - "downloads": 25, - "weekDownloads": 11, + "downloads": 29, + "weekDownloads": 4, "size": 68546, "latestRelease": "1.2.0", "latestReleaseDate": "2023-09-09T14:58:29.863Z" @@ -87321,7 +88548,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.31, + "popularity": -1.617, "topicSearchString": "react-native ios android package responsive expo" }, { @@ -87375,12 +88602,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-http-bridge-refurbished", "npm": { - "downloads": 1506, - "weekDownloads": 320, + "downloads": 1533, + "weekDownloads": 167, "size": 69452, "latestRelease": "1.2.9", "latestReleaseDate": "2023-09-22T14:55:05.401Z" @@ -87390,7 +88618,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.181, + "popularity": 0.093, "topicSearchString": "react-component react-native nanohttpd gcdhttpserver http server bridge webserver http-server rest-api typescript" }, { @@ -87443,13 +88671,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-simple-bcrypt", "npm": { - "downloads": 54, - "weekDownloads": 17, + "downloads": 57, + "weekDownloads": 24, "size": 47929, "latestRelease": "0.3.0", "latestReleaseDate": "2023-08-31T20:28:53.716Z" @@ -87459,7 +88688,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.467, + "popularity": -1.381, "topicSearchString": "react-native bcrypt native hash ios android" }, { @@ -87524,11 +88753,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8285, - "weekDownloads": 1406, + "downloads": 8016, + "weekDownloads": 1471, "size": 30875, "latestRelease": "0.3.0", "latestReleaseDate": "2024-02-12T09:46:16.358Z" @@ -87538,7 +88768,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.156, "topicSearchString": "react-native ios android stagger exit-animation enter-animation animation stagger-view reanimated2 reanimated3 layout-animation stagger-animation" }, { @@ -87602,11 +88832,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 56505, - "weekDownloads": 12006, + "downloads": 54040, + "weekDownloads": 10992, "size": 42746, "latestRelease": "0.5.2", "latestReleaseDate": "2025-02-11T13:09:25.360Z" @@ -87617,7 +88848,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.181, + "popularity": 0.173, "topicSearchString": "react-native ios android marquee carousel slider ticker horizontal-scrolling-carousels infinite-ticker expo news-ticker typescript reanimated reanimated3" }, { @@ -87676,12 +88907,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-drag-drop-content-view", "npm": { - "downloads": 15270, - "weekDownloads": 3277, + "downloads": 14423, + "weekDownloads": 3967, "size": 139828, "latestRelease": "0.9.0", "latestReleaseDate": "2025-06-29T16:51:37.012Z" @@ -87691,7 +88923,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.182, + "popularity": 0.234, "topicSearchString": "react-native expo expo-drag-drop-content-view expodragdropcontentview" }, { @@ -87749,13 +88981,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-wave-bottom-bar", "npm": { - "downloads": 856, - "weekDownloads": 139, + "downloads": 918, + "weekDownloads": 130, "size": 214359, "latestRelease": "2.2.36", "latestReleaseDate": "2023-04-17T18:12:22.056Z" @@ -87766,7 +88999,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.362, + "popularity": -1.38, "topicSearchString": "react-native react-navigation bottom-bar tab-bar animation bottom-tabs curved wave" }, { @@ -87828,11 +89061,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 36860, - "weekDownloads": 6163, + "downloads": 35889, + "weekDownloads": 6239, "size": 1963845, "latestRelease": "10.2.1", "latestReleaseDate": "2025-08-15T17:35:43.511Z" @@ -87843,7 +89077,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.148, "topicSearchString": "maps ios android maplibre react-native mapbox react" }, { @@ -87913,12 +89147,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-tinder-card", "npm": { - "downloads": 28697, - "weekDownloads": 5666, + "downloads": 28846, + "weekDownloads": 5388, "size": 30606, "latestRelease": "1.6.4", "latestReleaseDate": "2023-11-07T07:43:18.210Z" @@ -87929,7 +89164,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.159, "topicSearchString": "tinder card react-native native ios android web react swipeable swipe physics deck drag draggable swipeable-elements hacktoberfest" }, { @@ -87962,7 +89197,7 @@ "forks": 37, "issues": 21, "subscribers": 20, - "stars": 452, + "stars": 454, "dependencies": 3 }, "name": "react-native-spotlight-tour", @@ -87991,11 +89226,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8143, - "weekDownloads": 1407, + "downloads": 7459, + "weekDownloads": 1229, "size": 142400, "latestRelease": "4.0.0", "latestReleaseDate": "2025-06-23T22:01:05.813Z" @@ -88005,7 +89241,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.14, "topicSearchString": "app-tour android customizable ios react-native step-by-step spotlight spotlight-tour tour user-guide" }, { @@ -88035,9 +89271,9 @@ "createdAt": "2022-11-22T11:55:26Z", "pushedAt": "2025-10-01T10:00:47Z", "forks": 69, - "issues": 1, + "issues": 2, "subscribers": 4, - "stars": 352, + "stars": 353, "dependencies": 2 }, "name": "react-native-international-phone-number", @@ -88077,12 +89313,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-international-phone-number", "npm": { - "downloads": 65394, - "weekDownloads": 13256, + "downloads": 62638, + "weekDownloads": 13096, "size": 108953, "latestRelease": "0.11.0", "latestReleaseDate": "2025-10-01T10:19:21.858Z" @@ -88093,7 +89330,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.178, "topicSearchString": "mobile ios android react-native expo components typescript react-hook-form mask-input phone-input international-number-phone picker country-picker country flag custom-lib codes search animated input flags" }, { @@ -88122,10 +89359,10 @@ "updatedAt": "2025-10-16T11:11:14Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-16T11:11:14Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-image", @@ -88146,12 +89383,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-image", "npm": { - "downloads": 3331818, - "weekDownloads": 641651, + "downloads": 3239848, + "weekDownloads": 633664, "size": 839673, "latestRelease": "3.0.9", "latestReleaseDate": "2025-10-07T08:47:12.254Z" @@ -88165,7 +89403,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.166, "topicSearchString": "react-native" }, { @@ -88217,12 +89455,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 569, - "weekDownloads": 80, + "downloads": 803, + "weekDownloads": 79, "size": 387379, "latestRelease": "2.6.1", "latestReleaseDate": "2024-08-16T11:52:33.020Z" @@ -88232,7 +89471,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.38, + "popularity": -1.416, "topicSearchString": "react-native android braintree hacktoberfest ios" }, { @@ -88288,12 +89527,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-menubar-extra", "npm": { - "downloads": 26, - "weekDownloads": 6, + "downloads": 38, + "weekDownloads": 5, "size": 61232, "latestRelease": "0.3.1", "latestReleaseDate": "2023-11-04T16:26:08.826Z" @@ -88304,7 +89544,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.55, + "popularity": -0.625, "topicSearchString": "react-native macos library menubar menubar-app hacktoberfest" }, { @@ -88327,9 +89567,9 @@ "createdAt": "2021-10-16T15:20:52Z", "pushedAt": "2025-09-06T17:24:50Z", "forks": 79, - "issues": 14, + "issues": 13, "subscribers": 11, - "stars": 523, + "stars": 524, "dependencies": 0 }, "name": "@react-native-ml-kit/text-recognition", @@ -88349,11 +89589,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 20615, - "weekDownloads": 3502, + "downloads": 20255, + "weekDownloads": 3167, "size": 32527, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-01T22:08:45.303Z" @@ -88363,7 +89604,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.133, "topicSearchString": "react-native" }, { @@ -88386,9 +89627,9 @@ "createdAt": "2021-10-16T15:20:52Z", "pushedAt": "2025-09-01T22:35:23Z", "forks": 79, - "issues": 14, + "issues": 13, "subscribers": 11, - "stars": 523, + "stars": 524, "dependencies": 0 }, "name": "@react-native-ml-kit/face-detection", @@ -88408,11 +89649,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 6207, - "weekDownloads": 1406, + "downloads": 5772, + "weekDownloads": 1323, "size": 42493, "latestRelease": "2.0.1", "latestReleaseDate": "2025-09-01T22:34:38.556Z" @@ -88422,7 +89664,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.193, + "popularity": 0.195, "topicSearchString": "react-native" }, { @@ -88445,9 +89687,9 @@ "createdAt": "2021-10-16T15:20:52Z", "pushedAt": "2025-09-01T22:12:30Z", "forks": 79, - "issues": 14, + "issues": 13, "subscribers": 11, - "stars": 523, + "stars": 524, "dependencies": 0 }, "name": "@react-native-ml-kit/image-labeling", @@ -88467,11 +89709,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 537, - "weekDownloads": 121, + "downloads": 506, + "weekDownloads": 113, "size": 22870, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-01T22:09:46.327Z" @@ -88481,7 +89724,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.558, + "popularity": -0.56, "topicSearchString": "react-native" }, { @@ -88504,9 +89747,9 @@ "createdAt": "2021-10-16T15:20:52Z", "pushedAt": "2025-09-06T12:35:46Z", "forks": 79, - "issues": 14, + "issues": 13, "subscribers": 11, - "stars": 523, + "stars": 524, "dependencies": 0 }, "name": "@react-native-ml-kit/barcode-scanning", @@ -88526,11 +89769,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 7506, - "weekDownloads": 1251, + "downloads": 7213, + "weekDownloads": 1237, "size": 48399, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-01T22:09:27.943Z" @@ -88540,7 +89784,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.146, "topicSearchString": "react-native" }, { @@ -88563,9 +89807,9 @@ "createdAt": "2021-10-16T15:20:52Z", "pushedAt": "2025-09-01T22:12:30Z", "forks": 79, - "issues": 14, + "issues": 13, "subscribers": 11, - "stars": 523, + "stars": 524, "dependencies": 0 }, "name": "@react-native-ml-kit/identify-languages", @@ -88585,11 +89829,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 1278, - "weekDownloads": 181, + "downloads": 1246, + "weekDownloads": 213, "size": 22758, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-01T22:10:08.433Z" @@ -88599,7 +89844,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.121, + "popularity": 0.145, "topicSearchString": "react-native" }, { @@ -88621,9 +89866,9 @@ "createdAt": "2021-10-16T15:20:52Z", "pushedAt": "2025-09-01T22:12:30Z", "forks": 79, - "issues": 14, + "issues": 13, "subscribers": 11, - "stars": 523, + "stars": 524, "dependencies": 0 }, "name": "@react-native-ml-kit/translate-text", @@ -88643,11 +89888,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 146, - "weekDownloads": 22, + "downloads": 165, + "weekDownloads": 43, "size": 23994, "latestRelease": "0.5.0", "latestReleaseDate": "2025-09-01T22:10:31.791Z" @@ -88657,7 +89903,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.621, + "popularity": -0.524, "topicSearchString": "react-native" }, { @@ -88711,12 +89957,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-vis-network", "npm": { - "downloads": 136, - "weekDownloads": 19, + "downloads": 307, + "weekDownloads": 12, "size": 2985762, "latestRelease": "2.0.0", "latestReleaseDate": "2024-03-10T10:35:42.889Z" @@ -88726,7 +89973,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.881, + "popularity": -0.967, "topicSearchString": "react-native ios android" }, { @@ -88759,7 +90006,7 @@ "forks": 43, "issues": 7, "subscribers": 2, - "stars": 393, + "stars": 395, "dependencies": 0 }, "name": "react-native-otp-entry", @@ -88795,12 +90042,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-otp-entry", "npm": { - "downloads": 232024, - "weekDownloads": 52702, + "downloads": 215900, + "weekDownloads": 44258, "size": 28641, "latestRelease": "1.8.5", "latestReleaseDate": "2025-06-20T19:54:17.347Z" @@ -88810,7 +90058,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.193, + "popularity": 0.174, "topicSearchString": "react-native app component input otp otp-verify otp-input otp-entry otp-text-input rn anday anday013 anday2000 react entry android confirmation-code" }, { @@ -88869,11 +90117,12 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 1454, - "weekDownloads": 350, + "downloads": 1559, + "weekDownloads": 357, "size": 151748, "latestRelease": "1.2.3", "latestReleaseDate": "2024-11-10T17:04:04.638Z" @@ -88884,7 +90133,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.205, + "popularity": 0.195, "topicSearchString": "react-native ios android native-module new-architecture toast alert toast-notifications" }, { @@ -88942,11 +90191,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 3165, - "weekDownloads": 676, + "downloads": 3013, + "weekDownloads": 551, "size": 3918263, "latestRelease": "1.1.6", "latestReleaseDate": "2023-01-02T15:24:54.818Z" @@ -88957,7 +90207,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.182, + "popularity": 0.156, "topicSearchString": "react-native ios android photo photoeditor imageeditor photoedit" }, { @@ -89016,12 +90266,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-skia-shadow", "npm": { - "downloads": 71, - "weekDownloads": 17, + "downloads": 130, + "weekDownloads": 6, "size": 41904, "latestRelease": "1.2.0", "latestReleaseDate": "2024-05-15T17:26:58.741Z" @@ -89031,7 +90282,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.537, + "popularity": -0.71, "topicSearchString": "react-native ios android expo shadow skia package" }, { @@ -89084,12 +90335,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-orientation-manager", "npm": { - "downloads": 939, - "weekDownloads": 149, + "downloads": 911, + "weekDownloads": 138, "size": 243088, "latestRelease": "1.1.2", "latestReleaseDate": "2023-11-12T11:15:15.657Z" @@ -89099,7 +90351,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.865, + "popularity": -0.871, "topicSearchString": "react-native ios android windows orientation" }, { @@ -89171,11 +90423,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 12767, - "weekDownloads": 2410, + "downloads": 12301, + "weekDownloads": 2503, "size": 232673, "latestRelease": "0.4.3", "latestReleaseDate": "2024-10-29T17:24:31.757Z" @@ -89186,7 +90439,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.173, "topicSearchString": "react-native ios android bottom-sheet devvie-bottom-sheet @devvie/bottom-sheet tiny-bottom-sheet flexible-bottom-sheet modal-bottom-sheet sheet ui-sheet bottom-sheets bottomsheet bottomsheet-android bottomsheetios" }, { @@ -89221,7 +90474,7 @@ "forks": 89, "issues": 35, "subscribers": 5, - "stars": 769, + "stars": 770, "dependencies": 5 }, "name": "react-native-ui-datepicker", @@ -89257,12 +90510,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ui-datepicker", "npm": { - "downloads": 128841, - "weekDownloads": 22975, + "downloads": 125121, + "weekDownloads": 21788, "size": 765502, "latestRelease": "3.1.2", "latestReleaseDate": "2025-03-20T15:20:46.804Z" @@ -89274,7 +90528,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.148, "topicSearchString": "react-native ios android ui-datetpicker datetime datetime-picker datetpicker datet-picker timepicker time-picker calendar daterange datepicker datetimepicker picker web" }, { @@ -89332,12 +90586,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-highlighter", "npm": { - "downloads": 2302, - "weekDownloads": 554, + "downloads": 2189, + "weekDownloads": 555, "size": 60015, "latestRelease": "1.0.7", "latestReleaseDate": "2024-04-09T20:51:37.002Z" @@ -89347,7 +90602,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.205, + "popularity": 0.216, "topicSearchString": "react-native ios android highlight keywords web" }, { @@ -89399,12 +90654,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-vercel-ai", "npm": { - "downloads": 921, - "weekDownloads": 138, + "downloads": 926, + "weekDownloads": 162, "size": 155473, "latestRelease": "0.1.2", "latestReleaseDate": "2023-12-05T17:30:49.278Z" @@ -89415,7 +90671,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.622, + "popularity": -0.601, "topicSearchString": "react-native ios android" }, { @@ -89471,12 +90727,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-blur-view", "npm": { - "downloads": 75, - "weekDownloads": 11, + "downloads": 126, + "weekDownloads": 10, "size": 10198, "latestRelease": "0.1.4", "latestReleaseDate": "2023-11-02T18:40:42.572Z" @@ -89486,7 +90743,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.871, + "popularity": -0.931, "topicSearchString": "react-native ios android blur blur-view animate animated animate-blur-view gradient" }, { @@ -89510,10 +90767,10 @@ "updatedAt": "2025-07-02T10:39:40Z", "createdAt": "2023-07-04T08:37:10Z", "pushedAt": "2025-07-02T10:39:40Z", - "forks": 68, + "forks": 69, "issues": 31, "subscribers": 14, - "stars": 1013, + "stars": 1015, "dependencies": 0 }, "name": "react-native-fast-tflite", @@ -89554,12 +90811,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-fast-tflite", "npm": { - "downloads": 14951, - "weekDownloads": 2640, + "downloads": 14711, + "weekDownloads": 2313, "size": 189018, "latestRelease": "1.6.1", "latestReleaseDate": "2025-04-08T08:31:24.369Z" @@ -89570,7 +90828,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.134, "topicSearchString": "react-native tensorflow vision-camera tflite lite tensorflowlite tensorflow-lite visioncamera vision camera ios android ai arraybuffer detection facial-recognition fast ml native object-detection react" }, { @@ -89630,12 +90888,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-worklets-core", "npm": { - "downloads": 271314, - "weekDownloads": 41531, + "downloads": 269679, + "weekDownloads": 42523, "size": 401802, "latestRelease": "1.6.2", "latestReleaseDate": "2025-08-06T15:31:51.354Z" @@ -89647,7 +90906,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.13, + "popularity": 0.134, "topicSearchString": "react-native ios android async background multithreading native react threads worklet worklets hacktoberfest" }, { @@ -89671,7 +90930,7 @@ "updatedAt": "2022-02-10T04:13:30Z", "createdAt": "2021-08-17T13:07:21Z", "pushedAt": "2022-02-10T04:13:30Z", - "forks": 53, + "forks": 54, "issues": 34, "subscribers": 7, "stars": 111, @@ -89697,13 +90956,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "vision-camera-face-detector", "npm": { - "downloads": 882, - "weekDownloads": 177, + "downloads": 887, + "weekDownloads": 155, "size": 105636, "latestRelease": "0.1.8", "latestReleaseDate": "2021-10-14T18:41:23.142Z" @@ -89714,7 +90974,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.329, + "popularity": -1.351, "topicSearchString": "react-native ios android" }, { @@ -89773,12 +91033,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-awesome-slider", "npm": { - "downloads": 140245, - "weekDownloads": 36971, + "downloads": 127395, + "weekDownloads": 29481, "size": 183923, "latestRelease": "2.9.0", "latestReleaseDate": "2024-12-30T13:17:41.647Z" @@ -89789,7 +91050,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.224, + "popularity": 0.197, "topicSearchString": "react-native reanimted gesture-handle slider scrubber slider-haptics-feedback component reanimated gesture-handler" }, { @@ -89819,7 +91080,7 @@ "forks": 88, "issues": 10, "subscribers": 10, - "stars": 2552, + "stars": 2557, "dependencies": 0 }, "name": "react-native-unistyles", @@ -89850,12 +91111,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-unistyles", "npm": { - "downloads": 230276, - "weekDownloads": 42907, + "downloads": 221999, + "weekDownloads": 39712, "size": 1396377, "latestRelease": "3.0.15", "latestReleaseDate": "2025-10-12T06:30:13.362Z" @@ -89866,7 +91128,7 @@ "Known", "Recently updated" ], - "popularity": 0.158, + "popularity": 0.152, "topicSearchString": "react-native ios android web expo fabric react typescript macos windows" }, { @@ -89922,12 +91184,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-theme-switch-animation", "npm": { - "downloads": 6402, - "weekDownloads": 1484, + "downloads": 5624, + "weekDownloads": 1391, "size": 75820, "latestRelease": "0.8.0", "latestReleaseDate": "2024-08-16T22:04:30.829Z" @@ -89938,7 +91201,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.197, + "popularity": 0.21, "topicSearchString": "react-native ios android animation theme dark-mode darkmode lightmode" }, { @@ -89997,12 +91260,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-drop-shadow", "npm": { - "downloads": 92858, - "weekDownloads": 22124, + "downloads": 84846, + "weekDownloads": 18301, "size": 49455, "latestRelease": "1.0.3", "latestReleaseDate": "2025-02-12T04:07:28.064Z" @@ -90013,7 +91277,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.203, + "popularity": 0.183, "topicSearchString": "react-native shadow android drop-shadow new shadow-android-react-native shadow-react-native shadow-react" }, { @@ -90066,11 +91330,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 135, - "weekDownloads": 12, + "downloads": 137, + "weekDownloads": 19, "size": 43272, "latestRelease": "1.1.0", "latestReleaseDate": "2024-01-29T17:01:22.562Z" @@ -90080,7 +91345,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.923, + "popularity": -0.881, "topicSearchString": "react-native expo expo-camera-characteristics expocameracharacteristics camera" }, { @@ -90110,10 +91375,10 @@ "updatedAt": "2025-03-29T18:44:34Z", "createdAt": "2020-11-19T11:49:34Z", "pushedAt": "2025-03-29T18:44:34Z", - "forks": 202, + "forks": 201, "issues": 182, "subscribers": 6, - "stars": 1023, + "stars": 1024, "dependencies": 1 }, "name": "react-native-collapsible-tab-view", @@ -90146,12 +91411,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-collapsible-tab-view", "npm": { - "downloads": 178460, - "weekDownloads": 45668, + "downloads": 162384, + "weekDownloads": 32434, "size": 417002, "latestRelease": "8.0.1", "latestReleaseDate": "2025-03-29T18:43:59.338Z" @@ -90164,7 +91430,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.218, + "popularity": 0.17, "topicSearchString": "component react-component react-native ios android tab swipe scrollable coverflow react expo tabs tabview" }, { @@ -90220,12 +91486,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-easing-gradient", "npm": { - "downloads": 41825, - "weekDownloads": 7296, + "downloads": 41052, + "weekDownloads": 5947, "size": 978254, "latestRelease": "1.1.1", "latestReleaseDate": "2024-02-27T09:35:28.020Z" @@ -90236,7 +91503,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.123, "topicSearchString": "react react-native gradients easing smooth expo" }, { @@ -90297,12 +91564,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-stable-diffusion", "npm": { - "downloads": 46, - "weekDownloads": 7, + "downloads": 55, + "weekDownloads": 8, "size": 147000, "latestRelease": "0.2.0", "latestReleaseDate": "2023-08-15T07:32:23.007Z" @@ -90312,7 +91580,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.61, + "popularity": -0.617, "topicSearchString": "react-native expo expo-stable-diffusion expostablediffusion ai ane coreml ios ipad ipados iphone stable-diffusion" }, { @@ -90371,12 +91639,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-bullet-graph", "npm": { - "downloads": 147, - "weekDownloads": 26, + "downloads": 154, + "weekDownloads": 42, "size": 900516, "latestRelease": "1.0.3", "latestReleaseDate": "2023-11-23T11:04:11.290Z" @@ -90386,7 +91655,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.847, + "popularity": -0.767, "topicSearchString": "react-native chart charts graph graphs data-visualization bullet-graph bullet-chart stats analysis analytics visualization" }, { @@ -90440,12 +91709,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-liquid-gauge", "npm": { - "downloads": 294, - "weekDownloads": 70, + "downloads": 289, + "weekDownloads": 68, "size": 225234, "latestRelease": "0.1.3", "latestReleaseDate": "2023-10-20T08:16:20.100Z" @@ -90455,7 +91725,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.547, + "popularity": -0.55, "topicSearchString": "react-native ios android" }, { @@ -90477,7 +91747,7 @@ "updatedAt": "2024-12-12T16:33:45Z", "createdAt": "2022-03-29T14:44:25Z", "pushedAt": "2024-12-12T16:33:45Z", - "forks": 88, + "forks": 89, "issues": 103, "subscribers": 14, "stars": 356, @@ -90505,11 +91775,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 4795, - "weekDownloads": 996, + "downloads": 5048, + "weekDownloads": 950, "size": 73930, "latestRelease": "1.0.11", "latestReleaseDate": "2024-12-12T16:33:43.257Z" @@ -90521,7 +91792,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.16, "topicSearchString": "react-native ios android unity" }, { @@ -90554,7 +91825,7 @@ "forks": 61, "issues": 29, "subscribers": 9, - "stars": 2073, + "stars": 2078, "dependencies": 3 }, "name": "zeego", @@ -90578,12 +91849,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "zeego", "npm": { - "downloads": 131064, - "weekDownloads": 24635, + "downloads": 128188, + "weekDownloads": 24208, "size": 781298, "latestRelease": "3.0.6", "latestReleaseDate": "2025-03-21T16:38:57.917Z" @@ -90594,7 +91866,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.161, "topicSearchString": "react-native ios android" }, { @@ -90645,12 +91917,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-video-duration", "npm": { - "downloads": 2351, - "weekDownloads": 495, + "downloads": 2166, + "weekDownloads": 486, "size": 16103, "latestRelease": "0.1.2", "latestReleaseDate": "2023-11-30T08:01:17.163Z" @@ -90660,7 +91933,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.071, + "popularity": -0.059, "topicSearchString": "react-native ios android" }, { @@ -90721,11 +91994,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 1713, - "weekDownloads": 289, + "downloads": 1709, + "weekDownloads": 225, "size": 148577, "latestRelease": "0.4.6", "latestReleaseDate": "2025-05-27T08:52:49.986Z" @@ -90734,7 +92008,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.112, "topicSearchString": "react-native ios android ble esp32 esp32-idf provisioning softap wifi-configuration" }, { @@ -90763,7 +92037,7 @@ "forks": 70, "issues": 6, "subscribers": 11, - "stars": 846, + "stars": 847, "dependencies": 0 }, "name": "@op-engineering/op-sqlite", @@ -90789,11 +92063,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 101204, - "weekDownloads": 14934, + "downloads": 102061, + "weekDownloads": 17513, "size": 319518114, "latestRelease": "15.0.7", "latestReleaseDate": "2025-10-10T19:41:15.970Z" @@ -90804,7 +92079,7 @@ "Known", "Recently updated" ], - "popularity": 0.125, + "popularity": 0.146, "topicSearchString": "react-native ios android sqlite jsi" }, { @@ -90855,12 +92130,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "native-wechat", "npm": { - "downloads": 169, - "weekDownloads": 19, + "downloads": 267, + "weekDownloads": 23, "size": 135276, "latestRelease": "1.0.21", "latestReleaseDate": "2025-01-05T15:45:15.682Z" @@ -90870,7 +92146,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.653, + "popularity": -0.676, "topicSearchString": "react-native ios android wechat" }, { @@ -90930,12 +92206,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-zendesk-unified", "npm": { - "downloads": 11, - "weekDownloads": 1, + "downloads": 23, + "weekDownloads": 2, "size": 90388, "latestRelease": "0.0.1-alpha.0", "latestReleaseDate": "2023-12-14T16:19:44.479Z" @@ -90945,7 +92222,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.9, + "popularity": -0.92, "topicSearchString": "react-native ios android expo library native-module react support unified zendesk hacktoberfest" }, { @@ -90999,11 +92276,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 4646, - "weekDownloads": 806, + "downloads": 4590, + "weekDownloads": 736, "size": 252656, "latestRelease": "4.0.0", "latestReleaseDate": "2025-01-02T14:42:01.056Z" @@ -91013,7 +92291,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.136, "topicSearchString": "bugfender logging debug android ios react-native web" }, { @@ -91064,13 +92342,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-auto-route", "npm": { - "downloads": 71, - "weekDownloads": 9, + "downloads": 70, + "weekDownloads": 12, "size": 511657, "latestRelease": "0.3.3", "latestReleaseDate": "2024-04-06T19:57:55.829Z" @@ -91080,7 +92359,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.387, + "popularity": -1.35, "topicSearchString": "react-native ios android auto-route" }, { @@ -91136,11 +92415,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 5376, - "weekDownloads": 741, + "downloads": 5333, + "weekDownloads": 1082, "size": 23484, "latestRelease": "1.2.0", "latestReleaseDate": "2024-06-26T16:29:05.123Z" @@ -91150,7 +92430,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.133, + "popularity": -0.077, "topicSearchString": "react-native local-network-permission expo reactnativelocalnetworkpermission ios local-network permissions swift" }, { @@ -91201,11 +92481,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-flix-snackbar", "npm": { - "downloads": 8, + "downloads": 35, "weekDownloads": 0, "size": 10190, "latestRelease": "1.0.2", @@ -91273,11 +92554,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 359, - "weekDownloads": 69, + "downloads": 321, + "weekDownloads": 45, "size": 35031, "latestRelease": "1.0.0", "latestReleaseDate": "2023-12-24T11:52:46.704Z" @@ -91287,7 +92569,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.836, + "popularity": -0.88, "topicSearchString": "react-native ios android switch switcher toggle reanimated gesture-handler" }, { @@ -91341,12 +92623,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-star-rating-widget", "npm": { - "downloads": 46471, - "weekDownloads": 9065, + "downloads": 44589, + "weekDownloads": 8830, "size": 79738, "latestRelease": "1.9.2", "latestReleaseDate": "2024-11-27T20:38:43.683Z" @@ -91357,7 +92640,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.168, "topicSearchString": "react-native ios android" }, { @@ -91385,7 +92668,7 @@ "forks": 9, "issues": 3, "subscribers": 7, - "stars": 274, + "stars": 275, "dependencies": 2 }, "name": "react-native-release-profiler", @@ -91419,12 +92702,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-release-profiler", "npm": { - "downloads": 307854, - "weekDownloads": 52276, + "downloads": 303221, + "weekDownloads": 67347, "size": 745302, "latestRelease": "0.4.2", "latestReleaseDate": "2025-10-16T10:50:11.182Z" @@ -91435,7 +92719,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.189, "topicSearchString": "react-native ios android debug debugger hermes jsi perf performance production profiler profiling release" }, { @@ -91459,7 +92743,7 @@ "updatedAt": "2023-07-19T06:57:01Z", "createdAt": "2022-11-21T13:11:30Z", "pushedAt": "2023-07-19T06:57:01Z", - "forks": 21, + "forks": 20, "issues": 16, "subscribers": 3, "stars": 188, @@ -91486,13 +92770,14 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "unmaintained": true, "npmPkg": "expo-dynamic-app-icon", "npm": { - "downloads": 6917, - "weekDownloads": 1502, + "downloads": 6436, + "weekDownloads": 1249, "size": 39183, "latestRelease": "1.2.0", "latestReleaseDate": "2023-07-19T06:56:17.210Z" @@ -91503,7 +92788,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.565, + "popularity": -0.585, "topicSearchString": "react-native expo expo-dynamic-app-icon expodynamicappicon" }, { @@ -91560,12 +92845,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-video-metadata", "npm": { - "downloads": 5061, - "weekDownloads": 1014, + "downloads": 4882, + "weekDownloads": 1022, "size": 70645, "latestRelease": "1.5.0", "latestReleaseDate": "2024-12-26T20:58:00.172Z" @@ -91575,7 +92861,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.178, "topicSearchString": "react-native expo expo-video-metadata expovideometadata video-module video-metadata video metadata" }, { @@ -91631,10 +92917,11 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 41, + "downloads": 123, "weekDownloads": 4, "size": 279032, "latestRelease": "0.5.6", @@ -91644,7 +92931,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.661, + "popularity": -0.721, "topicSearchString": "react-native ios android" }, { @@ -91671,8 +92958,8 @@ "pushedAt": "2025-09-22T09:18:21Z", "forks": 30, "issues": 25, - "subscribers": 2, - "stars": 131, + "subscribers": 3, + "stars": 132, "dependencies": 0 }, "name": "@kesha-antonov/react-native-background-downloader", @@ -91698,11 +92985,12 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 15890, - "weekDownloads": 2448, + "downloads": 16941, + "weekDownloads": 2961, "size": 210613, "latestRelease": "3.2.6", "latestReleaseDate": "2025-01-11T05:16:49.301Z" @@ -91712,7 +93000,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.131, + "popularity": 0.149, "topicSearchString": "react-native background download large-files new-architecture turbo-modules fabric" }, { @@ -91761,12 +93049,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 1626870, - "weekDownloads": 304916, + "downloads": 1556891, + "weekDownloads": 297929, "size": 32759, "latestRelease": "3.0.9", "latestReleaseDate": "2023-08-01T12:11:04.037Z" @@ -91778,7 +93067,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.587, "topicSearchString": "react react-native theme provider" }, { @@ -91844,12 +93133,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-dynamically-selected-picker", "npm": { - "downloads": 963, - "weekDownloads": 158, + "downloads": 1066, + "weekDownloads": 146, "size": 84020, "latestRelease": "3.3.0", "latestReleaseDate": "2023-11-26T06:18:14.535Z" @@ -91859,7 +93149,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.61, + "popularity": 0.117, "topicSearchString": "react-native ios android swipe-picker dynamic-select selector select-picker ios-style-android-picker ios-android-picker on-scroll-select picker swiper scroll-change-picker ios-android-select typescript-support" }, { @@ -91921,12 +93211,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-popover-view", "npm": { - "downloads": 229261, - "weekDownloads": 44943, + "downloads": 221968, + "weekDownloads": 43854, "size": 309659, "latestRelease": "6.1.0", "latestReleaseDate": "2025-01-15T10:14:34.820Z" @@ -91938,7 +93229,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.168, "topicSearchString": "react-component react-native ios android ui popover modal view component tablet react-navigation" }, { @@ -91962,7 +93253,7 @@ "forks": 14, "issues": 1, "subscribers": 1, - "stars": 145, + "stars": 144, "dependencies": 0 }, "name": "react-native-heroicons", @@ -91985,12 +93276,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-heroicons", "npm": { - "downloads": 92488, - "weekDownloads": 18082, + "downloads": 92026, + "weekDownloads": 20962, "size": 3181281, "latestRelease": "4.0.0", "latestReleaseDate": "2024-01-01T20:41:51.051Z" @@ -92001,7 +93293,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.194, "topicSearchString": "react react-native heroicons heroiconsui" }, { @@ -92051,13 +93343,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-asset", "npm": { - "downloads": 154698, - "weekDownloads": 26975, + "downloads": 151021, + "weekDownloads": 27697, "size": 26258, "latestRelease": "2.1.1", "latestReleaseDate": "2023-04-27T13:17:51.197Z" @@ -92068,7 +93361,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": -0.594, "topicSearchString": "react-native react native js asset assets link" }, { @@ -92123,12 +93416,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-json-tree", "npm": { - "downloads": 55309, - "weekDownloads": 10459, + "downloads": 52693, + "weekDownloads": 10083, "size": 31536, "latestRelease": "1.5.0", "latestReleaseDate": "2025-02-04T23:17:57.105Z" @@ -92139,7 +93433,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.163, "topicSearchString": "react react-native json tree viewer json-viewer theme iterables" }, { @@ -92166,7 +93460,7 @@ "forks": 183, "issues": 41, "subscribers": 17, - "stars": 785, + "stars": 786, "dependencies": 2 }, "name": "react-native-version-check", @@ -92193,12 +93487,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-version-check", "npm": { - "downloads": 191054, - "weekDownloads": 35371, + "downloads": 185167, + "weekDownloads": 36125, "size": 33756, "latestRelease": "3.5.0", "latestReleaseDate": "2025-05-02T10:06:21.963Z" @@ -92209,7 +93504,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.166, "topicSearchString": "react-native android ios version-check version app-version market-version app-store-version" }, { @@ -92235,7 +93530,7 @@ "forks": 183, "issues": 41, "subscribers": 17, - "stars": 785, + "stars": 786, "dependencies": 3 }, "name": "react-native-version-check-expo", @@ -92263,12 +93558,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-version-check-expo", "npm": { - "downloads": 24944, - "weekDownloads": 4025, + "downloads": 24675, + "weekDownloads": 4669, "size": 9633, "latestRelease": "3.5.0", "latestReleaseDate": "2025-05-02T10:06:23.734Z" @@ -92279,7 +93575,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.137, + "popularity": 0.161, "topicSearchString": "react-native expo android ios version-check version app-version market-version app-store-version" }, { @@ -92334,13 +93630,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-signature-pad", "npm": { - "downloads": 1378, - "weekDownloads": 264, + "downloads": 1394, + "weekDownloads": 234, "size": 23386, "latestRelease": "0.1.2", "latestReleaseDate": "2022-09-20T16:40:45.676Z" @@ -92351,7 +93648,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.607, "topicSearchString": "react-native react-component ios android signature pad signaturepad canvas" }, { @@ -92403,12 +93700,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-android-location-enabler", "npm": { - "downloads": 111487, - "weekDownloads": 20975, + "downloads": 112191, + "weekDownloads": 21541, "size": 22104, "latestRelease": "3.0.1", "latestReleaseDate": "2025-07-28T20:44:23.473Z" @@ -92418,7 +93716,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.163, "topicSearchString": "react-native android" }, { @@ -92491,12 +93789,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-full-responsive", "npm": { - "downloads": 3301, - "weekDownloads": 626, + "downloads": 3206, + "weekDownloads": 531, "size": 142032, "latestRelease": "2.4.5", "latestReleaseDate": "2025-07-06T17:47:47.823Z" @@ -92505,7 +93804,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.141, "topicSearchString": "react-native responsive responsive-ui responsive-font full-responsive responsive-scale responsive-layout responsive-font-size responsive-dimensions media-query responsive-size responsiveness responsiveness-react-native usestyle" }, { @@ -92527,9 +93826,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-16T01:08:38Z", + "updatedAt": "2025-10-17T20:16:03Z", "createdAt": "2023-04-21T22:58:15Z", - "pushedAt": "2025-10-16T01:08:38Z", + "pushedAt": "2025-10-17T20:16:03Z", "forks": 28, "issues": 43, "subscribers": 17, @@ -92557,11 +93856,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 1343, - "weekDownloads": 53, + "downloads": 3416, + "weekDownloads": 156, "size": 1188013, "latestRelease": "5.0.5", "latestReleaseDate": "2025-10-11T01:10:04.515Z" @@ -92571,7 +93871,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.034, + "popularity": 0.039, "topicSearchString": "react-native expo xmtp-sdk xmtp" }, { @@ -92598,7 +93898,7 @@ "updatedAt": "2025-10-03T09:36:34Z", "createdAt": "2023-10-03T15:17:51Z", "pushedAt": "2025-10-03T09:36:34Z", - "forks": 57, + "forks": 58, "issues": 29, "subscribers": 11, "stars": 536, @@ -92626,11 +93926,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 20203, - "weekDownloads": 2740, + "downloads": 20013, + "weekDownloads": 3501, "size": 1313338, "latestRelease": "1.25.1", "latestReleaseDate": "2025-10-03T09:38:41.438Z" @@ -92641,7 +93942,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.115, + "popularity": 0.149, "topicSearchString": "data-sync offline-first sqlite real-time-data-stream live-data" }, { @@ -92672,7 +93973,7 @@ "forks": 29, "issues": 4, "subscribers": 9, - "stars": 881, + "stars": 880, "dependencies": 0 }, "name": "swiftui-react-native", @@ -92694,12 +93995,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "swiftui-react-native", "npm": { - "downloads": 982, - "weekDownloads": 201, + "downloads": 1042, + "weekDownloads": 179, "size": 6657436, "latestRelease": "6.3.3", "latestReleaseDate": "2024-11-13T23:50:45.390Z" @@ -92710,7 +94012,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.576, + "popularity": 0.146, "topicSearchString": "react-native swiftui" }, { @@ -92765,12 +94067,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-cloud-storage", "npm": { - "downloads": 11412, - "weekDownloads": 2023, + "downloads": 11419, + "weekDownloads": 1518, "size": 395217, "latestRelease": "2.3.0", "latestReleaseDate": "2025-06-14T14:10:46.382Z" @@ -92780,7 +94083,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.113, "topicSearchString": "react-native ios android icloud google-drive file-system" }, { @@ -92808,7 +94111,7 @@ "forks": 7, "issues": 3, "subscribers": 2, - "stars": 86, + "stars": 87, "dependencies": 0 }, "name": "expo-squircle-view", @@ -92832,12 +94135,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-squircle-view", "npm": { - "downloads": 5077, - "weekDownloads": 1095, + "downloads": 4902, + "weekDownloads": 991, "size": 74605, "latestRelease": "1.1.0", "latestReleaseDate": "2024-08-24T11:42:50.617Z" @@ -92847,7 +94151,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.183, + "popularity": 0.172, "topicSearchString": "react-native expo expo-squircle-view exposquircleview" }, { @@ -92901,11 +94205,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 20, - "weekDownloads": 6, + "downloads": 24, + "weekDownloads": 2, "size": 30334, "latestRelease": "1.0.0", "latestReleaseDate": "2024-01-11T10:23:17.415Z" @@ -92915,7 +94220,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.7, + "popularity": -0.92, "topicSearchString": "react-native ios android" }, { @@ -92966,10 +94271,11 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 20, + "downloads": 24, "weekDownloads": 4, "size": 16803, "latestRelease": "1.0.0", @@ -92980,7 +94286,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.8, + "popularity": -0.84, "topicSearchString": "react-native ios android" }, { @@ -93035,11 +94341,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 24, - "weekDownloads": 5, + "downloads": 20, + "weekDownloads": 2, "size": 20939, "latestRelease": "1.0.0", "latestReleaseDate": "2024-01-11T10:19:40.289Z" @@ -93049,7 +94356,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.8, + "popularity": -0.9, "topicSearchString": "react-native ios android" }, { @@ -93107,12 +94414,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-imagemin-asset-plugin", "npm": { - "downloads": 1040, - "weekDownloads": 95, + "downloads": 1121, + "weekDownloads": 189, "size": 16480, "latestRelease": "2.0.0", "latestReleaseDate": "2024-01-03T01:54:53.677Z" @@ -93122,7 +94430,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.172, + "popularity": -0.106, "topicSearchString": "react-native metro compress image assetplugin imagemin asset-plugin" }, { @@ -93175,12 +94483,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-custom-assets", "npm": { - "downloads": 35235, - "weekDownloads": 6473, + "downloads": 33665, + "weekDownloads": 6759, "size": 10699, "latestRelease": "1.5.0", "latestReleaseDate": "2025-08-05T07:47:19.143Z" @@ -93190,7 +94499,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.171, "topicSearchString": "react expo config-plugins prebuild" }, { @@ -93240,13 +94549,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-loader-collection", "npm": { - "downloads": 470, - "weekDownloads": 124, + "downloads": 566, + "weekDownloads": 102, "size": 1463934, "latestRelease": "0.8.3", "latestReleaseDate": "2022-05-02T07:47:33.364Z" @@ -93256,7 +94566,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.525, + "popularity": -1.597, "topicSearchString": "react-native ios android" }, { @@ -93305,11 +94615,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 110, - "weekDownloads": 9, + "downloads": 138, + "weekDownloads": 13, "size": 33117, "latestRelease": "0.1.3", "latestReleaseDate": "2024-02-09T10:24:03.168Z" @@ -93319,7 +94630,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.928, + "popularity": -0.919, "topicSearchString": "react-native ios android" }, { @@ -93364,11 +94675,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-svg-editor", "npm": { - "downloads": 65, + "downloads": 161, "weekDownloads": 0, "size": 8076598, "latestRelease": "0.1.6", @@ -93406,13 +94718,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-14T14:34:12Z", + "updatedAt": "2025-10-16T21:41:46Z", "createdAt": "2023-11-20T08:24:03Z", - "pushedAt": "2025-10-14T14:34:12Z", + "pushedAt": "2025-10-16T21:41:46Z", "forks": 94, "issues": 46, "subscribers": 42, - "stars": 1204, + "stars": 1210, "dependencies": 0 }, "name": "@expensify/react-native-live-markdown", @@ -93438,14 +94750,15 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 75625, - "weekDownloads": 14095, + "downloads": 77387, + "weekDownloads": 14386, "size": 756154, - "latestRelease": "0.1.308", - "latestReleaseDate": "2025-10-14T14:34:27.460Z" + "latestRelease": "0.1.309", + "latestReleaseDate": "2025-10-16T21:42:02.426Z" }, "score": 73, "matchingScoreModifiers": [ @@ -93493,11 +94806,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4213, - "weekDownloads": 713, + "downloads": 4803, + "weekDownloads": 699, "size": 9813, "latestRelease": "1.2.2", "latestReleaseDate": "2025-01-16T16:12:16.814Z" @@ -93508,7 +94822,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.124, "topicSearchString": "" }, { @@ -93563,12 +94877,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-fast-trie", "npm": { - "downloads": 997, - "weekDownloads": 286, + "downloads": 867, + "weekDownloads": 180, "size": 281741, "latestRelease": "0.2.1", "latestReleaseDate": "2024-01-23T21:12:15.499Z" @@ -93578,7 +94893,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.506, + "popularity": -0.574, "topicSearchString": "react-native ios android fast jsi search trie" }, { @@ -93636,12 +94951,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-heap-profiler", "npm": { - "downloads": 16, - "weekDownloads": 5, + "downloads": 67, + "weekDownloads": 3, "size": 53074, "latestRelease": "0.2.2", "latestReleaseDate": "2024-01-27T20:38:37.466Z" @@ -93651,7 +94967,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.667, + "popularity": -0.96, "topicSearchString": "react-native ios android debugging heap jsi memory observability profiling" }, { @@ -93707,12 +95023,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-reanimated-progress-steps", "npm": { - "downloads": 220, - "weekDownloads": 39, + "downloads": 278, + "weekDownloads": 29, "size": 142286, "latestRelease": "0.3.0", "latestReleaseDate": "2024-05-26T09:04:12.628Z" @@ -93722,7 +95039,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.847, + "popularity": -0.911, "topicSearchString": "react-native ios android" }, { @@ -93793,12 +95110,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-story-view", "npm": { - "downloads": 2804, - "weekDownloads": 511, + "downloads": 2839, + "weekDownloads": 470, "size": 230686, "latestRelease": "3.2.0", "latestReleaseDate": "2024-06-04T04:57:17.775Z" @@ -93809,7 +95127,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.141, "topicSearchString": "react react-native typescript story-view status-view rn rn-story-view story status animated-story animated-status gesture-story component android ios animation react-reaction react-component instagram-stories library stories" }, { @@ -93868,12 +95186,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-pintyper", "npm": { - "downloads": 38, - "weekDownloads": 6, + "downloads": 40, + "weekDownloads": 2, "size": 28105, "latestRelease": "0.1.2", "latestReleaseDate": "2024-02-14T11:30:15.574Z" @@ -93883,7 +95202,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.85, + "popularity": -0.956, "topicSearchString": "react react-native ios android pin pincode javascript textinput" }, { @@ -93945,12 +95264,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-countdown-timer-hooks", "npm": { - "downloads": 1555, - "weekDownloads": 250, + "downloads": 1503, + "weekDownloads": 207, "size": 311827, "latestRelease": "1.0.5", "latestReleaseDate": "2024-01-24T07:03:17.578Z" @@ -93960,7 +95280,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.137, + "popularity": 0.117, "topicSearchString": "react-native react-component react native mobile ios android countdown timer stopwatch reset hooks" }, { @@ -94023,12 +95343,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-modal-sheet", "npm": { - "downloads": 271081, - "weekDownloads": 52980, + "downloads": 257948, + "weekDownloads": 49160, "size": 435518, "latestRelease": "5.2.1", "latestReleaseDate": "2025-10-12T17:15:09.541Z" @@ -94040,7 +95361,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.162, "topicSearchString": "react modal motion bottom-sheet accessibility framer-motion reactjs" }, { @@ -94070,7 +95391,7 @@ "forks": 34, "issues": 3, "subscribers": 5, - "stars": 110, + "stars": 111, "dependencies": 2 }, "name": "@reown/appkit-wagmi-react-native", @@ -94090,11 +95411,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 15918, - "weekDownloads": 2868, + "downloads": 15721, + "weekDownloads": 3461, "size": 85769, "latestRelease": "2.0.1", "latestReleaseDate": "2025-10-08T18:47:23.215Z" @@ -94104,7 +95426,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.187, "topicSearchString": "web3 appkit crypto ethereum appkit walletconnect react-native wagmi" }, { @@ -94135,7 +95457,7 @@ "forks": 93, "issues": 60, "subscribers": 4, - "stars": 311, + "stars": 312, "dependencies": 1 }, "name": "react-native-image-slider-box", @@ -94170,12 +95492,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-image-slider-box", "npm": { - "downloads": 9235, - "weekDownloads": 1981, + "downloads": 9281, + "weekDownloads": 2026, "size": 529818, "latestRelease": "2.0.7", "latestReleaseDate": "2022-10-14T05:52:37.363Z" @@ -94186,7 +95509,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.182, + "popularity": 0.186, "topicSearchString": "image-slider-box image-slider react-native slider reactnative react-component component react mobile ios android ui image-paging-slider react-components image library" }, { @@ -94244,13 +95567,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-push-notification-popup", "npm": { - "downloads": 5854, - "weekDownloads": 1198, + "downloads": 5494, + "weekDownloads": 1058, "size": 24202, "latestRelease": "1.7.0", "latestReleaseDate": "2023-08-17T15:22:28.217Z" @@ -94261,7 +95585,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.576, + "popularity": -0.586, "topicSearchString": "react react-native react-component component push-notification ios android modal popup dialog javascript" }, { @@ -94313,12 +95637,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-draggable-grid", "npm": { - "downloads": 25050, - "weekDownloads": 5152, + "downloads": 24002, + "weekDownloads": 4760, "size": 61257, "latestRelease": "2.2.2", "latestReleaseDate": "2025-06-15T14:14:03.273Z" @@ -94328,7 +95653,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.169, "topicSearchString": "drag sortable grid react-native component draggable" }, { @@ -94379,13 +95704,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-user-inactivity", "npm": { - "downloads": 35878, - "weekDownloads": 6602, + "downloads": 33903, + "weekDownloads": 6081, "size": 17851, "latestRelease": "1.2.0", "latestReleaseDate": "2021-02-02T09:36:48.629Z" @@ -94396,7 +95722,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.598, "topicSearchString": "react react-native user typescript tracking inactivity component hacktoberfest" }, { @@ -94450,12 +95776,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "vision-camera-cropper", "npm": { - "downloads": 4027, - "weekDownloads": 603, + "downloads": 4058, + "weekDownloads": 663, "size": 79427, "latestRelease": "1.3.1", "latestReleaseDate": "2024-09-04T05:30:08.641Z" @@ -94465,7 +95792,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.127, + "popularity": 0.139, "topicSearchString": "react-native ios android cropper image-processing vision-camera" }, { @@ -94497,7 +95824,7 @@ "forks": 47, "issues": 10, "subscribers": 7, - "stars": 1358, + "stars": 1360, "dependencies": 1 }, "name": "@marceloterreiro/flash-calendar", @@ -94515,11 +95842,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 55818, - "weekDownloads": 12551, + "downloads": 51554, + "weekDownloads": 11075, "size": 499107, "latestRelease": "1.3.0", "latestReleaseDate": "2024-12-04T15:57:00.605Z" @@ -94531,7 +95859,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.191, + "popularity": 0.183, "topicSearchString": "" }, { @@ -94583,11 +95911,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 2064, - "weekDownloads": 375, + "downloads": 2022, + "weekDownloads": 288, "size": 27523, "latestRelease": "0.2.1", "latestReleaseDate": "2024-03-01T15:55:28.843Z" @@ -94597,7 +95926,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.095, + "popularity": -0.129, "topicSearchString": "react-native ios android" }, { @@ -94651,11 +95980,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 11155, - "weekDownloads": 2159, + "downloads": 10493, + "weekDownloads": 2820, "size": 33857, "latestRelease": "1.1.5", "latestReleaseDate": "2024-03-02T20:11:38.778Z" @@ -94664,7 +95994,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.229, "topicSearchString": "rails actioncable react-native reactnative websockets react action-cable rails5 rails6 realtime" }, { @@ -94698,7 +96028,7 @@ "forks": 35, "issues": 1, "subscribers": 2, - "stars": 433, + "stars": 434, "dependencies": 1 }, "name": "@codeherence/react-native-header", @@ -94721,11 +96051,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 7688, - "weekDownloads": 1490, + "downloads": 7208, + "weekDownloads": 1526, "size": 293002, "latestRelease": "1.0.0", "latestReleaseDate": "2025-09-29T03:19:40.016Z" @@ -94736,7 +96067,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.18, "topicSearchString": "react-native ios android" }, { @@ -94789,12 +96120,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-uitextview", "npm": { - "downloads": 45029, - "weekDownloads": 7857, + "downloads": 44389, + "weekDownloads": 8301, "size": 137174, "latestRelease": "2.1.0-rc.0", "latestReleaseDate": "2025-06-20T04:41:04.514Z" @@ -94805,7 +96137,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.159, "topicSearchString": "react-native ios android expo text uitextvi" }, { @@ -94827,10 +96159,10 @@ "updatedAt": "2025-07-01T21:24:46Z", "createdAt": "2021-04-23T13:06:35Z", "pushedAt": "2025-07-01T21:24:46Z", - "forks": 38, + "forks": 39, "issues": 11, "subscribers": 9, - "stars": 323, + "stars": 325, "dependencies": 0 }, "name": "react-native-sse", @@ -94860,12 +96192,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sse", "npm": { - "downloads": 248238, - "weekDownloads": 46798, + "downloads": 241851, + "weekDownloads": 45169, "size": 24084, "latestRelease": "1.2.1", "latestReleaseDate": "2024-03-05T10:37:27.135Z" @@ -94875,7 +96208,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.159, "topicSearchString": "react-native expo event-source sse server-sent-events chatgpt stream ios android eventsource typescript" }, { @@ -94933,12 +96266,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-foreground-actions", "npm": { - "downloads": 209, - "weekDownloads": 6, + "downloads": 626, + "weekDownloads": 13, "size": 2883980, "latestRelease": "0.4.5", "latestReleaseDate": "2024-03-06T19:55:08.307Z" @@ -94948,7 +96282,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.726, + "popularity": -0.732, "topicSearchString": "react-native expo expo-modules-api expo-modules expo-foreground-actions expoforegroundactions javascript kotlin react swift typescript" }, { @@ -95003,12 +96337,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-custom-alert-prompt", "npm": { - "downloads": 394, - "weekDownloads": 112, + "downloads": 335, + "weekDownloads": 76, "size": 60411, "latestRelease": "1.1.6", "latestReleaseDate": "2025-09-14T11:17:03.181Z" @@ -95017,7 +96352,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.757, + "popularity": -0.805, "topicSearchString": "react-native alert prompt async promise dialog modal ui-component user-interaction simple lightweight" }, { @@ -95073,12 +96408,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-segmented-tab-controls", "npm": { - "downloads": 30, - "weekDownloads": 7, + "downloads": 35, + "weekDownloads": 4, "size": 20877, "latestRelease": "1.0.6", "latestReleaseDate": "2025-09-14T12:11:28.955Z" @@ -95087,7 +96423,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.8, + "popularity": -0.9, "topicSearchString": "react-native segmented-control tab-control tabs segmented-tabs ui-component navigation user-interface tabs-navigation segmented-navigation simple lightweight" }, { @@ -95144,12 +96480,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-cn-quill", "npm": { - "downloads": 17660, - "weekDownloads": 3285, + "downloads": 17376, + "weekDownloads": 3553, "size": 3465282, "latestRelease": "0.7.20", "latestReleaseDate": "2025-02-10T08:25:48.297Z" @@ -95160,7 +96497,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.174, "topicSearchString": "react-native ios android rich-text wysiwyg-editor quill editor" }, { @@ -95213,11 +96550,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-purchase-kit", "npm": { - "downloads": 15, + "downloads": 64, "weekDownloads": 0, "size": 156784, "latestRelease": "0.4.0", @@ -95286,11 +96624,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 23864, - "weekDownloads": 4460, + "downloads": 22172, + "weekDownloads": 4635, "size": 562073, "latestRelease": "1.7.2", "latestReleaseDate": "2024-11-06T14:12:08.078Z" @@ -95301,7 +96640,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.178, "topicSearchString": "react-native ios android image nuke activityindicator transition coil coil-kotlin cache" }, { @@ -95355,11 +96694,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 50, - "weekDownloads": 6, + "downloads": 51, + "weekDownloads": 8, "size": 36512, "latestRelease": "0.4.5", "latestReleaseDate": "2023-12-02T15:09:35.766Z" @@ -95369,7 +96709,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.641, + "popularity": -0.617, "topicSearchString": "react-native ios android app-icon new-architecture typescript" }, { @@ -95425,12 +96765,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-openai", "npm": { - "downloads": 1177, - "weekDownloads": 196, + "downloads": 1213, + "weekDownloads": 191, "size": 257419, "latestRelease": "0.6.2", "latestReleaseDate": "2024-11-02T14:51:11.785Z" @@ -95440,7 +96781,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.134, "topicSearchString": "react-native ios android lightweight openai urlsession kotlin ktor swift" }, { @@ -95497,11 +96838,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 699, - "weekDownloads": 91, + "downloads": 829, + "weekDownloads": 81, "size": 52237, "latestRelease": "0.3.3", "latestReleaseDate": "2024-04-20T18:31:14.842Z" @@ -95511,7 +96853,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.639, + "popularity": -0.667, "topicSearchString": "react-native ios android haptics ahap corehaptics uifeedbackgenerator uikit" }, { @@ -95539,7 +96881,7 @@ "forks": 29, "issues": 22, "subscribers": 9, - "stars": 982, + "stars": 983, "dependencies": 1 }, "name": "react-native-skottie", @@ -95562,11 +96904,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 173, - "weekDownloads": 42, + "downloads": 342, + "weekDownloads": 48, "size": 314151, "latestRelease": "2.1.4", "latestReleaseDate": "2024-05-06T09:09:02.472Z" @@ -95578,7 +96921,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.54, + "popularity": -0.63, "topicSearchString": "react-native ios android" }, { @@ -95643,12 +96986,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-gif-player", "npm": { - "downloads": 607, - "weekDownloads": 107, + "downloads": 625, + "weekDownloads": 111, "size": 67240, "latestRelease": "1.0.2", "latestReleaseDate": "2024-04-02T19:52:17.865Z" @@ -95710,11 +97054,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 23, - "weekDownloads": 2, + "downloads": 261, + "weekDownloads": 1, "size": 83252, "latestRelease": "0.0.14", "latestReleaseDate": "2024-08-09T11:07:21.739Z" @@ -95724,7 +97069,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.92, + "popularity": -0.997, "topicSearchString": "react-native ios android" }, { @@ -95802,11 +97147,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 93, - "weekDownloads": 29, + "downloads": 94, + "weekDownloads": 23, "size": 101488, "latestRelease": "0.3.7", "latestReleaseDate": "2024-04-06T22:26:44.687Z" @@ -95817,7 +97163,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.724, + "popularity": -0.791, "topicSearchString": "otp-input ios android react-native otp input authentication verification code-input mobile new-arch-compatible-otp-input otp-text-input two-factor-authentication 2fa-otp-input phone-number android-library ios-library newarchitecture otp-library otp-textfield otp-verification websupport" }, { @@ -95865,12 +97211,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-windows-hello", "npm": { - "downloads": 277, - "weekDownloads": 3, + "downloads": 311, + "weekDownloads": 25, "size": 54554, "latestRelease": "1.1.0", "latestReleaseDate": "2022-02-21T16:47:15.840Z" @@ -95880,7 +97227,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.991, + "popularity": -0.932, "topicSearchString": "windows hello windows-hello" }, { @@ -95931,7 +97278,8 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": {}, "score": 43, @@ -95971,7 +97319,7 @@ "forks": 43, "issues": 33, "subscribers": 6, - "stars": 1188, + "stars": 1192, "dependencies": 0 }, "name": "@lodev09/react-native-true-sheet", @@ -95999,11 +97347,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 69483, - "weekDownloads": 12145, + "downloads": 67037, + "weekDownloads": 12848, "size": 184900, "latestRelease": "2.0.6", "latestReleaseDate": "2025-07-10T18:40:47.533Z" @@ -96014,7 +97363,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.163, "topicSearchString": "react-native ios android bottom-sheet native-sheet sheet modal-sheet" }, { @@ -96063,11 +97412,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 469, - "weekDownloads": 85, + "downloads": 737, + "weekDownloads": 54, "size": 117097, "latestRelease": "1.5.20", "latestReleaseDate": "2024-06-19T03:26:25.156Z" @@ -96077,7 +97427,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.845, + "popularity": -0.938, "topicSearchString": "react-native ssh sftp sftp-client ssh-client" }, { @@ -96145,12 +97495,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-slider-intro", "npm": { - "downloads": 520, - "weekDownloads": 75, + "downloads": 523, + "weekDownloads": 91, "size": 180062, "latestRelease": "3.0.1", "latestReleaseDate": "2025-02-14T19:34:28.805Z" @@ -96160,7 +97511,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.627, + "popularity": -0.602, "topicSearchString": "react-native ios android slider swiper intro carousel tutorial app animation mobile ui react-component customizable mobile-development" }, { @@ -96217,12 +97568,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-find-local-devices", "npm": { - "downloads": 364, - "weekDownloads": 21, + "downloads": 621, + "weekDownloads": 75, "size": 39052, "latestRelease": "2.0.9", "latestReleaseDate": "2024-04-14T08:32:46.746Z" @@ -96232,7 +97584,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.701, + "popularity": -0.647, "topicSearchString": "react-native ios android local-network network-discovery websocket-connection portscanning" }, { @@ -96285,11 +97637,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 11, - "weekDownloads": 1, + "downloads": 60, + "weekDownloads": 2, "size": 4253, "latestRelease": "1.0.1", "latestReleaseDate": "2024-05-04T04:57:53.952Z" @@ -96299,7 +97652,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.9, + "popularity": -0.971, "topicSearchString": "react-native react javascript" }, { @@ -96325,7 +97678,7 @@ "updatedAt": "2025-09-11T03:27:47Z", "createdAt": "2022-02-17T08:49:24Z", "pushedAt": "2025-09-11T03:27:47Z", - "forks": 103, + "forks": 102, "issues": 31, "subscribers": 14, "stars": 872, @@ -96361,12 +97714,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "nitro" }, "npmPkg": "react-native-quick-crypto", "npm": { - "downloads": 447136, - "weekDownloads": 77737, + "downloads": 434015, + "weekDownloads": 91556, "size": 1118024, "latestRelease": "0.7.17", "latestReleaseDate": "2025-08-04T17:51:22.894Z" @@ -96377,7 +97731,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.179, "topicSearchString": "react-native ios android jsi nitro crypto cryptography cryptocurrency c++ fast quick web3" }, { @@ -96432,11 +97786,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 23, - "weekDownloads": 5, + "downloads": 590, + "weekDownloads": 3, "size": 665879, "latestRelease": "0.2.10", "latestReleaseDate": "2024-09-05T02:40:57.317Z" @@ -96446,7 +97801,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.55, + "popularity": -0.746, "topicSearchString": "react-native ios android" }, { @@ -96498,11 +97853,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 33, - "weekDownloads": 3, + "downloads": 373, + "weekDownloads": 9, "size": 53567, "latestRelease": "0.1.2", "latestReleaseDate": "2025-01-23T04:03:19.287Z" @@ -96512,7 +97868,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.664, + "popularity": -0.729, "topicSearchString": "react-native ios android" }, { @@ -96587,12 +97943,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-inkpad", "npm": { - "downloads": 273, - "weekDownloads": 56, + "downloads": 269, + "weekDownloads": 42, "size": 359214, "latestRelease": "1.0.7", "latestReleaseDate": "2025-09-14T11:55:32.585Z" @@ -96601,7 +97958,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.575, + "popularity": -0.617, "topicSearchString": "react-native ui-library alert prompt actionsheet avatar button floating checkbox interactive radiobuttons card floatingcard images icons inputs navigation bottom-navigation tap-navigation progress progressbar rating rbnb-rating slide switch tab-control toast drawer ui-component user-interaction lightweight" }, { @@ -96662,11 +98019,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 288, - "weekDownloads": 33, + "downloads": 399, + "weekDownloads": 54, "size": 133983, "latestRelease": "0.3.2", "latestReleaseDate": "2025-01-24T19:43:02.527Z" @@ -96676,7 +98034,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.651, + "popularity": -0.634, "topicSearchString": "react-native ios android recorder expo expo-av audio" }, { @@ -96705,8 +98063,8 @@ "updatedAt": "2025-10-11T05:55:30Z", "createdAt": "2023-07-22T10:57:24Z", "pushedAt": "2025-10-11T05:55:30Z", - "forks": 129, - "issues": 9, + "forks": 130, + "issues": 8, "subscribers": 64, "stars": 907, "dependencies": 0 @@ -96734,12 +98092,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-turbo-image", "npm": { - "downloads": 99688, - "weekDownloads": 19837, + "downloads": 99675, + "weekDownloads": 19926, "size": 49370683, "latestRelease": "1.23.0", "latestReleaseDate": "2025-08-18T12:25:47.161Z" @@ -96751,7 +98110,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.17, "topicSearchString": "react-native ios android image-caching image-loading" }, { @@ -96781,7 +98140,7 @@ "forks": 273, "issues": 82, "subscribers": 6, - "stars": 2026, + "stars": 2027, "dependencies": 0 }, "name": "react-native-toast-message", @@ -96802,12 +98161,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-toast-message", "npm": { - "downloads": 1199807, - "weekDownloads": 229680, + "downloads": 1160511, + "weekDownloads": 228963, "size": 44640, "latestRelease": "2.3.3", "latestReleaseDate": "2025-07-01T09:11:24.146Z" @@ -96819,7 +98179,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.168, "topicSearchString": "react-native toast" }, { @@ -96875,12 +98235,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-orientation-director", "npm": { - "downloads": 10001, - "weekDownloads": 2513, + "downloads": 8592, + "weekDownloads": 2178, "size": 191320, "latestRelease": "2.6.1", "latestReleaseDate": "2025-07-27T15:31:32.719Z" @@ -96889,7 +98250,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.214, + "popularity": 0.216, "topicSearchString": "react-native ios android device handler interface listener orientation" }, { @@ -96947,12 +98308,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 29, - "weekDownloads": 10, + "downloads": 30, + "weekDownloads": 11, "size": 163132, "latestRelease": "0.9.0", "latestReleaseDate": "2021-12-11T19:16:42.461Z" @@ -96962,7 +98324,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.167, + "popularity": -1.186, "topicSearchString": "breeffy react-native android picker component reanimated ui" }, { @@ -97013,12 +98375,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-reanimated-table", "npm": { - "downloads": 52620, - "weekDownloads": 19182, + "downloads": 40742, + "weekDownloads": 11307, "size": 73237, "latestRelease": "0.0.2", "latestReleaseDate": "2023-04-27T06:01:57.356Z" @@ -97029,7 +98392,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.56, + "popularity": 0.236, "topicSearchString": "react-native ios android" }, { @@ -97077,12 +98440,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-onyx", "npm": { - "downloads": 77080, - "weekDownloads": 13947, + "downloads": 80106, + "weekDownloads": 14591, "size": 329328, "latestRelease": "3.0.6", "latestReleaseDate": "2025-10-10T17:38:45.008Z" @@ -97093,7 +98457,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.155, "topicSearchString": "react-native react persistent-storage pub/sub" }, { @@ -97143,11 +98507,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 100213, - "weekDownloads": 23030, + "downloads": 93673, + "weekDownloads": 19103, "size": 641755, "latestRelease": "1.10.0", "latestReleaseDate": "2025-07-22T09:11:29.303Z" @@ -97159,7 +98524,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.195, + "popularity": 0.173, "topicSearchString": "react-native editor rich-editor wysiwyg wysiwyg-editors rn" }, { @@ -97186,7 +98551,7 @@ "forks": 4, "issues": 3, "subscribers": 4, - "stars": 184, + "stars": 185, "dependencies": 12 }, "name": "expo-atlas", @@ -97213,12 +98578,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-atlas", "npm": { - "downloads": 344483, - "weekDownloads": 64592, + "downloads": 329100, + "weekDownloads": 60659, "size": 5136274, "latestRelease": "0.4.3", "latestReleaseDate": "2025-08-14T07:57:38.564Z" @@ -97228,7 +98594,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.157, "topicSearchString": "react-native bundle visualizer explorer expo react devtools" }, { @@ -97285,12 +98651,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gallery-preview", "npm": { - "downloads": 1315, - "weekDownloads": 205, + "downloads": 1308, + "weekDownloads": 170, "size": 262989, "latestRelease": "1.3.4", "latestReleaseDate": "2025-07-11T16:34:42.533Z" @@ -97299,7 +98666,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.133, + "popularity": 0.111, "topicSearchString": "react-native ios android reanimated photo-viewer image-viewer photo-preview photo-gallery gallery gesture-handler image-preview gallery-preview" }, { @@ -97354,12 +98721,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-nacl-jsi", "npm": { - "downloads": 680, - "weekDownloads": 162, + "downloads": 771, + "weekDownloads": 111, "size": 14371257, "latestRelease": "0.8.0", "latestReleaseDate": "2024-07-02T06:43:44.254Z" @@ -97369,7 +98737,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.797, + "popularity": -0.877, "topicSearchString": "react-native ios android crypto libsodium sodium nacl" }, { @@ -97418,11 +98786,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 669320, - "weekDownloads": 123207, + "downloads": 632946, + "weekDownloads": 133246, "size": 1407484, "latestRelease": "2.21.3", "latestReleaseDate": "2025-09-11T12:43:49.928Z" @@ -97433,7 +98802,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.179, "topicSearchString": "segment react-native ios android" }, { @@ -97483,11 +98852,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 652344, - "weekDownloads": 120493, + "downloads": 620887, + "weekDownloads": 130997, "size": 79157, "latestRelease": "1.1.3", "latestReleaseDate": "2024-11-13T15:09:08.069Z" @@ -97498,7 +98868,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.179, "topicSearchString": "react-native ios android segment" }, { @@ -97565,11 +98935,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 332409, - "weekDownloads": 60379, + "downloads": 320222, + "weekDownloads": 59560, "size": 414108, "latestRelease": "17.0.1", "latestReleaseDate": "2025-10-09T20:10:21.241Z" @@ -97580,7 +98951,7 @@ "GPL license", "Recently updated" ], - "popularity": 0.154, + "popularity": 0.158, "topicSearchString": "braze appboy react native react-native ios android push in-app analytics segmentation feature-flags javascript sdk typescript marketing-automation customer-engagement in-app-messaging" }, { @@ -97609,7 +98980,7 @@ "forks": 46, "issues": 17, "subscribers": 3, - "stars": 1446, + "stars": 1447, "dependencies": 2 }, "name": "burnt", @@ -97632,12 +99003,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "burnt", "npm": { - "downloads": 181797, - "weekDownloads": 32125, + "downloads": 175836, + "weekDownloads": 32492, "size": 60059, "latestRelease": "0.13.0", "latestReleaseDate": "2025-03-10T16:09:39.968Z" @@ -97649,7 +99021,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.157, "topicSearchString": "react-native expo burnt" }, { @@ -97676,10 +99048,10 @@ "updatedAt": "2025-10-13T09:29:44Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-13T09:29:44Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-tracking-transparency", @@ -97702,12 +99074,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-tracking-transparency", "npm": { - "downloads": 503182, - "weekDownloads": 96573, + "downloads": 486476, + "weekDownloads": 91074, "size": 60143, "latestRelease": "6.0.7", "latestReleaseDate": "2025-09-11T20:23:04.256Z" @@ -97721,7 +99094,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.159, "topicSearchString": "react-native expo expo-tracking-transparency" }, { @@ -97743,10 +99116,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-insights", @@ -97772,12 +99145,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-insights", "npm": { - "downloads": 279126, - "weekDownloads": 51773, + "downloads": 269526, + "weekDownloads": 51194, "size": 44871, "latestRelease": "0.10.7", "latestReleaseDate": "2025-09-11T20:24:42.393Z" @@ -97790,7 +99164,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.161, "topicSearchString": "react-native expo expo-insights expoinsights insights eas" }, { @@ -97818,10 +99192,10 @@ "updatedAt": "2025-10-16T13:53:14Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-16T13:53:14Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-clipboard", @@ -97844,12 +99218,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-clipboard", "npm": { - "downloads": 2025240, - "weekDownloads": 394111, + "downloads": 1955265, + "weekDownloads": 387314, "size": 279445, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-11T20:25:54.068Z" @@ -97863,7 +99238,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.168, "topicSearchString": "react-native expo expo-clipboard" }, { @@ -97885,10 +99260,10 @@ "updatedAt": "2025-10-09T00:03:40Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-09T00:03:40Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 3 }, "name": "expo-navigation-bar", @@ -97912,12 +99287,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-navigation-bar", "npm": { - "downloads": 612534, - "weekDownloads": 125181, + "downloads": 580566, + "weekDownloads": 113996, "size": 180505, "latestRelease": "5.0.8", "latestReleaseDate": "2025-09-10T18:40:55.062Z" @@ -97931,7 +99307,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.167, "topicSearchString": "react-native expo expo-navigation-bar android" }, { @@ -97957,10 +99333,10 @@ "updatedAt": "2025-10-02T09:33:29Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-02T09:33:29Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-symbols", @@ -97986,12 +99362,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-symbols", "npm": { - "downloads": 1693935, - "weekDownloads": 332603, + "downloads": 1655548, + "weekDownloads": 323359, "size": 43906, "latestRelease": "1.0.7", "latestReleaseDate": "2025-09-11T20:23:12.274Z" @@ -98005,7 +99382,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.166, "topicSearchString": "react-native expo expo-symbols symbols sfsymbols ios" }, { @@ -98056,11 +99433,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-native-language", "npm": { - "downloads": 45, + "downloads": 107, "weekDownloads": 2, "size": 22105, "latestRelease": "1.1.1", @@ -98071,7 +99449,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.96, + "popularity": -0.984, "topicSearchString": "react-native ios android" }, { @@ -98098,7 +99476,7 @@ "createdAt": "2021-05-05T16:18:35Z", "pushedAt": "2025-09-24T22:43:35Z", "forks": 64, - "issues": 90, + "issues": 91, "subscribers": 10, "stars": 685, "dependencies": 0 @@ -98123,12 +99501,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rive-react-native", "npm": { - "downloads": 395173, - "weekDownloads": 82165, + "downloads": 374480, + "weekDownloads": 85266, "size": 411245, "latestRelease": "9.6.1", "latestReleaseDate": "2025-09-21T03:08:52.411Z" @@ -98141,7 +99520,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.194, "topicSearchString": "react-native ios android" }, { @@ -98191,12 +99570,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-wear", "npm": { - "downloads": 49, - "weekDownloads": 0, + "downloads": 76, + "weekDownloads": 2, "size": 53738, "latestRelease": "1.1.0", "latestReleaseDate": "2024-03-06T17:42:30.363Z" @@ -98206,7 +99586,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -0.976, "topicSearchString": "react-native ios android" }, { @@ -98257,11 +99637,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 2229, - "weekDownloads": 423, + "downloads": 2228, + "weekDownloads": 528, "size": 20892, "latestRelease": "0.1.2", "latestReleaseDate": "2024-06-04T20:45:47.126Z" @@ -98271,7 +99652,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.089, + "popularity": -0.048, "topicSearchString": "react-native ios android" }, { @@ -98322,12 +99703,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-mapa", "npm": { - "downloads": 12, - "weekDownloads": 4, + "downloads": 66, + "weekDownloads": 7, "size": 16447152, "latestRelease": "1.1.0", "latestReleaseDate": "2024-11-26T16:50:43.207Z" @@ -98337,7 +99719,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.6, + "popularity": -0.907, "topicSearchString": "react react-native map mapview mapbox-maps" }, { @@ -98361,14 +99743,14 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-15T14:14:03Z", + "updatedAt": "2025-10-17T16:08:56Z", "createdAt": "2020-09-28T17:25:29Z", - "pushedAt": "2025-10-15T14:14:03Z", + "pushedAt": "2025-10-17T16:08:56Z", "forks": 18, - "issues": 4, + "issues": 3, "subscribers": 5, "stars": 154, - "dependencies": 0 + "dependencies": 1 }, "name": "react-native-adapty", "fullName": "adaptyteam/AdaptySDK-React-Native", @@ -98398,21 +99780,22 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 25572, - "weekDownloads": 4809, - "size": 784438, - "latestRelease": "3.11.2", - "latestReleaseDate": "2025-10-15T15:53:44.657Z" + "downloads": 25539, + "weekDownloads": 5151, + "size": 784452, + "latestRelease": "3.11.3", + "latestReleaseDate": "2025-10-17T16:15:17.316Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.171, "topicSearchString": "react-native adapty purchases in-apps subscriptions in-app-purchase subscription iap iap-verification in-app-receipt receipt-validation storekit" }, { @@ -98464,12 +99847,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "healthicons-react-native", "npm": { - "downloads": 4783, - "weekDownloads": 543, + "downloads": 4777, + "weekDownloads": 644, "size": 13613209, "latestRelease": "3.5.0", "latestReleaseDate": "2025-07-09T19:47:08.686Z" @@ -98478,7 +99862,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.153, + "popularity": -0.135, "topicSearchString": "react react-native icons svg health healthicons" }, { @@ -98496,9 +99880,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-26T17:59:02Z", + "updatedAt": "2025-10-16T22:30:04Z", "createdAt": "2020-03-02T01:05:57Z", - "pushedAt": "2025-09-26T17:59:02Z", + "pushedAt": "2025-10-16T22:30:04Z", "forks": 23, "issues": 1, "subscribers": 5, @@ -98532,15 +99916,16 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-iaphub", "npm": { - "downloads": 3025, - "weekDownloads": 682, - "size": 175062, - "latestRelease": "9.1.0", - "latestReleaseDate": "2025-09-26T18:01:45.068Z" + "downloads": 3181, + "weekDownloads": 620, + "size": 177142, + "latestRelease": "9.1.1", + "latestReleaseDate": "2025-10-16T22:32:37.027Z" }, "score": 57, "matchingScoreModifiers": [ @@ -98548,7 +99933,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.192, + "popularity": 0.166, "topicSearchString": "react-native ios android in-app-purchase in-app-billing in-app-receipt google-play itunes iap" }, { @@ -98612,12 +99997,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "clevertap-react-native", "npm": { - "downloads": 90906, - "weekDownloads": 18414, + "downloads": 84608, + "weekDownloads": 16492, "size": 3825822, "latestRelease": "3.7.0", "latestReleaseDate": "2025-10-03T08:59:31.881Z" @@ -98627,7 +100013,7 @@ "Known", "Recently updated" ], - "popularity": 0.172, + "popularity": 0.166, "topicSearchString": "analytics android clevertap in-app ios notification push react react-native segmentation clevertap-react-native javascript typescript npm engagement user-retention" }, { @@ -98687,12 +100073,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-netwatch", "npm": { - "downloads": 3429, - "weekDownloads": 863, + "downloads": 3710, + "weekDownloads": 615, "size": 814335, "latestRelease": "1.3.16", "latestReleaseDate": "2024-01-24T10:57:08.004Z" @@ -98702,7 +100089,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.036, + "popularity": -0.109, "topicSearchString": "react-native mobile ios android logging network traffic tracking debug redux-action debugger redux charles-proxy" }, { @@ -98729,7 +100116,7 @@ "forks": 183, "issues": 126, "subscribers": 27, - "stars": 4239, + "stars": 4242, "dependencies": 0 }, "name": "iconoir-react-native", @@ -98752,12 +100139,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "iconoir-react-native", "npm": { - "downloads": 16470, - "weekDownloads": 2913, + "downloads": 15573, + "weekDownloads": 2685, "size": 6398824, "latestRelease": "7.11.0", "latestReleaseDate": "2025-04-12T16:34:57.575Z" @@ -98769,7 +100157,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.147, "topicSearchString": "icons svg library react-native" }, { @@ -98792,10 +100180,10 @@ "updatedAt": "2025-09-19T08:08:00Z", "createdAt": "2020-06-08T15:36:21Z", "pushedAt": "2025-09-19T08:08:00Z", - "forks": 1008, + "forks": 1010, "issues": 229, "subscribers": 52, - "stars": 19340, + "stars": 19375, "dependencies": 0 }, "name": "lucide-react-native", @@ -98823,26 +100211,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "lucide-react-native", "npm": { - "downloads": 1077029, - "weekDownloads": 196325, + "downloads": 1069467, + "weekDownloads": 196019, "size": 18905984, "latestRelease": "0.546.0", "latestReleaseDate": "2025-10-16T11:57:16.478Z" }, - "score": 86, + "score": 81, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.156, "topicSearchString": "lucide react-native feather icons icon svg feather-icons fontawesome font-awesome" }, { @@ -98873,7 +100261,7 @@ "forks": 9, "issues": 1, "subscribers": 1, - "stars": 212, + "stars": 213, "dependencies": 0 }, "name": "react-native-loader-kit", @@ -98903,21 +100291,23 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-loader-kit", "npm": { - "downloads": 10444, - "weekDownloads": 2054, + "downloads": 9950, + "weekDownloads": 2143, "size": 32438, "latestRelease": "3.0.0", "latestReleaseDate": "2025-06-28T14:38:06.574Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ + "Known", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.183, "topicSearchString": "react-native ios android indicator loader loading loader-kit loading-animations loading-indicator" }, { @@ -98969,12 +100359,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-file-logger", "npm": { - "downloads": 47122, - "weekDownloads": 10586, + "downloads": 43164, + "weekDownloads": 8741, "size": 597990, "latestRelease": "0.7.1", "latestReleaseDate": "2025-08-20T10:47:39.116Z" @@ -98984,7 +100375,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.191, + "popularity": 0.172, "topicSearchString": "react-native logging file-logger cocoalumberjack logback" }, { @@ -99033,11 +100424,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 35896, - "weekDownloads": 6767, + "downloads": 34860, + "weekDownloads": 6900, "size": 227263, "latestRelease": "2.17.1", "latestReleaseDate": "2025-08-07T14:48:31.542Z" @@ -99047,7 +100439,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.168, "topicSearchString": "react react-native authentication okta oidc" }, { @@ -99101,12 +100493,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-vision-camera-text-recognition", "npm": { - "downloads": 7451, - "weekDownloads": 1182, + "downloads": 7487, + "weekDownloads": 1317, "size": 86057, "latestRelease": "3.1.1", "latestReleaseDate": "2024-08-12T11:50:37.405Z" @@ -99116,7 +100509,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.135, + "popularity": 0.15, "topicSearchString": "react-native ios android camera mlkit ml-kit vision-camera text-recognition text" }, { @@ -99164,12 +100557,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-vision-camera-image-labeler", "npm": { - "downloads": 1195, - "weekDownloads": 177, + "downloads": 1268, + "weekDownloads": 118, "size": 46299, "latestRelease": "2.2.0", "latestReleaseDate": "2024-08-09T13:25:45.823Z" @@ -99179,7 +100573,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.124, + "popularity": -0.171, "topicSearchString": "react-native ios android" }, { @@ -99207,7 +100601,7 @@ "forks": 38, "issues": 30, "subscribers": 13, - "stars": 1214, + "stars": 1215, "dependencies": 0 }, "name": "react-native-filament", @@ -99242,11 +100636,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 13641, - "weekDownloads": 2948, + "downloads": 14211, + "weekDownloads": 2303, "size": 487922051, "latestRelease": "1.8.0", "latestReleaseDate": "2025-07-01T16:48:46.412Z" @@ -99258,7 +100653,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.184, + "popularity": 0.138, "topicSearchString": "react-native filament 3d rendering engine gltf model threejs ios android physics opengl metal vulkan" }, { @@ -99280,7 +100675,7 @@ "updatedAt": "2025-09-19T12:36:39Z", "createdAt": "2022-06-01T09:04:30Z", "pushedAt": "2025-09-19T12:36:39Z", - "forks": 2, + "forks": 3, "issues": 0, "subscribers": 3, "stars": 10, @@ -99308,21 +100703,21 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 9630, - "weekDownloads": 1906, + "downloads": 8983, + "weekDownloads": 1565, "size": 423444, "latestRelease": "11.0.0", "latestReleaseDate": "2025-09-19T12:42:50.905Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.082, + "popularity": -0.102, "topicSearchString": "react-native batch push notifications sdk" }, { @@ -99350,10 +100745,10 @@ "updatedAt": "2025-10-16T16:58:57Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-16T16:58:57Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 11 }, "name": "@expo/fingerprint", @@ -99378,11 +100773,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 7326584, - "weekDownloads": 1415482, + "downloads": 7103905, + "weekDownloads": 1392791, "size": 226929, "latestRelease": "0.15.1", "latestReleaseDate": "2025-09-16T20:36:09.417Z" @@ -99396,7 +100792,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.167, "topicSearchString": "expo react-native fingerprint hash node" }, { @@ -99419,13 +100815,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T11:11:14Z", + "updatedAt": "2025-10-19T08:00:12Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-10-16T11:11:14Z", - "forks": 9188, - "issues": 379, + "pushedAt": "2025-10-19T08:00:12Z", + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 21 }, "name": "expo", @@ -99446,12 +100842,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo", "npm": { - "downloads": 8016635, - "weekDownloads": 1516001, + "downloads": 7816091, + "weekDownloads": 1527462, "size": 871341, "latestRelease": "54.0.13", "latestReleaseDate": "2025-10-09T19:33:47.791Z" @@ -99465,7 +100862,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.166, "topicSearchString": "expo" }, { @@ -99489,13 +100886,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-11T09:19:07Z", + "updatedAt": "2025-10-12T04:38:11Z", "createdAt": "2021-12-31T01:06:00Z", - "pushedAt": "2025-10-11T09:19:07Z", - "forks": 115, + "pushedAt": "2025-10-12T04:38:11Z", + "forks": 114, "issues": 47, "subscribers": 38, - "stars": 4734, + "stars": 4749, "dependencies": 0 }, "name": "tinybase", @@ -99523,12 +100920,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "tinybase", "npm": { - "downloads": 101428, - "weekDownloads": 30716, + "downloads": 82516, + "weekDownloads": 20274, "size": 8200547, "latestRelease": "6.7.1", "latestReleaseDate": "2025-10-11T02:45:44.398Z" @@ -99541,7 +100939,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.507, + "popularity": 0.209, "topicSearchString": "tiny sync-engine local-first reactive state data react javascript typescript" }, { @@ -99567,10 +100965,10 @@ "updatedAt": "2025-10-16T12:44:50Z", "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-16T12:44:50Z", - "forks": 4930, - "issues": 850, + "forks": 4929, + "issues": 851, "subscribers": 308, - "stars": 24210, + "stars": 24216, "dependencies": 2 }, "name": "@react-navigation/bottom-tabs", @@ -99596,11 +100994,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 6791955, - "weekDownloads": 1278978, + "downloads": 6520618, + "weekDownloads": 1257026, "size": 193693, "latestRelease": "7.4.9", "latestReleaseDate": "2025-10-13T12:21:03.685Z" @@ -99614,7 +101013,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.164, "topicSearchString": "component react-component react-native react-navigation ios android tab" }, { @@ -99639,10 +101038,10 @@ "updatedAt": "2025-10-13T15:01:58Z", "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-13T15:01:58Z", - "forks": 4930, - "issues": 850, + "forks": 4929, + "issues": 851, "subscribers": 308, - "stars": 24210, + "stars": 24216, "dependencies": 3 }, "name": "@react-navigation/material-top-tabs", @@ -99669,11 +101068,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1095553, - "weekDownloads": 212240, + "downloads": 1030815, + "weekDownloads": 201894, "size": 62732, "latestRelease": "7.3.8", "latestReleaseDate": "2025-10-04T21:47:56.081Z" @@ -99687,7 +101087,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.166, "topicSearchString": "component react-component react-native react-navigation ios android material tab" }, { @@ -99712,10 +101112,10 @@ "updatedAt": "2025-10-16T12:44:50Z", "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-16T12:44:50Z", - "forks": 4930, - "issues": 850, + "forks": 4929, + "issues": 851, "subscribers": 308, - "stars": 24210, + "stars": 24216, "dependencies": 4 }, "name": "@react-navigation/drawer", @@ -99742,11 +101142,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1528782, - "weekDownloads": 283566, + "downloads": 1495948, + "weekDownloads": 278140, "size": 125270, "latestRelease": "7.5.10", "latestReleaseDate": "2025-10-13T12:21:03.405Z" @@ -99786,10 +101187,10 @@ "updatedAt": "2025-10-13T15:01:58Z", "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-13T15:01:58Z", - "forks": 4930, - "issues": 850, + "forks": 4929, + "issues": 851, "subscribers": 308, - "stars": 24210, + "stars": 24216, "dependencies": 2 }, "name": "@react-navigation/native-stack", @@ -99816,11 +101217,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 6460262, - "weekDownloads": 1209448, + "downloads": 6335067, + "weekDownloads": 1187706, "size": 198048, "latestRelease": "7.3.28", "latestReleaseDate": "2025-10-13T12:21:03.499Z" @@ -99860,10 +101262,10 @@ "updatedAt": "2025-10-16T12:44:50Z", "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-16T12:44:50Z", - "forks": 4930, - "issues": 850, + "forks": 4929, + "issues": 851, "subscribers": 308, - "stars": 24210, + "stars": 24216, "dependencies": 3 }, "name": "@react-navigation/stack", @@ -99889,11 +101291,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3174630, - "weekDownloads": 617841, + "downloads": 3059203, + "weekDownloads": 606863, "size": 456330, "latestRelease": "7.4.10", "latestReleaseDate": "2025-10-13T12:21:04.377Z" @@ -99907,7 +101310,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.169, "topicSearchString": "component react-component react-native react-navigation ios android stack" }, { @@ -99933,10 +101336,10 @@ "updatedAt": "2025-10-16T12:44:50Z", "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-16T12:44:50Z", - "forks": 4930, - "issues": 850, + "forks": 4929, + "issues": 851, "subscribers": 308, - "stars": 24210, + "stars": 24216, "dependencies": 3 }, "name": "@react-navigation/elements", @@ -99959,11 +101362,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8535059, - "weekDownloads": 1610801, + "downloads": 8301321, + "weekDownloads": 1582773, "size": 260060, "latestRelease": "2.6.5", "latestReleaseDate": "2025-10-04T21:47:54.157Z" @@ -99977,7 +101381,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.162, "topicSearchString": "react-native react-navigation ios android" }, { @@ -100002,10 +101406,10 @@ "updatedAt": "2025-10-13T15:01:58Z", "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-13T15:01:58Z", - "forks": 4930, - "issues": 850, + "forks": 4929, + "issues": 851, "subscribers": 308, - "stars": 24210, + "stars": 24216, "dependencies": 1 }, "name": "react-native-drawer-layout", @@ -100031,12 +101435,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-drawer-layout", "npm": { - "downloads": 1103938, - "weekDownloads": 208138, + "downloads": 1060994, + "weekDownloads": 206946, "size": 102615, "latestRelease": "4.1.13", "latestReleaseDate": "2025-08-31T10:40:50.227Z" @@ -100050,7 +101455,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.166, "topicSearchString": "component react-component react-native ios android drawer swipe" }, { @@ -100077,10 +101482,10 @@ "updatedAt": "2025-10-13T15:01:58Z", "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-13T15:01:58Z", - "forks": 4930, - "issues": 850, + "forks": 4929, + "issues": 851, "subscribers": 308, - "stars": 24210, + "stars": 24216, "dependencies": 1 }, "name": "@react-navigation/routers", @@ -100102,11 +101507,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8176705, - "weekDownloads": 1554146, + "downloads": 7950796, + "weekDownloads": 1542286, "size": 164585, "latestRelease": "7.5.1", "latestReleaseDate": "2025-07-26T10:09:34.288Z" @@ -100120,7 +101526,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.165, "topicSearchString": "react react-native react-navigation" }, { @@ -100148,10 +101554,10 @@ "updatedAt": "2025-10-13T15:01:58Z", "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-13T15:01:58Z", - "forks": 4930, - "issues": 850, + "forks": 4929, + "issues": 851, "subscribers": 308, - "stars": 24210, + "stars": 24216, "dependencies": 3 }, "name": "@react-navigation/devtools", @@ -100173,11 +101579,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 627448, - "weekDownloads": 131157, + "downloads": 590737, + "weekDownloads": 116586, "size": 48263, "latestRelease": "7.0.38", "latestReleaseDate": "2025-08-12T02:11:33.821Z" @@ -100191,7 +101598,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.168, "topicSearchString": "react react-native react-navigation" }, { @@ -100213,13 +101620,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-16T18:11:10Z", + "updatedAt": "2025-10-17T16:37:54Z", "createdAt": "2020-05-15T12:52:16Z", - "pushedAt": "2025-10-16T18:11:10Z", - "forks": 485, + "pushedAt": "2025-10-17T16:37:54Z", + "forks": 488, "issues": 292, "subscribers": 63, - "stars": 4004, + "stars": 4006, "dependencies": 6 }, "name": "@supabase/supabase-js", @@ -100241,14 +101648,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 16953049, - "weekDownloads": 3043118, - "size": 352025, - "latestRelease": "2.75.0", - "latestReleaseDate": "2025-10-09T12:48:05.004Z" + "downloads": 17012582, + "weekDownloads": 2896156, + "size": 352277, + "latestRelease": "2.75.1", + "latestReleaseDate": "2025-10-17T12:29:04.113Z" }, "score": 86, "matchingScoreModifiers": [ @@ -100259,7 +101667,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.145, "topicSearchString": "javascript typescript supabase" }, { @@ -100289,7 +101697,7 @@ "forks": 26, "issues": 15, "subscribers": 3, - "stars": 201, + "stars": 203, "dependencies": 1 }, "name": "toastify-react-native", @@ -100331,12 +101739,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "toastify-react-native", "npm": { - "downloads": 2228098, - "weekDownloads": 732798, + "downloads": 1697336, + "weekDownloads": 421314, "size": 551906, "latestRelease": "7.2.3", "latestReleaseDate": "2025-07-20T15:48:17.258Z" @@ -100347,7 +101756,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.53, + "popularity": 0.211, "topicSearchString": "react react-component pushalert toast popup toastify react-native react-toastify notification toastify-react-native picker expo cli mobile ios android web typescript alert animation expo-cli javascript notifications" }, { @@ -100400,11 +101809,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-float-box", "npm": { - "downloads": 5, + "downloads": 18, "weekDownloads": 0, "size": 48615, "latestRelease": "0.2.3", @@ -100443,7 +101853,7 @@ "forks": 13, "issues": 3, "subscribers": 3, - "stars": 560, + "stars": 561, "dependencies": 0 }, "name": "react-native-magic-modal", @@ -100467,11 +101877,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 9069, - "weekDownloads": 1876, + "downloads": 8456, + "weekDownloads": 2290, "size": 65962, "latestRelease": "6.1.0", "latestReleaseDate": "2025-06-11T20:01:02.824Z" @@ -100481,7 +101892,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.23, "topicSearchString": "react-native ios android modal" }, { @@ -100509,7 +101920,7 @@ "forks": 17, "issues": 12, "subscribers": 4, - "stars": 547, + "stars": 549, "dependencies": 3 }, "name": "expo-quick-actions", @@ -100537,12 +101948,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-quick-actions", "npm": { - "downloads": 68181, - "weekDownloads": 12901, + "downloads": 63961, + "weekDownloads": 12830, "size": 121233, "latestRelease": "6.0.0", "latestReleaseDate": "2025-09-15T18:14:00.092Z" @@ -100552,7 +101964,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.171, "topicSearchString": "react-native expo expo-quick-actions expoquickactions app-icon dynamic-app-icon kotlin swift" }, { @@ -100606,12 +102018,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": true }, "npmPkg": "app-icon-badge", "npm": { - "downloads": 43404, - "weekDownloads": 8038, + "downloads": 42339, + "weekDownloads": 7308, "size": 660430, "latestRelease": "0.1.2", "latestReleaseDate": "2024-11-13T16:36:23.410Z" @@ -100622,7 +102035,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.147, "topicSearchString": "android app-icon badge-generator expo ios react-native expo-plugin" }, { @@ -100652,7 +102065,7 @@ "forks": 32, "issues": 25, "subscribers": 6, - "stars": 503, + "stars": 506, "dependencies": 3 }, "name": "expo-share-intent", @@ -100682,12 +102095,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-share-intent", "npm": { - "downloads": 49368, - "weekDownloads": 8156, + "downloads": 47891, + "weekDownloads": 8671, "size": 175784, "latestRelease": "5.0.1", "latestReleaseDate": "2025-09-16T09:56:08.369Z" @@ -100697,7 +102111,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.14, + "popularity": 0.154, "topicSearchString": "react-native expo expo-share-extension share-extension share-intent expo-config-plugin share-share-intent android ios" }, { @@ -100745,13 +102159,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-store-version", "npm": { - "downloads": 30711, - "weekDownloads": 5608, + "downloads": 29505, + "weekDownloads": 5579, "size": 20005, "latestRelease": "1.4.1", "latestReleaseDate": "2023-03-11T03:11:16.451Z" @@ -100761,7 +102176,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, + "popularity": -0.589, "topicSearchString": "react-native expo appstore playstore version" }, { @@ -100820,12 +102235,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-country-codes-picker", "npm": { - "downloads": 119772, - "weekDownloads": 22957, + "downloads": 115250, + "weekDownloads": 21966, "size": 273454, "latestRelease": "2.3.5", "latestReleaseDate": "2024-01-12T12:40:41.027Z" @@ -100836,7 +102252,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.162, "topicSearchString": "react-native react native country picker codes search animated multilanguage expo ios android country-codes" }, { @@ -100893,11 +102309,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 13427, - "weekDownloads": 2599, + "downloads": 12401, + "weekDownloads": 2718, "size": 46604, "latestRelease": "2.1.0", "latestReleaseDate": "2025-02-28T17:09:26.366Z" @@ -100908,7 +102325,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.186, "topicSearchString": "react-native ios android typescript google-autocomplete reactjs expo google-places-api google-places-autocomplete" }, { @@ -100941,7 +102358,7 @@ "forks": 25, "issues": 14, "subscribers": 6, - "stars": 183, + "stars": 184, "dependencies": 1 }, "name": "@mattermost/react-native-paste-input", @@ -100966,11 +102383,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 5278, - "weekDownloads": 1053, + "downloads": 5236, + "weekDownloads": 1286, "size": 288617, "latestRelease": "0.8.1", "latestReleaseDate": "2024-12-17T02:17:51.074Z" @@ -100980,7 +102398,7 @@ "Known", "Not updated recently" ], - "popularity": 0.17, + "popularity": 0.209, "topicSearchString": "react-native ios android paste text-input" }, { @@ -101037,11 +102455,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 354, - "weekDownloads": 85, + "downloads": 340, + "weekDownloads": 65, "size": 142036, "latestRelease": "0.1.36", "latestReleaseDate": "2025-04-29T13:36:32.326Z" @@ -101050,7 +102469,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.545, + "popularity": -0.588, "topicSearchString": "react-native ios android expo keyboard scrollview ui" }, { @@ -101102,12 +102521,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 20, - "weekDownloads": 1, + "downloads": 23, + "weekDownloads": 0, "size": 116990, "latestRelease": "0.2.2", "latestReleaseDate": "2023-06-07T16:18:10.018Z" @@ -101117,7 +102537,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.7, + "popularity": -1, "topicSearchString": "react-native ios android" }, { @@ -101175,12 +102595,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-wear-connectivity", "npm": { - "downloads": 634, - "weekDownloads": 131, + "downloads": 573, + "weekDownloads": 97, "size": 76116, "latestRelease": "0.1.15", "latestReleaseDate": "2025-08-22T13:11:23.528Z" @@ -101189,7 +102610,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.574, + "popularity": -0.605, "topicSearchString": "react-native ios android wear-os wearable wear-api wearable-devices wearos renative renative-wear" }, { @@ -101239,12 +102660,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-multipurpose-calendar", "npm": { - "downloads": 41, - "weekDownloads": 4, + "downloads": 561, + "weekDownloads": 3, "size": 9246336, "latestRelease": "2.1.3", "latestReleaseDate": "2024-08-05T18:32:06.028Z" @@ -101254,7 +102676,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.911, + "popularity": -0.995, "topicSearchString": "react-native android ios persian-calendar calendar" }, { @@ -101313,10 +102735,11 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 29, + "downloads": 45, "weekDownloads": 1, "size": 45158, "latestRelease": "0.0.8", @@ -101327,7 +102750,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.717, + "popularity": -0.73, "topicSearchString": "components ui cli react-native expo malla mallaui malla-ui" }, { @@ -101354,7 +102777,7 @@ "createdAt": "2019-11-15T21:38:13Z", "pushedAt": "2025-10-16T10:49:06Z", "forks": 108, - "issues": 45, + "issues": 46, "subscribers": 16, "stars": 1669, "dependencies": 0 @@ -101374,11 +102797,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 295904, - "weekDownloads": 48664, + "downloads": 290494, + "weekDownloads": 48956, "size": 1053372, "latestRelease": "3.2.4", "latestReleaseDate": "2025-10-07T08:04:29.014Z" @@ -101390,7 +102814,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.14, + "popularity": 0.143, "topicSearchString": "" }, { @@ -101444,20 +102868,22 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 1436, - "weekDownloads": 348, + "downloads": 1263, + "weekDownloads": 367, "size": 1185449, "latestRelease": "0.5.0", "latestReleaseDate": "2025-04-22T08:41:10.217Z" }, - "score": 43, + "score": 32, "matchingScoreModifiers": [ + "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.043, + "popularity": -0.003, "topicSearchString": "react-native expo expo-spotify-sdk expospotifysdk spotify" }, { @@ -101509,11 +102935,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 276, - "weekDownloads": 56, + "downloads": 305, + "weekDownloads": 24, "size": 30682, "latestRelease": "0.3.0", "latestReleaseDate": "2024-06-27T09:15:09.845Z" @@ -101523,7 +102950,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.825, + "popularity": -0.932, "topicSearchString": "react-native expo expo-android-shared-preferences expoandroidsharedpreferences" }, { @@ -101575,11 +103002,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 251, - "weekDownloads": 55, + "downloads": 254, + "weekDownloads": 32, "size": 30151, "latestRelease": "0.1.1", "latestReleaseDate": "2024-08-12T08:24:44.616Z" @@ -101589,7 +103017,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.814, + "popularity": -0.892, "topicSearchString": "react-native expo expo-android-account-manager expoandroidaccountmanager" }, { @@ -101641,11 +103069,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-here-explore", "npm": { - "downloads": 37, + "downloads": 44, "weekDownloads": 5, "size": 200742, "latestRelease": "2.2.0", @@ -101656,7 +103085,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.625, + "popularity": -0.65, "topicSearchString": "react-native ios android heremaps" }, { @@ -101716,11 +103145,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 947, - "weekDownloads": 114, + "downloads": 1020, + "weekDownloads": 86, "size": 127663, "latestRelease": "1.17.0", "latestReleaseDate": "2025-10-12T14:30:19.747Z" @@ -101729,7 +103159,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.647, + "popularity": 0.072, "topicSearchString": "audio microphone input recording playback sample player react-native ios android" }, { @@ -101756,7 +103186,7 @@ "updatedAt": "2025-10-12T13:45:17Z", "createdAt": "2023-05-23T11:08:00Z", "pushedAt": "2025-10-12T13:45:17Z", - "forks": 31, + "forks": 32, "issues": 26, "subscribers": 5, "stars": 279, @@ -101790,11 +103220,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 59571, - "weekDownloads": 12122, + "downloads": 55569, + "weekDownloads": 11026, "size": 420121, "latestRelease": "2.36.0", "latestReleaseDate": "2025-10-12T13:49:18.365Z" @@ -101804,7 +103235,7 @@ "Known", "Recently updated" ], - "popularity": 0.173, + "popularity": 0.169, "topicSearchString": "react-native ios android fs filesystem download upload file-transfer react rnfs" }, { @@ -101869,11 +103300,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 6702, - "weekDownloads": 996, + "downloads": 6695, + "weekDownloads": 1172, "size": 26859665, "latestRelease": "0.25.0", "latestReleaseDate": "2025-10-12T14:12:55.563Z" @@ -101883,7 +103315,7 @@ "Known", "Recently updated" ], - "popularity": 0.126, + "popularity": 0.149, "topicSearchString": "react-native ios android lighttpd windows embed server http https react file java javascript js mobile native objective-c" }, { @@ -101928,12 +103360,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-android-finish", "npm": { - "downloads": 65, - "weekDownloads": 22, + "downloads": 62, + "weekDownloads": 3, "size": 34946, "latestRelease": "1.2.6", "latestReleaseDate": "2025-07-22T04:25:50.355Z" @@ -101942,7 +103375,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.707, + "popularity": -0.957, "topicSearchString": "" }, { @@ -101968,13 +103401,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-14T18:59:35Z", + "updatedAt": "2025-10-17T17:12:49Z", "createdAt": "2024-06-17T16:44:42Z", - "pushedAt": "2025-10-14T18:59:35Z", + "pushedAt": "2025-10-17T17:12:49Z", "forks": 36, "issues": 20, "subscribers": 18, - "stars": 808, + "stars": 809, "dependencies": 0 }, "name": "react-native-wgpu", @@ -101998,21 +103431,22 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 1567, - "weekDownloads": 411, - "size": 382023631, - "latestRelease": "0.2.9", - "latestReleaseDate": "2025-10-14T18:59:44.496Z" + "downloads": 1696, + "weekDownloads": 346, + "size": 382023644, + "latestRelease": "0.2.10", + "latestReleaseDate": "2025-10-17T17:21:34.513Z" }, "score": 59, "matchingScoreModifiers": [ "Known", "Recently updated" ], - "popularity": 0.223, + "popularity": 0.173, "topicSearchString": "react-native ios android" }, { @@ -102038,13 +103472,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-12T12:59:26Z", + "updatedAt": "2025-10-18T12:56:34Z", "createdAt": "2019-04-09T09:10:06Z", - "pushedAt": "2025-10-12T12:59:26Z", - "forks": 1813, + "pushedAt": "2025-10-18T12:56:34Z", + "forks": 1816, "issues": 2, "subscribers": 177, - "stars": 55185, + "stars": 55228, "dependencies": 0 }, "name": "zustand", @@ -102074,12 +103508,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "zustand", "npm": { - "downloads": 50391529, - "weekDownloads": 9278671, + "downloads": 49155160, + "weekDownloads": 9125751, "size": 92449, "latestRelease": "5.0.8", "latestReleaseDate": "2025-08-19T23:19:16.970Z" @@ -102092,7 +103527,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.158, "topicSearchString": "react state manager management redux store hooks react-context reactjs state-management hacktoberfest" }, { @@ -102120,7 +103555,7 @@ "forks": 90, "issues": 24, "subscribers": 5, - "stars": 278, + "stars": 279, "dependencies": 0 }, "name": "react-native-otp-verify", @@ -102144,12 +103579,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-otp-verify", "npm": { - "downloads": 88991, - "weekDownloads": 17283, + "downloads": 85379, + "weekDownloads": 16878, "size": 401957, "latestRelease": "1.1.8", "latestReleaseDate": "2024-02-16T14:20:06.182Z" @@ -102160,7 +103596,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.168, "topicSearchString": "react-native ios android sms-verification" }, { @@ -102227,12 +103663,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-material-ui-textfield", "npm": { - "downloads": 15572, - "weekDownloads": 2350, + "downloads": 15341, + "weekDownloads": 2638, "size": 860227, "latestRelease": "1.0.9", "latestReleaseDate": "2022-11-03T18:55:54.464Z" @@ -102241,7 +103678,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.128, + "popularity": 0.146, "topicSearchString": "react react-component react-native ios android material material-ui input textinput field textfield floating label collaborate student-vscode" }, { @@ -102270,10 +103707,10 @@ "updatedAt": "2025-10-16T15:09:02Z", "createdAt": "2019-09-10T19:23:58Z", "pushedAt": "2025-10-16T15:09:02Z", - "forks": 3477, - "issues": 64, + "forks": 3486, + "issues": 66, "subscribers": 214, - "stars": 47003, + "stars": 47040, "dependencies": 1 }, "name": "@tanstack/react-query", @@ -102291,11 +103728,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 51429210, - "weekDownloads": 10697626, + "downloads": 49202109, + "weekDownloads": 10003325, "size": 732734, "latestRelease": "5.90.5", "latestReleaseDate": "2025-10-16T15:15:34.964Z" @@ -102308,7 +103746,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.173, "topicSearchString": "" }, { @@ -102333,8 +103771,8 @@ "updatedAt": "2025-09-02T06:52:10Z", "createdAt": "2016-08-02T09:34:28Z", "pushedAt": "2025-09-02T06:52:10Z", - "forks": 99, - "issues": 54, + "forks": 100, + "issues": 55, "subscribers": 188, "stars": 131, "dependencies": 0 @@ -102358,12 +103796,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-razorpay", "npm": { - "downloads": 33899, - "weekDownloads": 6501, + "downloads": 34093, + "weekDownloads": 6715, "size": 515007, "latestRelease": "2.3.0", "latestReleaseDate": "2022-11-09T08:52:09.054Z" @@ -102374,7 +103813,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.167, "topicSearchString": "react-native razorpay payments" }, { @@ -102425,11 +103864,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 257, - "weekDownloads": 15, + "downloads": 250, + "weekDownloads": 9, "size": 220555, "latestRelease": "3.1.2", "latestReleaseDate": "2025-05-15T14:10:51.992Z" @@ -102439,7 +103879,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.95, + "popularity": -0.969, "topicSearchString": "react-native ios android" }, { @@ -102461,9 +103901,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-11T07:33:41Z", + "updatedAt": "2025-10-17T12:24:24Z", "createdAt": "2024-03-19T07:03:44Z", - "pushedAt": "2025-09-11T07:33:41Z", + "pushedAt": "2025-10-17T12:24:24Z", "forks": 10, "issues": 0, "subscribers": 3, @@ -102487,20 +103927,22 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 55487, - "weekDownloads": 11349, - "size": 262349, - "latestRelease": "12.2.0", - "latestReleaseDate": "2025-09-11T07:33:15.610Z" + "downloads": 52582, + "weekDownloads": 10665, + "size": 262495, + "latestRelease": "12.3.0", + "latestReleaseDate": "2025-10-17T12:23:58.156Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.076, + "popularity": -0.078, "topicSearchString": "moengage push-notification react-native ios android device events" }, { @@ -102555,11 +103997,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 534702, - "weekDownloads": 108886, + "downloads": 503685, + "weekDownloads": 98049, "size": 561668, "latestRelease": "6.17.5", "latestReleaseDate": "2025-09-03T14:17:21.950Z" @@ -102570,7 +104013,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.165, "topicSearchString": "react-native react native appsflyer sdk" }, { @@ -102630,12 +104073,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-toastable", "npm": { - "downloads": 2081, - "weekDownloads": 420, + "downloads": 1960, + "weekDownloads": 398, "size": 161927, "latestRelease": "0.5.0", "latestReleaseDate": "2024-07-04T10:01:42.202Z" @@ -102645,7 +104089,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.173, "topicSearchString": "react-native ios android toaster toast notification alert snackbar toastable toastify react" }, { @@ -102674,7 +104118,7 @@ "updatedAt": "2024-03-02T21:57:28Z", "createdAt": "2023-03-16T13:00:28Z", "pushedAt": "2024-03-02T21:57:28Z", - "forks": 22, + "forks": 23, "issues": 6, "subscribers": 2, "stars": 123, @@ -102705,12 +104149,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ruler-picker", "npm": { - "downloads": 6170, - "weekDownloads": 851, + "downloads": 6155, + "weekDownloads": 1029, "size": 68359, "latestRelease": "0.2.2", "latestReleaseDate": "2024-03-02T21:57:22.543Z" @@ -102720,7 +104165,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.117, + "popularity": 0.142, "topicSearchString": "react-native ios android ruler picker ruler-picker react reactnative" }, { @@ -102767,12 +104212,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-use-sound", "npm": { - "downloads": 673, - "weekDownloads": 126, + "downloads": 705, + "weekDownloads": 178, "size": 960950, "latestRelease": "1.2.2", "latestReleaseDate": "2022-07-26T11:57:38.938Z" @@ -102782,7 +104228,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.341, + "popularity": -1.284, "topicSearchString": "" }, { @@ -102838,11 +104284,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-qr", "npm": { - "downloads": 5, + "downloads": 17, "weekDownloads": 0, "size": 50599, "latestRelease": "2.0.1", @@ -102906,11 +104353,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 2846, - "weekDownloads": 488, + "downloads": 2832, + "weekDownloads": 444, "size": 46124, "latestRelease": "0.4.0", "latestReleaseDate": "2025-09-27T09:19:01.327Z" @@ -102920,7 +104368,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.133, "topicSearchString": "analytics privacy react-native" }, { @@ -102949,7 +104397,7 @@ "forks": 30, "issues": 8, "subscribers": 6, - "stars": 187, + "stars": 188, "dependencies": 0 }, "name": "react-native-fast-opencv", @@ -102977,12 +104425,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-fast-opencv", "npm": { - "downloads": 4651, - "weekDownloads": 816, + "downloads": 4617, + "weekDownloads": 781, "size": 713232, "latestRelease": "0.4.6", "latestReleaseDate": "2025-06-11T16:30:47.071Z" @@ -102991,7 +104440,7 @@ "matchingScoreModifiers": [ "Known" ], - "popularity": 0.149, + "popularity": 0.144, "topicSearchString": "react-native ios android cpp jsi new-architecture opencv" }, { @@ -103019,10 +104468,10 @@ "updatedAt": "2024-01-29T05:19:55Z", "createdAt": "2016-09-08T14:21:41Z", "pushedAt": "2024-01-29T05:19:55Z", - "forks": 4615, + "forks": 4617, "issues": 144, "subscribers": 372, - "stars": 25609, + "stars": 25615, "dependencies": 6 }, "name": "@rneui/base", @@ -103052,11 +104501,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 276038, - "weekDownloads": 50581, + "downloads": 268184, + "weekDownloads": 49632, "size": 295280, "latestRelease": "4.0.0-rc.8", "latestReleaseDate": "2023-07-28T19:17:58.110Z" @@ -103070,7 +104520,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.593, "topicSearchString": "react native react-native elements rneui ui components ui-library ios android bootstrap" }, { @@ -103101,10 +104551,10 @@ "updatedAt": "2024-02-04T03:55:07Z", "createdAt": "2016-09-08T14:21:41Z", "pushedAt": "2024-02-04T03:55:07Z", - "forks": 4615, + "forks": 4617, "issues": 144, "subscribers": 372, - "stars": 25609, + "stars": 25615, "dependencies": 0 }, "name": "@rneui/themed", @@ -103135,11 +104585,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 249793, - "weekDownloads": 46399, + "downloads": 239716, + "weekDownloads": 44774, "size": 69808, "latestRelease": "4.0.0-rc.8", "latestReleaseDate": "2023-07-28T19:18:33.533Z" @@ -103153,7 +104604,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.591, "topicSearchString": "react native react-native elements rneui themed ui components ui-library ios android bootstrap" }, { @@ -103184,10 +104635,10 @@ "updatedAt": "2025-08-28T09:02:41Z", "createdAt": "2024-09-03T22:04:50Z", "pushedAt": "2025-08-28T09:02:41Z", - "forks": 38, - "issues": 3, + "forks": 39, + "issues": 4, "subscribers": 4, - "stars": 920, + "stars": 922, "dependencies": 0 }, "name": "sonner-native", @@ -103215,12 +104666,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "sonner-native", "npm": { - "downloads": 165072, - "weekDownloads": 39005, + "downloads": 153645, + "weekDownloads": 32862, "size": 302043, "latestRelease": "0.21.1", "latestReleaseDate": "2025-08-28T09:02:37.957Z" @@ -103231,7 +104683,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.201, + "popularity": 0.182, "topicSearchString": "react-native ios android toast toasts reanimated sonner sonner-native" }, { @@ -103298,12 +104750,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "mobile-native-barcode-generator", "npm": { - "downloads": 762, - "weekDownloads": 6, + "downloads": 773, + "weekDownloads": 7, "size": 68715, "latestRelease": "0.0.7", "latestReleaseDate": "2024-09-10T14:18:50.443Z" @@ -103313,7 +104766,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.993, + "popularity": -0.992, "topicSearchString": "react-native ios android barcode qr-code barcode-generator qr-code-generator mobile-native-barcode-generator java kotlin library npm npm-library react swift" }, { @@ -103379,12 +104832,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-barcode", "npm": { - "downloads": 116, - "weekDownloads": 36, + "downloads": 130, + "weekDownloads": 47, "size": 21923, "latestRelease": "0.0.3", "latestReleaseDate": "2024-09-08T16:13:40.789Z" @@ -103394,7 +104848,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.733, + "popularity": -0.687, "topicSearchString": "react-native expo expo-barcode expobarcode ios android barcode qr-code barcode-generator qr-code-generator mobile-native-barcode-generator expo-library expo-modules java kotlin library npm npm-library react" }, { @@ -103452,11 +104906,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 31676, - "weekDownloads": 2924, + "downloads": 32890, + "weekDownloads": 4745, "size": 51630, "latestRelease": "1.0.1", "latestReleaseDate": "2025-08-19T10:10:22.580Z" @@ -103466,7 +104921,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.078, + "popularity": 0.123, "topicSearchString": "browser react-native in-app-browser safari chrome-custom-tabs" }, { @@ -103492,7 +104947,7 @@ "createdAt": "2024-09-06T08:11:28Z", "pushedAt": "2025-06-15T06:53:38Z", "forks": 17, - "issues": 3, + "issues": 4, "subscribers": 3, "stars": 241, "dependencies": 0 @@ -103523,12 +104978,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-rolling-numbers", "npm": { - "downloads": 24658, - "weekDownloads": 4355, + "downloads": 24244, + "weekDownloads": 4193, "size": 68348, "latestRelease": "2.0.0", "latestReleaseDate": "2025-02-20T07:35:24.025Z" @@ -103538,7 +104994,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.147, "topicSearchString": "react-native animated-numbers rolling-numbers animated-digits animated-number reanimated numbers react digits animated-rollilng-numbers" }, { @@ -103596,12 +105052,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-press-and-hold-button", "npm": { - "downloads": 523, - "weekDownloads": 133, + "downloads": 549, + "weekDownloads": 103, "size": 83120, "latestRelease": "0.6.0", "latestReleaseDate": "2024-10-16T22:50:30.281Z" @@ -103611,7 +105068,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.784, + "popularity": -0.84, "topicSearchString": "react-native ios android press hold long-press button" }, { @@ -103677,11 +105134,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 7617, - "weekDownloads": 1735, + "downloads": 6811, + "weekDownloads": 1537, "size": 542871, "latestRelease": "1.1.3", "latestReleaseDate": "2025-10-01T16:10:15.108Z" @@ -103691,7 +105149,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.194, + "popularity": 0.192, "topicSearchString": "react react-native jwplayer media player mediaplayer media-player jw android ios audio video sdk" }, { @@ -103746,18 +105204,19 @@ "newArchitecture": true, "isArchived": true, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 66, - "weekDownloads": 15, + "downloads": 101, + "weekDownloads": 19, "size": 104549, "latestRelease": "2.0.4", "latestReleaseDate": "2025-07-21T06:25:48.216Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -1.55, + "popularity": -1.585, "topicSearchString": "react-native ping ping-android ping-android ping" }, { @@ -103810,10 +105269,11 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 13, + "downloads": 16, "weekDownloads": 3, "size": 21501, "latestRelease": "1.0.2", @@ -103876,11 +105336,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 24, - "weekDownloads": 4, + "downloads": 31, + "weekDownloads": 15, "size": 14952, "latestRelease": "1.0.2", "latestReleaseDate": "2024-09-18T03:16:32.945Z" @@ -103890,7 +105351,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.84, + "popularity": -0.571, "topicSearchString": "react-native ios android" }, { @@ -103923,10 +105384,10 @@ "updatedAt": "2025-10-16T00:09:31Z", "createdAt": "2020-02-07T22:28:18Z", "pushedAt": "2025-10-16T00:09:31Z", - "forks": 189, - "issues": 167, + "forks": 190, + "issues": 168, "subscribers": 16, - "stars": 453, + "stars": 454, "dependencies": 1 }, "name": "posthog-react-native", @@ -103943,11 +105404,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 458107, - "weekDownloads": 97379, + "downloads": 435593, + "weekDownloads": 84375, "size": 302719, "latestRelease": "4.10.1", "latestReleaseDate": "2025-10-14T12:38:25.873Z" @@ -103960,7 +105422,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.181, + "popularity": 0.165, "topicSearchString": "" }, { @@ -104024,11 +105486,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npm": { - "downloads": 345740, - "weekDownloads": 73383, + "downloads": 325849, + "weekDownloads": 62768, "size": 311615, "latestRelease": "9.2.0", "latestReleaseDate": "2025-10-11T15:03:40.027Z" @@ -104040,7 +105503,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.164, "topicSearchString": "react-native ios intercom messenger help-center articles push-notifications customer-support android" }, { @@ -104101,11 +105564,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 553, - "weekDownloads": 67, + "downloads": 525, + "weekDownloads": 46, "size": 46422, "latestRelease": "1.3.0", "latestReleaseDate": "2025-10-11T16:24:53.913Z" @@ -104115,7 +105579,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.647, + "popularity": -0.675, "topicSearchString": "react react-native shopify flashlist calendar calendar-ui" }, { @@ -104174,12 +105638,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-rate-app", "npm": { - "downloads": 7136, - "weekDownloads": 1187, + "downloads": 7077, + "weekDownloads": 1173, "size": 64918, "latestRelease": "1.4.3", "latestReleaseDate": "2025-10-08T13:14:03.033Z" @@ -104253,12 +105718,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-typing-animated-text", "npm": { - "downloads": 49, - "weekDownloads": 12, + "downloads": 67, + "weekDownloads": 6, "size": 11236, "latestRelease": "1.0.7", "latestReleaseDate": "2024-09-27T04:11:29.556Z" @@ -104268,7 +105734,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.782, + "popularity": -0.92, "topicSearchString": "react-native animated-text typing-effect text-animation animations typing animated-typing ui text-effect animated-text-effect component typing-animation text-typing animated-text-input animation typing-text" }, { @@ -104324,12 +105790,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-custom-animated-accordion", "npm": { - "downloads": 77, - "weekDownloads": 0, + "downloads": 83, + "weekDownloads": 4, "size": 8714, "latestRelease": "1.0.5", "latestReleaseDate": "2024-09-27T10:54:40.592Z" @@ -104339,7 +105806,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -0.958, "topicSearchString": "react-native animated accordion custom-accordion animated-accordion collapsible animation" }, { @@ -104393,12 +105860,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-flip-card", "npm": { - "downloads": 395, - "weekDownloads": 133, + "downloads": 389, + "weekDownloads": 139, "size": 11405, "latestRelease": "1.0.3", "latestReleaseDate": "2024-09-26T09:21:49.668Z" @@ -104408,7 +105876,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.711, + "popularity": -0.695, "topicSearchString": "react-native animated flip card animation horizontal vertical flip-card" }, { @@ -104473,12 +105941,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-flexible-grid", "npm": { - "downloads": 4249, - "weekDownloads": 924, + "downloads": 4003, + "weekDownloads": 877, "size": 183752, "latestRelease": "0.2.5", "latestReleaseDate": "2025-09-04T06:26:06.274Z" @@ -104487,7 +105956,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.185, + "popularity": 0.186, "topicSearchString": "react-native ios web android grid grid-layout masonry rtl rtl-support mansonry hacktoberfest" }, { @@ -104547,12 +106016,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "vision-camera-zxing", "npm": { - "downloads": 87, - "weekDownloads": 5, + "downloads": 99, + "weekDownloads": 11, "size": 94112, "latestRelease": "0.1.1", "latestReleaseDate": "2024-09-14T08:34:39.312Z" @@ -104562,7 +106032,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.95, + "popularity": -0.904, "topicSearchString": "react-native ios android barcode vision-camera zxing barcode-scanner ean qrcode qrcode-scanner scanner upc" }, { @@ -104590,7 +106060,7 @@ "forks": 5, "issues": 1, "subscribers": 1, - "stars": 255, + "stars": 257, "dependencies": 0 }, "name": "react-native-screenshot-aware", @@ -104618,12 +106088,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-screenshot-aware", "npm": { - "downloads": 22828, - "weekDownloads": 4672, + "downloads": 23257, + "weekDownloads": 5067, "size": 42156, "latestRelease": "1.3.13", "latestReleaseDate": "2025-10-08T10:09:32.600Z" @@ -104633,7 +106104,7 @@ "Known", "Recently updated" ], - "popularity": 0.174, + "popularity": 0.185, "topicSearchString": "react-native ios android screenshot aware capture screen" }, { @@ -104695,11 +106166,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-ios-visual-effect-view", "npm": { - "downloads": 29, + "downloads": 49, "weekDownloads": 2, "size": 313016, "latestRelease": "0.2.0", @@ -104707,7 +106179,7 @@ }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.683, + "popularity": -0.714, "topicSearchString": "react-native ios android fabric jsi react react-natve swift uikit uivisualeffectview cafilter" }, { @@ -104759,11 +106231,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-stack-carousel", "npm": { - "downloads": 53, + "downloads": 59, "weekDownloads": 7, "size": 13617, "latestRelease": "1.0.3", @@ -104774,7 +106247,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.883, + "popularity": -0.892, "topicSearchString": "react-native carousel stack-carousel carousel-stack stack-animation swiper-flatlist" }, { @@ -104822,11 +106295,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 101, - "weekDownloads": 12, + "downloads": 113, + "weekDownloads": 10, "size": 38898, "latestRelease": "1.0.1", "latestReleaseDate": "2024-11-04T02:58:09.267Z" @@ -104835,7 +106309,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.896, + "popularity": -0.923, "topicSearchString": "react-native android" }, { @@ -104892,12 +106366,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-hapticlabs", "npm": { - "downloads": 272, - "weekDownloads": 38, + "downloads": 259, + "weekDownloads": 36, "size": 113677, "latestRelease": "0.7.1", "latestReleaseDate": "2025-09-29T18:39:39.387Z" @@ -104907,7 +106382,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.881, + "popularity": -0.88, "topicSearchString": "react-native ios android haptics vibration ahap hla ogg hapticlabs" }, { @@ -104963,12 +106438,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-tab", "npm": { - "downloads": 48, - "weekDownloads": 17, + "downloads": 42, + "weekDownloads": 20, "size": 8086, "latestRelease": "1.0.3", "latestReleaseDate": "2024-09-27T09:47:36.250Z" @@ -104978,7 +106454,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.691, + "popularity": -0.556, "topicSearchString": "react-native segmented-tab tab animated-tab segmented-control-tab animation-tab reanimated-tab animation reanimated tabs" }, { @@ -105037,12 +106513,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-custom-select", "npm": { - "downloads": 79, - "weekDownloads": 4, + "downloads": 107, + "weekDownloads": 5, "size": 136487, "latestRelease": "1.1.5", "latestReleaseDate": "2024-10-24T17:47:54.996Z" @@ -105052,7 +106529,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.956, + "popularity": -0.96, "topicSearchString": "react react-native native select dropdown option" }, { @@ -105107,11 +106584,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-lz4", "npm": { - "downloads": 16, + "downloads": 31, "weekDownloads": 0, "size": 1219097, "latestRelease": "0.0.1-alpha.0", @@ -105201,11 +106679,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 361, - "weekDownloads": 88, + "downloads": 585, + "weekDownloads": 62, "size": 100686, "latestRelease": "2.7.0", "latestReleaseDate": "2025-08-27T01:00:54.473Z" @@ -105214,7 +106693,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.79, + "popularity": -0.909, "topicSearchString": "validator multiform validação email-validator multiform-validator javascript npm security safe pentest security-tools validate magic-number magic-number-validator magic-numbers cpf cnpj password email isemail image javascript-library library typescript typescript-library validate-js" }, { @@ -105282,11 +106761,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 316, - "weekDownloads": 32, + "downloads": 373, + "weekDownloads": 2, "size": 40448, "latestRelease": "2.0.1", "latestReleaseDate": "2025-01-20T15:48:23.096Z" @@ -105295,7 +106775,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.914, + "popularity": -0.995, "topicSearchString": "javascript typescript azure-translator translator translator-code i18n-json-generator i18n translations azure azure-translate azure-translation-services javascript-library npm-package azure-translator-code collaborate communityexchange" }, { @@ -105358,11 +106838,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 98, - "weekDownloads": 20, + "downloads": 151, + "weekDownloads": 26, "size": 18379, "latestRelease": "0.0.3", "latestReleaseDate": "2024-08-05T14:07:00.482Z" @@ -105372,7 +106853,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.826, + "popularity": -0.851, "topicSearchString": "react redux persist react-redux react-component react-library react-redux-persist redux-persist redux-persist2 expo react-native redux-toolkit" }, { @@ -105438,12 +106919,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-totp", "npm": { - "downloads": 900, - "weekDownloads": 78, + "downloads": 886, + "weekDownloads": 316, "size": 1856388, "latestRelease": "2.0.1", "latestReleaseDate": "2025-09-26T14:31:21.118Z" @@ -105453,7 +106935,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.676, + "popularity": -0.446, "topicSearchString": "react-native nitro totp hotp otpauth otp-auth authentication security nitro-totp nitro-hotp nitro-modules nitrogen android cplusplus ios otp" }, { @@ -105470,7 +106952,7 @@ "android": true, "github": { "urls": { - "repo": "https://github.com/dream-sports-labs/react-native-fast-image", + "repo": "https://github.com/ds-horizon/react-native-fast-image", "homepage": null }, "stats": { @@ -105489,7 +106971,7 @@ "dependencies": 0 }, "name": "@d11/react-native-fast-image", - "fullName": "dream-sports-labs/react-native-fast-image", + "fullName": "ds-horizon/react-native-fast-image", "isPrivate": false, "registry": "https://registry.npmjs.org/", "description": "🚩 FastImage, performant React Native image component.", @@ -105511,11 +106993,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 333595, - "weekDownloads": 59217, + "downloads": 320902, + "weekDownloads": 60411, "size": 130221, "latestRelease": "8.12.0", "latestReleaseDate": "2025-09-05T11:05:37.212Z" @@ -105525,7 +107008,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.16, "topicSearchString": "cache cached fastimage image priority" }, { @@ -105595,11 +107078,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3380, - "weekDownloads": 568, + "downloads": 3324, + "weekDownloads": 628, "size": 10109, "latestRelease": "1.3.4", "latestReleaseDate": "2025-09-29T01:48:08.703Z" @@ -105609,7 +107093,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.107, + "popularity": -0.089, "topicSearchString": "cpf cnpj generator gerador validador documento javascript dados-pessoais npm cpf cnpj gerador-de-cpf gerador-de-cnpj validador-de-cpf validador-de-cnpj gerador-de-cpf-e-cnpj validador-de-cpf-e-cnpj front-end back-end node" }, { @@ -105673,11 +107157,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npm": { - "downloads": 281, - "weekDownloads": 138, + "downloads": 314, + "weekDownloads": 49, "size": 16076245, "latestRelease": "0.2.4", "latestReleaseDate": "2024-10-04T10:10:21.620Z" @@ -105687,7 +107172,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, + "popularity": -0.866, "topicSearchString": "react-native ios android crypto get-random-values crypto.getrandomvalues polyfill getrandomvalues cpp javascript native-module random typescript" }, { @@ -105741,11 +107226,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 93948, - "weekDownloads": 19904, + "downloads": 87425, + "weekDownloads": 17651, "size": 181853, "latestRelease": "7.0.0", "latestReleaseDate": "2025-03-28T16:35:57.421Z" @@ -105756,7 +107242,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.07, + "popularity": -0.078, "topicSearchString": "react-native adobe adobe-experience-platform core ios android" }, { @@ -105812,11 +107298,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 114, - "weekDownloads": 19, + "downloads": 118, + "weekDownloads": 28, "size": 22349, "latestRelease": "2.1.1", "latestReleaseDate": "2025-04-18T01:00:26.773Z" @@ -105826,7 +107313,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, + "popularity": -0.543, "topicSearchString": "react-native leaflet maps maps-leaflet react-leaflet-native react-leaflet react-map map" }, { @@ -105860,7 +107347,7 @@ "forks": 29, "issues": 34, "subscribers": 5, - "stars": 432, + "stars": 434, "dependencies": 0 }, "name": "expo-speech-recognition", @@ -105889,12 +107376,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-speech-recognition", "npm": { - "downloads": 86879, - "weekDownloads": 15693, + "downloads": 83214, + "weekDownloads": 15460, "size": 543275, "latestRelease": "2.1.5", "latestReleaseDate": "2025-09-29T04:59:21.340Z" @@ -105905,7 +107393,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.158, "topicSearchString": "react-native expo expo-speech-recognition expospeechrecognition webkitspeechrecognition speechrecognition speech-recognition speech-to-text voice-recognition" }, { @@ -105957,12 +107445,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sprites", "npm": { - "downloads": 30, - "weekDownloads": 18, + "downloads": 38, + "weekDownloads": 26, "size": 75522, "latestRelease": "0.1.1", "latestReleaseDate": "2024-10-24T19:11:40.698Z" @@ -105972,7 +107461,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.486, + "popularity": -0.35, "topicSearchString": "react-native ios android" }, { @@ -106026,11 +107515,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 292, - "weekDownloads": 32, + "downloads": 345, + "weekDownloads": 47, "size": 6091, "latestRelease": "1.0.9", "latestReleaseDate": "2024-10-22T14:07:42.893Z" @@ -106040,7 +107530,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.906, + "popularity": -0.884, "topicSearchString": "react-native react native lifecycle hook launch focus blur" }, { @@ -106064,13 +107554,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-05T08:37:35Z", + "updatedAt": "2025-10-18T11:42:26Z", "createdAt": "2024-09-27T12:59:01Z", - "pushedAt": "2025-10-05T08:37:35Z", + "pushedAt": "2025-10-18T11:42:26Z", "forks": 69, - "issues": 16, + "issues": 18, "subscribers": 9, - "stars": 1184, + "stars": 1208, "dependencies": 3 }, "name": "react-native-bottom-tabs", @@ -106094,15 +107584,16 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-bottom-tabs", "npm": { - "downloads": 57630, - "weekDownloads": 9452, - "size": 207952, - "latestRelease": "0.12.2", - "latestReleaseDate": "2025-10-02T13:26:16.755Z" + "downloads": 56382, + "weekDownloads": 9060, + "size": 154986, + "latestRelease": "1.0.0", + "latestReleaseDate": "2025-10-18T11:43:41.678Z" }, "score": 76, "matchingScoreModifiers": [ @@ -106110,7 +107601,7 @@ "Known", "Recently updated" ], - "popularity": 0.139, + "popularity": 0.137, "topicSearchString": "react-native ios android" }, { @@ -106167,12 +107658,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-fast-confetti", "npm": { - "downloads": 44104, - "weekDownloads": 8069, + "downloads": 42411, + "weekDownloads": 8196, "size": 181753, "latestRelease": "1.1.1", "latestReleaseDate": "2025-08-28T10:47:39.518Z" @@ -106182,7 +107674,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.164, "topicSearchString": "react-native ios android" }, { @@ -106238,12 +107730,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-stopwatch-timer", "npm": { - "downloads": 1434, - "weekDownloads": 228, + "downloads": 1372, + "weekDownloads": 211, "size": 66005, "latestRelease": "1.3.0", "latestReleaseDate": "2024-02-10T15:37:19.275Z" @@ -106253,7 +107746,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.135, + "popularity": 0.131, "topicSearchString": "react-native ios android react reanimated2" }, { @@ -106304,12 +107797,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-fast-secure-storage", "npm": { - "downloads": 1531, - "weekDownloads": 317, + "downloads": 1431, + "weekDownloads": 262, "size": 109803, "latestRelease": "1.2.3", "latestReleaseDate": "2025-09-13T11:31:23.712Z" @@ -106318,7 +107812,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.156, "topicSearchString": "react-native ios android" }, { @@ -106399,12 +107893,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "nativeflowcss", "npm": { - "downloads": 106, - "weekDownloads": 13, + "downloads": 137, + "weekDownloads": 9, "size": 398093, "latestRelease": "1.2.22", "latestReleaseDate": "2024-09-18T17:44:43.061Z" @@ -106414,7 +107909,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.642, + "popularity": -0.694, "topicSearchString": "react-native tailwind-css utility-first css-in-js no-babel easy-setup one-package ui-library mobile-ui cross-platform ios android flexbox minimalist tailwind responsive design-system native styling lightweight performance customizable theme mobile-first utility nativeflowcss utility-objects hacktoberfest mobile-design mobile-styling" }, { @@ -106461,12 +107956,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "navigation", "npm": { - "downloads": 2641, - "weekDownloads": 470, + "downloads": 2927, + "weekDownloads": 412, "size": 82306, "latestRelease": "6.3.0", "latestReleaseDate": "2025-03-24T18:47:33.084Z" @@ -106477,7 +107973,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.12, "topicSearchString": "router navigation" }, { @@ -106528,12 +108024,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "navigation-react", "npm": { - "downloads": 1590, - "weekDownloads": 100, + "downloads": 1914, + "weekDownloads": 85, "size": 87593, "latestRelease": "4.14.0", "latestReleaseDate": "2025-09-26T15:05:10.196Z" @@ -106544,7 +108041,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.053, + "popularity": 0.038, "topicSearchString": "router navigation react" }, { @@ -106596,12 +108093,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "navigation-react-native", "npm": { - "downloads": 1522, - "weekDownloads": 114, + "downloads": 2051, + "weekDownloads": 103, "size": 1249264, "latestRelease": "9.34.1", "latestReleaseDate": "2025-10-12T17:05:04.488Z" @@ -106611,7 +108109,7 @@ "Known", "Recently updated" ], - "popularity": 0.064, + "popularity": 0.043, "topicSearchString": "router navigation react native" }, { @@ -106667,19 +108165,20 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-turbo-sqlite", "npm": { - "downloads": 107, - "weekDownloads": 16, + "downloads": 106, + "weekDownloads": 17, "size": 9997445, "latestRelease": "0.3.1", "latestReleaseDate": "2025-08-05T16:34:52.131Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.872, + "popularity": -0.858, "topicSearchString": "react-native ios android sqlite turbomodule new-architecture" }, { @@ -106729,11 +108228,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 69, - "weekDownloads": 12, + "downloads": 264, + "weekDownloads": 8, "size": 5122, "latestRelease": "1.0.11", "latestReleaseDate": "2025-01-29T08:58:36.580Z" @@ -106743,7 +108243,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.85, + "popularity": -0.974, "topicSearchString": "react native expo expo-updates" }, { @@ -106797,12 +108297,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-in-app-updates", "npm": { - "downloads": 21146, - "weekDownloads": 3432, + "downloads": 20707, + "weekDownloads": 3575, "size": 46654, "latestRelease": "0.9.0", "latestReleaseDate": "2025-02-06T06:52:53.369Z" @@ -106813,7 +108314,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.138, + "popularity": 0.147, "topicSearchString": "react-native expo expo-in-app-updates expoinappupdates expo-module in-app-updates" }, { @@ -106837,10 +108338,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 2 }, "name": "expo-manifests", @@ -106863,12 +108364,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-manifests", "npm": { - "downloads": 4137510, - "weekDownloads": 789300, + "downloads": 4013560, + "weekDownloads": 781541, "size": 62765, "latestRelease": "1.0.8", "latestReleaseDate": "2025-09-11T20:24:08.714Z" @@ -106882,7 +108384,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.166, "topicSearchString": "react-native expo expo-manifests" }, { @@ -106905,10 +108407,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-structured-headers", @@ -106931,12 +108433,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-structured-headers", "npm": { - "downloads": 2432493, - "weekDownloads": 469043, + "downloads": 2319759, + "weekDownloads": 449344, "size": 1428578, "latestRelease": "5.0.0", "latestReleaseDate": "2025-08-13T17:01:08.483Z" @@ -106950,7 +108453,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.165, "topicSearchString": "react-native expo expo-structured-headers" }, { @@ -106973,10 +108476,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-json-utils", @@ -107003,12 +108506,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-json-utils", "npm": { - "downloads": 3968155, - "weekDownloads": 750304, + "downloads": 3857953, + "weekDownloads": 746355, "size": 15175, "latestRelease": "0.15.0", "latestReleaseDate": "2025-04-04T23:34:49.379Z" @@ -107022,7 +108526,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.164, "topicSearchString": "react-native expo expo-json-utils android ios jsonobjects nsdictionaries" }, { @@ -107069,12 +108573,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-jwt", "npm": { - "downloads": 25913, - "weekDownloads": 5621, + "downloads": 24462, + "weekDownloads": 4972, "size": 31166, "latestRelease": "1.8.2", "latestReleaseDate": "2025-01-28T09:56:08.877Z" @@ -107084,7 +108589,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.184, + "popularity": 0.173, "topicSearchString": "expo jwt react-native" }, { @@ -107110,7 +108615,7 @@ "createdAt": "2024-04-02T07:17:42Z", "pushedAt": "2025-07-11T12:15:44Z", "forks": 4, - "issues": 0, + "issues": 1, "subscribers": 1, "stars": 39, "dependencies": 3 @@ -107142,12 +108647,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-skeleton-loading", "npm": { - "downloads": 16196, - "weekDownloads": 2901, + "downloads": 16112, + "weekDownloads": 3132, "size": 11104, "latestRelease": "1.1.1", "latestReleaseDate": "2025-07-11T12:16:19.891Z" @@ -107156,7 +108662,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.165, "topicSearchString": "skeleton expo react-native skeleton-loader expo-skeleton-loader skeleton-loading loading expo-skeleton-loading easy easy-skeletion-loader easy-skeletion-loading" }, { @@ -107233,12 +108739,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-reactions", "npm": { - "downloads": 2988, - "weekDownloads": 507, + "downloads": 2883, + "weekDownloads": 601, "size": 101694, "latestRelease": "1.0.0", "latestReleaseDate": "2024-06-12T05:33:12.699Z" @@ -107248,7 +108755,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.177, "topicSearchString": "react react-native typescript reactions animated-reactions rn reanimated component react-component ios android reaction seamless-reactions seamless seamless-gesture-reaction emoji-reactions reactions-picker reactions-component animated-reactions-picker picker animation react-reaction fb-reactions-animation emoji-picker emojis library" }, { @@ -107299,12 +108806,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "expo-notifee-plugin", "npm": { - "downloads": 308, - "weekDownloads": 63, + "downloads": 292, + "weekDownloads": 34, "size": 371689, "latestRelease": "1.0.7", "latestReleaseDate": "2024-10-17T08:35:15.936Z" @@ -107314,7 +108822,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.825, + "popularity": -0.9, "topicSearchString": "react-native expo notifee notifications remote service plugin extension expo-notifee-plugin" }, { @@ -107367,12 +108875,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-scroll-viewport-tracker", "npm": { - "downloads": 1172, - "weekDownloads": 152, + "downloads": 1164, + "weekDownloads": 217, "size": 74016, "latestRelease": "1.4.1", "latestReleaseDate": "2024-10-30T09:53:21.486Z" @@ -107382,7 +108891,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.139, + "popularity": -0.091, "topicSearchString": "react-native ios android scrollview intersection-observer" }, { @@ -107410,7 +108919,7 @@ "forks": 6, "issues": 0, "subscribers": 2, - "stars": 159, + "stars": 161, "dependencies": 0 }, "name": "react-native-multiple-modals", @@ -107438,12 +108947,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-multiple-modals", "npm": { - "downloads": 2691, - "weekDownloads": 454, + "downloads": 2672, + "weekDownloads": 423, "size": 306204, "latestRelease": "3.2.2", "latestReleaseDate": "2025-10-07T09:56:08.517Z" @@ -107452,7 +108962,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.143, + "popularity": 0.135, "topicSearchString": "react-native multiple modals simultaneously ios modal dialog android" }, { @@ -107476,10 +108986,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 5 }, "name": "expo-dev-client", @@ -107502,12 +109012,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-dev-client", "npm": { - "downloads": 3569525, - "weekDownloads": 670568, + "downloads": 3419269, + "weekDownloads": 667345, "size": 61677, "latestRelease": "6.0.15", "latestReleaseDate": "2025-10-10T18:56:36.900Z" @@ -107521,7 +109032,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.166, "topicSearchString": "react-native expo expo-dev-client" }, { @@ -107549,10 +109060,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 2 }, "name": "expo-build-properties", @@ -107576,12 +109087,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-build-properties", "npm": { - "downloads": 2881072, - "weekDownloads": 537867, + "downloads": 2791046, + "weekDownloads": 537682, "size": 124221, "latestRelease": "1.0.9", "latestReleaseDate": "2025-09-18T21:32:50.716Z" @@ -107595,7 +109107,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.164, "topicSearchString": "react-native expo build build-properties" }, { @@ -107623,7 +109135,7 @@ "forks": 9, "issues": 8, "subscribers": 4, - "stars": 147, + "stars": 150, "dependencies": 0 }, "name": "expo-alternate-app-icons", @@ -107647,12 +109159,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-alternate-app-icons", "npm": { - "downloads": 27418, - "weekDownloads": 14357, + "downloads": 18683, + "weekDownloads": 6321, "size": 96628, "latestRelease": "3.0.0", "latestReleaseDate": "2025-09-08T07:17:08.277Z" @@ -107661,7 +109174,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.695, + "popularity": 0.538, "topicSearchString": "react-native expo expo-alternate-app-icons expoalternateappicons" }, { @@ -107721,12 +109234,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-get-app-list", "npm": { - "downloads": 225, - "weekDownloads": 39, + "downloads": 233, + "weekDownloads": 56, "size": 22849, "latestRelease": "0.2.0", "latestReleaseDate": "2025-09-11T06:40:40.254Z" @@ -107735,7 +109249,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.85, + "popularity": -0.793, "topicSearchString": "react-native android installed-apps app-list application-manager mobile-development library android-apps get-installed-apps version-code application-info app-integration mobile-apps cross-platform android-app" }, { @@ -107769,10 +109283,10 @@ "updatedAt": "2025-08-25T12:56:46Z", "createdAt": "2023-05-02T10:45:25Z", "pushedAt": "2025-08-25T12:56:46Z", - "forks": 24, + "forks": 23, "issues": 15, "subscribers": 4, - "stars": 220, + "stars": 223, "dependencies": 2 }, "name": "@quidone/react-native-wheel-picker", @@ -107802,11 +109316,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 56398, - "weekDownloads": 9296, + "downloads": 55105, + "weekDownloads": 9565, "size": 451818, "latestRelease": "1.6.1", "latestReleaseDate": "2025-08-25T12:12:46.631Z" @@ -107816,7 +109331,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.14, + "popularity": 0.148, "topicSearchString": "react-native wheel picker date datetime expo ios android select field" }, { @@ -107885,12 +109400,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-body-highlighter", "npm": { - "downloads": 1136, - "weekDownloads": 202, + "downloads": 1333, + "weekDownloads": 220, "size": 1183878, "latestRelease": "3.1.3", "latestReleaseDate": "2024-11-14T10:25:56.314Z" @@ -107901,7 +109417,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.141, "topicSearchString": "reactnative react muscle muscles body highlighter highlight color svg bones expo human-body react-native select" }, { @@ -107930,8 +109446,8 @@ "createdAt": "2023-01-06T14:31:09Z", "pushedAt": "2025-09-17T13:40:42Z", "forks": 16, - "issues": 2, - "subscribers": 3, + "issues": 3, + "subscribers": 2, "stars": 144, "dependencies": 0 }, @@ -107967,21 +109483,21 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 16837, - "weekDownloads": 2979, + "downloads": 15957, + "weekDownloads": 2774, "size": 15457891, "latestRelease": "4.2.4", "latestReleaseDate": "2025-09-17T13:41:41.923Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.148, "topicSearchString": "react-native library plugin freerasp security app-security tampering-detection root-detection app-shielding rasp tampering reverse-engineering application-security frida" }, { @@ -108034,18 +109550,19 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 7922, - "weekDownloads": 1755, + "downloads": 7645, + "weekDownloads": 1348, "size": 15116, "latestRelease": "2.0.0", "latestReleaseDate": "2025-08-13T09:56:18.767Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": 0.188, + "popularity": 0.15, "topicSearchString": "react-native ios android" }, { @@ -108100,12 +109617,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-pip", "npm": { - "downloads": 20250, - "weekDownloads": 12942, + "downloads": 10940, + "weekDownloads": 4934, "size": 31616, "latestRelease": "2.0.1", "latestReleaseDate": "2025-10-14T20:04:30.553Z" @@ -108115,7 +109633,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.543, + "popularity": 0.133, "topicSearchString": "react-native expo expo-pip expopip picture-in-picture pip" }, { @@ -108148,7 +109666,7 @@ "forks": 575, "issues": 149, "subscribers": 41, - "stars": 13212, + "stars": 13222, "dependencies": 53 }, "name": "tamagui", @@ -108159,12 +109677,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "tamagui", "npm": { - "downloads": 324447, - "weekDownloads": 59401, + "downloads": 319569, + "weekDownloads": 57621, "size": 4119202, "latestRelease": "1.135.3", "latestReleaseDate": "2025-10-16T18:34:47.185Z" @@ -108178,7 +109697,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.153, "topicSearchString": "" }, { @@ -108206,7 +109725,7 @@ "forks": 575, "issues": 149, "subscribers": 41, - "stars": 13212, + "stars": 13222, "dependencies": 3 }, "name": "@tamagui/animations-moti", @@ -108223,11 +109742,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 304102, - "weekDownloads": 54827, + "downloads": 303306, + "weekDownloads": 55220, "size": 109971, "latestRelease": "1.135.3", "latestReleaseDate": "2025-10-16T18:35:12.749Z" @@ -108241,7 +109761,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.155, "topicSearchString": "" }, { @@ -108269,7 +109789,7 @@ "forks": 575, "issues": 149, "subscribers": 41, - "stars": 13212, + "stars": 13222, "dependencies": 3 }, "name": "@tamagui/animations-react-native", @@ -108286,11 +109806,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 377468, - "weekDownloads": 67056, + "downloads": 371532, + "weekDownloads": 66623, "size": 156646, "latestRelease": "1.135.3", "latestReleaseDate": "2025-10-16T18:35:12.032Z" @@ -108304,7 +109825,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.152, "topicSearchString": "" }, { @@ -108332,7 +109853,7 @@ "forks": 575, "issues": 149, "subscribers": 41, - "stars": 13212, + "stars": 13222, "dependencies": 12 }, "name": "@tamagui/config", @@ -108342,11 +109863,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 251714, - "weekDownloads": 46125, + "downloads": 249529, + "weekDownloads": 45518, "size": 1173813, "latestRelease": "1.135.3", "latestReleaseDate": "2025-10-16T18:35:11.585Z" @@ -108360,7 +109882,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.155, "topicSearchString": "" }, { @@ -108388,7 +109910,7 @@ "forks": 575, "issues": 149, "subscribers": 41, - "stars": 13212, + "stars": 13222, "dependencies": 1 }, "name": "@tamagui/shorthands", @@ -108398,11 +109920,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 367725, - "weekDownloads": 64510, + "downloads": 358064, + "weekDownloads": 63113, "size": 84413, "latestRelease": "1.135.3", "latestReleaseDate": "2025-10-16T18:35:05.996Z" @@ -108416,7 +109939,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.15, "topicSearchString": "" }, { @@ -108444,7 +109967,7 @@ "forks": 575, "issues": 149, "subscribers": 41, - "stars": 13212, + "stars": 13222, "dependencies": 5 }, "name": "@tamagui/themes", @@ -108454,11 +109977,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 290969, - "weekDownloads": 52539, + "downloads": 295767, + "weekDownloads": 51942, "size": 11767917, "latestRelease": "1.135.3", "latestReleaseDate": "2025-10-16T18:35:05.298Z" @@ -108472,7 +109996,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.149, "topicSearchString": "" }, { @@ -108502,7 +110026,7 @@ "forks": 575, "issues": 149, "subscribers": 41, - "stars": 13212, + "stars": 13222, "dependencies": 15 }, "name": "@tamagui/toast", @@ -108512,11 +110036,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 150967, - "weekDownloads": 27394, + "downloads": 152891, + "weekDownloads": 27558, "size": 689228, "latestRelease": "1.135.3", "latestReleaseDate": "2025-10-16T18:34:46.835Z" @@ -108530,7 +110055,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.153, "topicSearchString": "" }, { @@ -108591,12 +110116,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-webp-converter", "npm": { - "downloads": 435, - "weekDownloads": 142, + "downloads": 407, + "weekDownloads": 99, "size": 96364, "latestRelease": "0.2.0", "latestReleaseDate": "2024-11-16T04:22:14.991Z" @@ -108605,7 +110131,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.722, + "popularity": -0.792, "topicSearchString": "webp image-webp image-converter webpconverter react-native ios android image-compression webp-converter" }, { @@ -108664,19 +110190,20 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-get-device-locale", "npm": { - "downloads": 740, - "weekDownloads": 135, + "downloads": 733, + "weekDownloads": 166, "size": 42082, "latestRelease": "0.3.0", "latestReleaseDate": "2025-04-29T11:33:33.944Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.845, + "popularity": -0.807, "topicSearchString": "module native-module turbo-module react-native typescript i18n locale localization device-locale" }, { @@ -108737,11 +110264,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "native-sass", "npm": { - "downloads": 28, + "downloads": 59, "weekDownloads": 0, "size": 208952, "latestRelease": "2.0.1", @@ -108806,10 +110334,11 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npm": { - "downloads": 12, + "downloads": 27, "weekDownloads": 6, "size": 70586, "latestRelease": "0.0.5", @@ -108820,7 +110349,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.4, + "popularity": -0.8, "topicSearchString": "react-native nitro volume volume-control" }, { @@ -108868,12 +110397,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ficus-ui", "npm": { - "downloads": 844, - "weekDownloads": 160, + "downloads": 923, + "weekDownloads": 161, "size": 1158882, "latestRelease": "2.3.1", "latestReleaseDate": "2025-10-03T08:32:42.314Z" @@ -108883,7 +110413,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.588, + "popularity": -0.602, "topicSearchString": "" }, { @@ -108910,7 +110440,7 @@ "forks": 8, "issues": 4, "subscribers": 9, - "stars": 224, + "stars": 225, "dependencies": 1 }, "name": "react-native-skia-list", @@ -108933,22 +110463,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-skia-list", "npm": { - "downloads": 627, - "weekDownloads": 171, + "downloads": 590, + "weekDownloads": 108, "size": 486232, "latestRelease": "0.7.2", "latestReleaseDate": "2024-12-08T01:39:37.675Z" }, - "score": 51, + "score": 41, "matchingScoreModifiers": [ "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.517, + "popularity": -0.593, "topicSearchString": "react-native ios android" }, { @@ -108998,12 +110530,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rollbar-react-native", "npm": { - "downloads": 21047, - "weekDownloads": 4347, + "downloads": 19691, + "weekDownloads": 3303, "size": 210249, "latestRelease": "1.0.0", "latestReleaseDate": "2025-09-08T22:09:42.620Z" @@ -109013,7 +110546,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.143, "topicSearchString": "react-native error-monitoring error-reporting javascript observability react typescript" }, { @@ -109068,12 +110601,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-fusioncharts", "npm": { - "downloads": 3601, - "weekDownloads": 753, + "downloads": 3359, + "weekDownloads": 765, "size": 5206551, "latestRelease": "6.0.1", "latestReleaseDate": "2025-09-05T11:44:52.811Z" @@ -109082,7 +110616,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.194, "topicSearchString": "react-native react fusioncharts android ios chart wrapper" }, { @@ -109134,12 +110668,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-plaid-link-sdk", "npm": { - "downloads": 281113, - "weekDownloads": 49477, + "downloads": 277937, + "weekDownloads": 50381, "size": 323873, "latestRelease": "12.6.0", "latestReleaseDate": "2025-10-06T18:16:14.863Z" @@ -109151,7 +110686,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.154, "topicSearchString": "react-native plaid plaid-link react" }, { @@ -109203,12 +110738,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "easy-peasy", "npm": { - "downloads": 131561, - "weekDownloads": 24980, + "downloads": 126194, + "weekDownloads": 25060, "size": 432456, "latestRelease": "6.1.0", "latestReleaseDate": "2025-02-19T15:25:01.777Z" @@ -109221,7 +110757,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.169, "topicSearchString": "react redux state typescript state-management immutable hooks react-hooks immer" }, { @@ -109272,12 +110808,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "pushy-react-native", "npm": { - "downloads": 2571, - "weekDownloads": 405, + "downloads": 2579, + "weekDownloads": 346, "size": 74843, "latestRelease": "1.0.58", "latestReleaseDate": "2025-07-28T08:10:24.322Z" @@ -109286,7 +110823,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.116, + "popularity": -0.136, "topicSearchString": "" }, { @@ -109344,11 +110881,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rnx-gen", "npm": { - "downloads": 5, + "downloads": 59, "weekDownloads": 1, "size": 68383, "latestRelease": "1.3.0", @@ -109358,7 +110896,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.8, + "popularity": -0.985, "topicSearchString": "react-native boilerplate resources generate scaffold react template" }, { @@ -109415,12 +110953,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "duix", "npm": { - "downloads": 280, - "weekDownloads": 71, + "downloads": 270, + "weekDownloads": 24, "size": 30013, "latestRelease": "3.1.0", "latestReleaseDate": "2025-02-04T16:21:33.786Z" @@ -109430,7 +110969,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.532, + "popularity": -0.674, "topicSearchString": "state manager x kiss callbacks statemanager state-management state-manager redux vuex pareto" }, { @@ -109451,13 +110990,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T15:20:26Z", + "updatedAt": "2025-10-19T12:06:36Z", "createdAt": "2014-08-18T22:30:27Z", - "pushedAt": "2025-10-16T15:20:26Z", - "forks": 11182, - "issues": 182, + "pushedAt": "2025-10-19T12:06:36Z", + "forks": 11192, + "issues": 181, "subscribers": 1180, - "stars": 107942, + "stars": 107956, "dependencies": 3 }, "name": "axios", @@ -109490,12 +111029,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "axios", "npm": { - "downloads": 299528907, - "weekDownloads": 57165185, + "downloads": 289405467, + "weekDownloads": 55472894, "size": 2241796, "latestRelease": "1.12.2", "latestReleaseDate": "2025-09-14T12:59:27.346Z" @@ -109509,7 +111049,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.163, "topicSearchString": "xhr http ajax promise node browser fetch rest api client http-client javascript nodejs hacktoberfest" }, { @@ -109580,11 +111120,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 80, - "weekDownloads": 14, + "downloads": 257, + "weekDownloads": 10, "size": 65792, "latestRelease": "1.1.2", "latestReleaseDate": "2024-07-20T16:51:03.458Z" @@ -109594,7 +111135,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.844, + "popularity": -0.967, "topicSearchString": "react-native component picker reanimated reanimated-picker reanimated-select reanimated-dropdown select select-picker dropdown dropdown-picker dropdown-select picker-select multiple multiselect options" }, { @@ -109668,11 +111209,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 64, - "weekDownloads": 8, + "downloads": 184, + "weekDownloads": 9, "size": 39036, "latestRelease": "1.3.1", "latestReleaseDate": "2024-07-18T17:54:14.875Z" @@ -109682,7 +111224,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.893, + "popularity": -0.958, "topicSearchString": "react-native component otp one time password mobile ios android sms web verify code confirmation confirmation-code one-time-code one-time-password otp-input" }, { @@ -109754,11 +111296,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 32, - "weekDownloads": 3, + "downloads": 157, + "weekDownloads": 9, "size": 19017, "latestRelease": "1.1.0", "latestReleaseDate": "2024-07-18T10:18:23.373Z" @@ -109768,7 +111311,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.914, + "popularity": -0.95, "topicSearchString": "react-native component accordion collapse reanimated reanimated-collapse reanimated-accordion collapsible collapsible-sections panels group-collapse ios android collapse-ui collapsible-ui" }, { @@ -109797,7 +111340,7 @@ "forks": 32, "issues": 26, "subscribers": 6, - "stars": 476, + "stars": 478, "dependencies": 1 }, "name": "react-native-nitro-sqlite", @@ -109823,11 +111366,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npm": { - "downloads": 14539, - "weekDownloads": 2933, + "downloads": 13737, + "weekDownloads": 2319, "size": 10125550, "latestRelease": "9.1.11", "latestReleaseDate": "2025-08-04T09:42:53.314Z" @@ -109837,7 +111381,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.144, "topicSearchString": "react-native sqlite nitro-modules ios android" }, { @@ -109891,12 +111435,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-snowfall", "npm": { - "downloads": 3231, - "weekDownloads": 440, + "downloads": 3065, + "weekDownloads": 375, "size": 58086, "latestRelease": "0.1.2", "latestReleaseDate": "2024-11-20T10:46:48.397Z" @@ -109906,7 +111451,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.134, + "popularity": -0.146, "topicSearchString": "react-native ios android" }, { @@ -109957,11 +111502,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-webview-rpc", "npm": { - "downloads": 5, + "downloads": 9, "weekDownloads": 0, "latestRelease": "0.0.1", "latestReleaseDate": "2016-01-21T12:31:39.660Z" @@ -110025,12 +111571,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, - "moduleType": "expo" + "configPlugin": true, + "moduleType": "nitro" }, "npmPkg": "react-native-localize-date", "npm": { - "downloads": 98, - "weekDownloads": 10, + "downloads": 111, + "weekDownloads": 15, "size": 82260, "latestRelease": "2.1.1", "latestReleaseDate": "2025-01-08T16:09:56.203Z" @@ -110040,7 +111587,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.913, + "popularity": -0.885, "topicSearchString": "localize-date react-native nitro localize localization l20n" }, { @@ -110088,11 +111635,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3810, - "weekDownloads": 1539, + "downloads": 4178, + "weekDownloads": 1601, "size": 872157, "latestRelease": "1.2.313", "latestReleaseDate": "2025-10-15T11:04:11.098Z" @@ -110102,7 +111650,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.094, + "popularity": 0.076, "topicSearchString": "juhuu" }, { @@ -110124,13 +111672,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-15T16:14:10Z", + "updatedAt": "2025-10-17T22:14:56Z", "createdAt": "2020-03-07T20:59:08Z", - "pushedAt": "2025-10-15T16:14:10Z", - "forks": 1619, - "issues": 207, + "pushedAt": "2025-10-17T22:14:56Z", + "forks": 1622, + "issues": 210, "subscribers": 75, - "stars": 40364, + "stars": 40401, "dependencies": 0 }, "name": "zod", @@ -110154,12 +111702,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "zod", "npm": { - "downloads": 204808190, - "weekDownloads": 38715348, + "downloads": 199363640, + "weekDownloads": 36450962, "size": 3957745, "latestRelease": "4.1.12", "latestReleaseDate": "2025-10-06T16:30:25.760Z" @@ -110173,7 +111722,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.155, "topicSearchString": "typescript schema validation type inference" }, { @@ -110199,9 +111748,9 @@ "createdAt": "2021-07-15T08:37:57Z", "pushedAt": "2025-10-04T17:14:14Z", "forks": 84, - "issues": 22, + "issues": 21, "subscribers": 10, - "stars": 5397, + "stars": 5401, "dependencies": 0 }, "name": "tailwind-merge", @@ -110230,12 +111779,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "tailwind-merge", "npm": { - "downloads": 52909866, - "weekDownloads": 9911767, + "downloads": 51747263, + "weekDownloads": 9678587, "size": 898277, "latestRelease": "3.3.1", "latestReleaseDate": "2025-06-10T20:04:17.692Z" @@ -110276,7 +111826,7 @@ "forks": 158, "issues": 8, "subscribers": 16, - "stars": 9436, + "stars": 9444, "dependencies": 0 }, "name": "clsx", @@ -110298,12 +111848,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "clsx", "npm": { - "downloads": 152185373, - "weekDownloads": 28241463, + "downloads": 147828039, + "weekDownloads": 27691271, "size": 8555, "latestRelease": "2.1.1", "latestReleaseDate": "2024-04-23T05:26:04.645Z" @@ -110316,7 +111867,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.159, "topicSearchString": "classes classname classnames" }, { @@ -110338,7 +111889,7 @@ "createdAt": "2022-04-21T10:10:28Z", "pushedAt": "2025-09-28T14:59:20Z", "forks": 17, - "issues": 2, + "issues": 3, "subscribers": 2, "stars": 74, "dependencies": 0 @@ -110368,12 +111919,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-ios-utilities", "npm": { - "downloads": 160552, - "weekDownloads": 29406, + "downloads": 155141, + "weekDownloads": 29447, "size": 492284, "latestRelease": "5.2.0", "latestReleaseDate": "2025-09-28T15:00:44.307Z" @@ -110383,7 +111935,7 @@ "Known", "Recently updated" ], - "popularity": 0.156, + "popularity": 0.161, "topicSearchString": "react-native ios utilities utility fabric paper jsi" }, { @@ -110408,10 +111960,10 @@ "updatedAt": "2025-10-16T04:14:40Z", "createdAt": "2018-04-10T09:26:44Z", "pushedAt": "2025-10-16T04:14:40Z", - "forks": 2347, + "forks": 2349, "issues": 925, "subscribers": 277, - "stars": 48297, + "stars": 48304, "dependencies": 0 }, "name": "dayjs", @@ -110437,12 +111989,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "dayjs", "npm": { - "downloads": 124714076, - "weekDownloads": 23602302, + "downloads": 120469235, + "weekDownloads": 22808260, "size": 672352, "latestRelease": "1.11.18", "latestReleaseDate": "2025-08-30T03:30:48.541Z" @@ -110513,12 +112066,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "html-entities", "npm": { - "downloads": 97710635, - "weekDownloads": 18197904, + "downloads": 94513364, + "weekDownloads": 17540516, "size": 132312, "latestRelease": "2.6.0", "latestReleaseDate": "2025-03-30T15:40:10.885Z" @@ -110580,11 +112134,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1870195006, - "weekDownloads": 347987951, + "downloads": 1826163268, + "weekDownloads": 335313596, "size": 97743, "latestRelease": "7.7.3", "latestReleaseDate": "2025-10-07T18:00:51.643Z" @@ -110597,7 +112152,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.156, "topicSearchString": "npm-cli" }, { @@ -110623,10 +112178,10 @@ "updatedAt": "2025-10-16T15:09:02Z", "createdAt": "2019-09-10T19:23:58Z", "pushedAt": "2025-10-16T15:09:02Z", - "forks": 3477, - "issues": 64, + "forks": 3486, + "issues": 66, "subscribers": 214, - "stars": 47003, + "stars": 47040, "dependencies": 1 }, "name": "@tanstack/query-persist-client-core", @@ -110644,11 +112199,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2703818, - "weekDownloads": 511679, + "downloads": 2599073, + "weekDownloads": 495227, "size": 180643, "latestRelease": "5.91.4", "latestReleaseDate": "2025-10-16T15:15:34.495Z" @@ -110661,7 +112217,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.162, "topicSearchString": "" }, { @@ -110696,7 +112252,7 @@ "forks": 3, "issues": 1, "subscribers": 0, - "stars": 41, + "stars": 42, "dependencies": 0 }, "name": "@futurejj/react-native-visibility-sensor", @@ -110725,11 +112281,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 57853, - "weekDownloads": 20088, + "downloads": 47418, + "weekDownloads": 11547, "size": 59101, "latestRelease": "1.4.4", "latestReleaseDate": "2025-10-01T14:57:35.271Z" @@ -110739,7 +112296,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.545, + "popularity": 0.207, "topicSearchString": "react-native ios android visibility-sensor visibility sensor visibilitysensor in-view inview" }, { @@ -110788,12 +112345,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "jwt-decode", "npm": { - "downloads": 44613936, - "weekDownloads": 8390562, + "downloads": 42416443, + "weekDownloads": 8152550, "size": 13938, "latestRelease": "4.0.0", "latestReleaseDate": "2023-10-27T08:54:17.048Z" @@ -110805,7 +112363,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.163, "topicSearchString": "jwt browser dx-sdk" }, { @@ -110831,13 +112389,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-02-27T05:08:36Z", + "updatedAt": "2025-10-17T06:38:20Z", "createdAt": "2023-11-20T10:16:14Z", - "pushedAt": "2025-02-27T05:08:36Z", + "pushedAt": "2025-10-17T06:38:20Z", "forks": 38, - "issues": 24, + "issues": 21, "subscribers": 8, - "stars": 258, + "stars": 259, "dependencies": 1 }, "name": "@simform_solutions/react-native-audio-waveform", @@ -110869,22 +112427,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 10794, - "weekDownloads": 1631, - "size": 190105, - "latestRelease": "2.1.5", - "latestReleaseDate": "2025-02-27T06:20:32.769Z" + "downloads": 11236, + "weekDownloads": 1675, + "size": 190238, + "latestRelease": "2.1.6", + "latestReleaseDate": "2025-10-17T08:17:32.346Z" }, - "score": 41, + "score": 57, "matchingScoreModifiers": [ "Known", - "Not updated recently", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.128, + "popularity": 0.127, "topicSearchString": "react react-native typescript rn audio waveform audio-waveform audio-chat chat-audio audio-visualizer component javascript library" }, { @@ -110956,12 +112515,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-infinite-wheel-picker", "npm": { - "downloads": 1985, - "weekDownloads": 466, + "downloads": 1955, + "weekDownloads": 437, "size": 71978, "latestRelease": "1.0.0", "latestReleaseDate": "2024-08-07T06:57:00.477Z" @@ -110971,7 +112531,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.2, + "popularity": 0.19, "topicSearchString": "react react-native typescript rn infinite-picker infinite-wheel-picker wheel-picker infinite-wheel infinite wheel picker scroll-picker scroll infinite-scroll infinite-scroll-picker infinite-scroll-wheel-picker component android ios react-component library selection wheelpicker" }, { @@ -111041,12 +112601,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-graph-kit", "npm": { - "downloads": 49, - "weekDownloads": 9, + "downloads": 48, + "weekDownloads": 13, "size": 190111, "latestRelease": "1.0.1", "latestReleaseDate": "2023-12-27T13:07:07.720Z" @@ -111056,7 +112617,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.514, "topicSearchString": "react react-native typescript rn chart graph visualization line-chart bar-chart skia data-visualization open-source javascript library animations bar-charts charts d3-scale graphs line-charts" }, { @@ -111124,12 +112685,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sticky-table", "npm": { - "downloads": 1841, - "weekDownloads": 101, + "downloads": 2054, + "weekDownloads": 122, "size": 73503, "latestRelease": "1.0.0", "latestReleaseDate": "2023-12-26T15:43:30.332Z" @@ -111139,7 +112701,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.047, + "popularity": 0.051, "topicSearchString": "react react-native typescript rn sticky-table table sticky reanimated component android ios reanimated-component sticky-animated-table gesture-handler animation react-component animated-sticky-table tableview javascript" }, { @@ -111219,12 +112781,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-tree-selection", "npm": { - "downloads": 615, - "weekDownloads": 103, + "downloads": 587, + "weekDownloads": 130, "size": 64585, "latestRelease": "1.0.1", "latestReleaseDate": "2023-07-17T11:09:34.756Z" @@ -111234,7 +112797,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.357, + "popularity": -1.312, "topicSearchString": "react react-native typescript rn selection tree-selection select-list tree tree-view nested-tree nested-tree-dropdown dropdown nested-dropdown tree-dropdown react-tree tree-ui ui-components android ios hierarchical hierarchical-view hierarchical-dropdown component library select tree-select tree-structure" }, { @@ -111295,13 +112858,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-photos-gallery", "npm": { - "downloads": 160, - "weekDownloads": 17, + "downloads": 197, + "weekDownloads": 24, "size": 116143, "latestRelease": "0.0.1", "latestReleaseDate": "2023-05-15T12:16:34.559Z" @@ -111311,7 +112875,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.408, + "popularity": -1.396, "topicSearchString": "react react-native typescript rn photo-gallery gallery photo reanimated component library photos" }, { @@ -111383,13 +112947,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-images-preview", "npm": { - "downloads": 1986, - "weekDownloads": 474, + "downloads": 1810, + "weekDownloads": 354, "size": 80884, "latestRelease": "0.0.1", "latestReleaseDate": "2023-05-25T05:21:30.526Z" @@ -111399,7 +112964,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.547, + "popularity": -0.583, "topicSearchString": "react react-native typescript rn photo reanimated component react-component ios android gallery pinch pinch-to-zoom mobile image-zoom image photo-preview image-preview component-library imagepreview images reanimated3" }, { @@ -111462,12 +113027,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-radial-slider", "npm": { - "downloads": 6818, - "weekDownloads": 1303, + "downloads": 6478, + "weekDownloads": 1351, "size": 123932, "latestRelease": "1.1.0", "latestReleaseDate": "2024-02-20T13:07:49.093Z" @@ -111477,7 +113043,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.177, "topicSearchString": "react react-native typescript slider radial radial-slider circular-slider rn speedometer meter arc-slider circle-slider round-slider" }, { @@ -111540,13 +113106,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-country-code-select", "npm": { - "downloads": 144, - "weekDownloads": 26, + "downloads": 132, + "weekDownloads": 21, "size": 1208716, "latestRelease": "0.0.3", "latestReleaseDate": "2022-07-12T08:23:15.646Z" @@ -111556,7 +113123,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.342, + "popularity": -1.365, "topicSearchString": "react react-native typescript country-code select-code country calling-code rn country-codes country-flags country-list country-picker countrycodes countrynames" }, { @@ -111622,13 +113189,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-animation-catalog", "npm": { - "downloads": 31, - "weekDownloads": 5, + "downloads": 40, + "weekDownloads": 8, "size": 1067086, "latestRelease": "0.0.2", "latestReleaseDate": "2022-08-04T14:11:34.310Z" @@ -111638,7 +113206,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.357, + "popularity": -1.322, "topicSearchString": "react react-native typescript rn animation animated-component components animated-components reanimated reanimated2" }, { @@ -111700,12 +113268,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-spinner-button", "npm": { - "downloads": 1110, - "weekDownloads": 236, + "downloads": 1316, + "weekDownloads": 208, "size": 164599, "latestRelease": "1.4.3", "latestReleaseDate": "2024-04-16T12:56:11.112Z" @@ -111715,7 +113284,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.181, + "popularity": 0.135, "topicSearchString": "spinner-button spinner button button-with-spinner button-with-loader button-with-activityindicator loader react-native buttons ui-components ui-kitten loading loading-animations" }, { @@ -111742,7 +113311,7 @@ "forks": 16, "issues": 22, "subscribers": 7, - "stars": 20, + "stars": 21, "dependencies": 0 }, "name": "react-native-ttlock", @@ -111765,12 +113334,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-ttlock", "npm": { - "downloads": 1469, - "weekDownloads": 360, + "downloads": 1381, + "weekDownloads": 259, "size": 646418, "latestRelease": "2.2.6", "latestReleaseDate": "2025-09-15T08:52:30.210Z" @@ -111779,7 +113349,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.041, + "popularity": -0.09, "topicSearchString": "react-native ios android" }, { @@ -111843,12 +113413,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-toastier", "npm": { - "downloads": 4960, - "weekDownloads": 984, + "downloads": 4925, + "weekDownloads": 1247, "size": 98812, "latestRelease": "2.0.4", "latestReleaseDate": "2025-08-06T03:57:27.069Z" @@ -111857,7 +113428,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.081, + "popularity": -0.035, "topicSearchString": "toast toasts component components elements element toastier toastify toastiers short-message toast-message snackbar react-native notifications alerts animated animation message" }, { @@ -111885,9 +113456,9 @@ "createdAt": "2017-01-17T17:26:46Z", "pushedAt": "2025-10-10T09:08:19Z", "forks": 416, - "issues": 40, + "issues": 41, "subscribers": 32, - "stars": 5423, + "stars": 5425, "dependencies": 2 }, "name": "@lingui/core", @@ -111913,11 +113484,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2517563, - "weekDownloads": 457171, + "downloads": 2461124, + "weekDownloads": 447766, "size": 54099, "latestRelease": "5.5.1", "latestReleaseDate": "2025-10-10T09:43:49.461Z" @@ -111930,7 +113502,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.155, "topicSearchString": "i18n i10n i9n internationalization localization translation multilingual" }, { @@ -111954,10 +113526,10 @@ "updatedAt": "2025-04-24T02:04:44Z", "createdAt": "2013-05-24T16:15:54Z", "pushedAt": "2025-04-24T02:04:44Z", - "forks": 48917, - "issues": 797, - "subscribers": 6701, - "stars": 239815, + "forks": 48930, + "issues": 801, + "subscribers": 6699, + "stars": 239873, "dependencies": 0 }, "name": "react-compiler-runtime", @@ -111975,12 +113547,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-compiler-runtime", "npm": { - "downloads": 3492872, - "weekDownloads": 614903, + "downloads": 3408618, + "weekDownloads": 651118, "size": 45698, "latestRelease": "1.0.0", "latestReleaseDate": "2025-10-07T19:19:07.561Z" @@ -111993,7 +113566,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.162, "topicSearchString": "" }, { @@ -112048,12 +113621,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "rn-date-format", "npm": { - "downloads": 25, - "weekDownloads": 8, + "downloads": 31, + "weekDownloads": 6, "size": 48672, "latestRelease": "1.0.1", "latestReleaseDate": "2025-01-07T13:49:48.445Z" @@ -112062,7 +113636,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.68, + "popularity": -0.829, "topicSearchString": "react-native device time-format hour-format 12-hour 24-hour" }, { @@ -112121,12 +113695,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "native-notify", "npm": { - "downloads": 3281, - "weekDownloads": 655, + "downloads": 3655, + "weekDownloads": 535, "size": 19546, "latestRelease": "4.0.9", "latestReleaseDate": "2024-12-09T14:39:36.919Z" @@ -112136,7 +113711,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.08, + "popularity": -0.126, "topicSearchString": "expo push notifications react native notify expo-push-notifications expo-push-notification push-notifications push-notification expo-push-notifications-react-native expo-push-notification-react-native native-notify native-notify-push-notifications" }, { @@ -112185,12 +113760,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-media-kit", "npm": { - "downloads": 42, - "weekDownloads": 16, + "downloads": 39, + "weekDownloads": 8, "size": 145564, "latestRelease": "0.1.0", "latestReleaseDate": "2025-05-08T10:22:28.953Z" @@ -112199,7 +113775,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.644, + "popularity": -0.822, "topicSearchString": "react-native ios android" }, { @@ -112265,12 +113841,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-irano", "npm": { - "downloads": 834, - "weekDownloads": 162, + "downloads": 797, + "weekDownloads": 109, "size": 112491, "latestRelease": "1.1.1", "latestReleaseDate": "2024-12-26T22:23:12.127Z" @@ -112280,7 +113857,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.835, + "popularity": -0.883, "topicSearchString": "react-native toast notification cross-platform ios android toast-notification irano expo-irano alert" }, { @@ -112300,13 +113877,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-09T18:22:49Z", + "updatedAt": "2025-10-18T06:33:05Z", "createdAt": "2023-11-10T08:30:28Z", - "pushedAt": "2025-07-09T18:22:49Z", + "pushedAt": "2025-10-18T06:33:05Z", "forks": 20, - "issues": 17, - "subscribers": 12, - "stars": 462, + "issues": 16, + "subscribers": 11, + "stars": 463, "dependencies": 2 }, "name": "expo-share-extension", @@ -112332,22 +113909,24 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-share-extension", "npm": { - "downloads": 23146, - "weekDownloads": 3999, - "size": 1199473, - "latestRelease": "4.0.1", - "latestReleaseDate": "2025-07-09T18:22:17.586Z" + "downloads": 22422, + "weekDownloads": 3218, + "size": 1286557, + "latestRelease": "5.0.0", + "latestReleaseDate": "2025-10-18T06:33:03.058Z" }, - "score": 51, + "score": 57, "matchingScoreModifiers": [ "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.122, "topicSearchString": "react-native expo expo-share-extension exposhareextension ios share-extension" }, { @@ -112373,7 +113952,7 @@ "forks": 4, "issues": 1, "subscribers": 3, - "stars": 75, + "stars": 77, "dependencies": 0 }, "name": "@bacons/apple-colors", @@ -112395,11 +113974,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 2009, - "weekDownloads": 368, + "downloads": 2047, + "weekDownloads": 269, "size": 701939, "latestRelease": "0.0.8", "latestReleaseDate": "2024-11-20T21:42:53.932Z" @@ -112409,7 +113989,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.112, "topicSearchString": "react typescript" }, { @@ -112461,12 +114041,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "shadowlist", "npm": { - "downloads": 22, - "weekDownloads": 8, + "downloads": 92, + "weekDownloads": 9, "size": 1112128, "latestRelease": "0.4.25", "latestReleaseDate": "2025-05-09T13:51:21.160Z" @@ -112476,7 +114057,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.43, + "popularity": -0.664, "topicSearchString": "react-native ios android new-architecture" }, { @@ -112538,19 +114119,20 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-shiki-engine", "npm": { - "downloads": 40, - "weekDownloads": 12, + "downloads": 62, + "weekDownloads": 7, "size": 8610506, "latestRelease": "0.2.0", "latestReleaseDate": "2025-08-05T21:04:38.462Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.483, + "popularity": -0.65, "topicSearchString": "react-native ios android shiki oniguruma regex syntax-highlighting textmate turbo cpp javascript jsi native react" }, { @@ -112577,9 +114159,9 @@ "createdAt": "2023-12-18T19:19:05Z", "pushedAt": "2025-10-13T07:46:28Z", "forks": 19, - "issues": 52, + "issues": 48, "subscribers": 33, - "stars": 83, + "stars": 84, "dependencies": 0 }, "name": "@googlemaps/react-native-navigation-sdk", @@ -112609,11 +114191,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 5204, - "weekDownloads": 1421, + "downloads": 4937, + "weekDownloads": 1280, "size": 767178, "latestRelease": "0.11.0", "latestReleaseDate": "2025-10-13T07:50:55.013Z" @@ -112624,7 +114207,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.232, + "popularity": 0.22, "topicSearchString": "react-native ios android library google-navigation navigation-sdk navsdk google-maps-api google-maps-platform" }, { @@ -112649,7 +114232,7 @@ "forks": 84, "issues": 13, "subscribers": 16, - "stars": 565, + "stars": 566, "dependencies": 11 }, "name": "@matter/react-native", @@ -112673,11 +114256,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1636, - "weekDownloads": 283, + "downloads": 2041, + "weekDownloads": 301, "size": 281841, "latestRelease": "0.15.6", "latestReleaseDate": "2025-10-16T08:46:15.951Z" @@ -112688,7 +114272,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.125, "topicSearchString": "iot home-automation matter smart-device ble" }, { @@ -112740,11 +114324,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1545446, - "weekDownloads": 287884, + "downloads": 1483309, + "weekDownloads": 281877, "size": 1702120, "latestRelease": "4.5.1", "latestReleaseDate": "2024-12-14T00:45:20.293Z" @@ -112755,7 +114340,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.162, "topicSearchString": "typescript javascript i18n localization internationalization" }, { @@ -112782,7 +114367,7 @@ "forks": 93, "issues": 10, "subscribers": 12, - "stars": 2339, + "stars": 2342, "dependencies": 1 }, "name": "twrnc", @@ -112805,11 +114390,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 327927, - "weekDownloads": 61677, + "downloads": 312736, + "weekDownloads": 72003, "size": 261740, "latestRelease": "4.10.1", "latestReleaseDate": "2025-09-29T13:52:32.902Z" @@ -112821,7 +114407,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.196, "topicSearchString": "tailwind tailwindcss react-native classnames" }, { @@ -112870,11 +114456,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "useapihook-dexterverse", "npm": { - "downloads": 0, + "downloads": 44, "weekDownloads": 0, "size": 26321, "latestRelease": "2.3.0", @@ -112940,20 +114527,21 @@ "newArchitecture": true, "isArchived": true, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "unmaintained": true, "npmPkg": "react-native-audio-playback", "npm": { - "downloads": 336, - "weekDownloads": 7, + "downloads": 386, + "weekDownloads": 40, "size": 208181, "latestRelease": "1.1.3", "latestReleaseDate": "2025-04-19T06:36:29.589Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -1.482, + "popularity": -1.411, "topicSearchString": "react-native ios android low-latency audio sound high-performance" }, { @@ -113036,12 +114624,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-tree-multi-select", "npm": { - "downloads": 1757, - "weekDownloads": 295, + "downloads": 1900, + "weekDownloads": 263, "size": 201640, "latestRelease": "2.0.2", "latestReleaseDate": "2025-08-19T02:43:06.134Z" @@ -113050,7 +114639,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.118, "topicSearchString": "react-native ios android react-component treeview tree-view tree-select checkbox react-tree-view react-tree-select react-checkbox-tree checkbox-list tree-checkbox tree-structure hierarchical-list collapsible-list nested-list multi-select dropdown-menu expandable-list customizable expo web tree checkbox-treeview" }, { @@ -113113,12 +114702,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-session-storage", "npm": { - "downloads": 2036, - "weekDownloads": 348, + "downloads": 2020, + "weekDownloads": 321, "size": 49759, "latestRelease": "2.0.1", "latestReleaseDate": "2025-05-17T20:08:05.935Z" @@ -113127,7 +114717,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.105, + "popularity": -0.115, "topicSearchString": "react-native session-storage ios android async-storage storage asyn-storage volative-storage" }, { @@ -113152,7 +114742,7 @@ "updatedAt": "2024-11-16T09:12:36Z", "createdAt": "2015-10-24T17:25:19Z", "pushedAt": "2024-11-16T09:12:36Z", - "forks": 94, + "forks": 95, "issues": 46, "subscribers": 7, "stars": 237, @@ -113187,12 +114777,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-zeroconf", "npm": { - "downloads": 115326, - "weekDownloads": 22598, + "downloads": 109866, + "weekDownloads": 23855, "size": 120997, "latestRelease": "0.13.8", "latestReleaseDate": "2023-05-18T17:10:49.468Z" @@ -113203,7 +114794,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.185, "topicSearchString": "react-component react-native zeroconf bonjour avahi network lan ios android network-discovery discovery broadcast react" }, { @@ -113267,11 +114858,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 502, - "weekDownloads": 42, + "downloads": 484, + "weekDownloads": 44, "size": 470157, "latestRelease": "0.22.1", "latestReleaseDate": "2025-10-14T12:48:47.087Z" @@ -113281,7 +114873,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.929, + "popularity": -0.922, "topicSearchString": "react-native expo fishjam fishjamcloud membranewebrtc webrtc streaming video audio" }, { @@ -113313,7 +114905,7 @@ "forks": 22, "issues": 2, "subscribers": 8, - "stars": 935, + "stars": 936, "dependencies": 0 }, "name": "react-native-sheet-transitions", @@ -113336,12 +114928,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sheet-transitions", "npm": { - "downloads": 3009, - "weekDownloads": 1127, + "downloads": 2418, + "weekDownloads": 958, "size": 49230, "latestRelease": "0.1.2", "latestReleaseDate": "2024-12-08T00:06:45.089Z" @@ -113353,7 +114946,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.318, + "popularity": 0.337, "topicSearchString": "react-native sheet transitions animation" }, { @@ -113410,11 +115003,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 350, - "weekDownloads": 85, + "downloads": 423, + "weekDownloads": 86, "size": 13038, "latestRelease": "3.0.0", "latestReleaseDate": "2024-12-11T20:42:19.706Z" @@ -113424,7 +115018,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.793, + "popularity": -0.826, "topicSearchString": "react-native animated-ellipsis rn-animated-ellipsis loading-animation" }, { @@ -113450,7 +115044,7 @@ "forks": 2, "issues": 2, "subscribers": 2, - "stars": 43, + "stars": 44, "dependencies": 0 }, "name": "react-native-fs-turbo", @@ -113485,19 +115079,20 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fs-turbo", "npm": { - "downloads": 1334, - "weekDownloads": 155, + "downloads": 1682, + "weekDownloads": 143, "size": 459484, "latestRelease": "0.3.7", "latestReleaseDate": "2025-09-04T22:10:21.751Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": 0.099, + "popularity": 0.072, "topicSearchString": "react native fs filesystem javascript typescript android ios library jsi turbo turbomodule download upload file-transfer" }, { @@ -113523,7 +115118,7 @@ "forks": 29, "issues": 24, "subscribers": 11, - "stars": 398, + "stars": 401, "dependencies": 0 }, "name": "uniffi-bindgen-react-native", @@ -113545,12 +115140,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "uniffi-bindgen-react-native", "npm": { - "downloads": 5102, - "weekDownloads": 384, + "downloads": 5662, + "weekDownloads": 641, "size": 1181989, "latestRelease": "0.29.3-1", "latestReleaseDate": "2025-07-30T15:31:54.419Z" @@ -113561,7 +115157,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.064, + "popularity": 0.096, "topicSearchString": "bindgen react-native rust-lang" }, { @@ -113622,11 +115218,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 761, - "weekDownloads": 87, + "downloads": 716, + "weekDownloads": 90, "size": 132198, "latestRelease": "0.2.0", "latestReleaseDate": "2025-02-02T20:20:12.764Z" @@ -113636,7 +115233,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.653, + "popularity": -0.643, "topicSearchString": "react-native ios android drag select dragselect drag-select multiselect multi-select gesture reanimated" }, { @@ -113685,11 +115282,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "useutils-dexterverse", "npm": { - "downloads": 38, + "downloads": 63, "weekDownloads": 0, "size": 29000, "latestRelease": "1.1.9", @@ -113726,13 +115324,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-16T10:33:19Z", + "updatedAt": "2025-10-17T16:35:16Z", "createdAt": "2024-06-12T10:21:40Z", - "pushedAt": "2025-10-16T10:33:19Z", + "pushedAt": "2025-10-17T16:35:16Z", "forks": 58, - "issues": 12, + "issues": 13, "subscribers": 17, - "stars": 1431, + "stars": 1435, "dependencies": 0 }, "name": "react-native-nitro-modules", @@ -113772,12 +115370,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-nitro-modules", "npm": { - "downloads": 340553, - "weekDownloads": 50858, + "downloads": 348240, + "weekDownloads": 48175, "size": 474292, "latestRelease": "0.30.2", "latestReleaseDate": "2025-10-16T10:32:22.971Z" @@ -113788,7 +115387,7 @@ "Known", "Recently updated" ], - "popularity": 0.127, + "popularity": 0.118, "topicSearchString": "react-native nitro ios android visionos tvos macos cpp framework react swift native modules fast jsi turbo scaffold template views" }, { @@ -113818,9 +115417,9 @@ "createdAt": "2024-06-12T10:21:40Z", "pushedAt": "2025-10-16T10:33:19Z", "forks": 58, - "issues": 12, + "issues": 13, "subscribers": 17, - "stars": 1431, + "stars": 1435, "dependencies": 5 }, "name": "nitrogen", @@ -113839,12 +115438,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "nitrogen", "npm": { - "downloads": 18672, - "weekDownloads": 2689, + "downloads": 19345, + "weekDownloads": 3371, "size": 789043, "latestRelease": "0.30.2", "latestReleaseDate": "2025-10-16T10:32:53.895Z" @@ -113856,7 +115456,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.122, + "popularity": 0.148, "topicSearchString": "" }, { @@ -113919,10 +115519,11 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 40, + "downloads": 80, "weekDownloads": 0, "size": 91189, "latestRelease": "0.8.0", @@ -113994,12 +115595,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-in-app-updates", "npm": { - "downloads": 2341, - "weekDownloads": 557, + "downloads": 2135, + "weekDownloads": 442, "size": 23621, "latestRelease": "0.2.2", "latestReleaseDate": "2025-06-30T08:28:58.666Z" @@ -114008,7 +115610,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.047, + "popularity": -0.074, "topicSearchString": "react-native android in-app-updates update-flow flexible-update immediate-update app-update mobile-updates lightweight-library android-app in-app-update in-app-update-android" }, { @@ -114063,11 +115665,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-serialport-windows", "npm": { - "downloads": 8, + "downloads": 6, "weekDownloads": 2, "size": 53928, "latestRelease": "1.0.1", @@ -114140,12 +115743,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-install-unknown-apps", "npm": { - "downloads": 58, - "weekDownloads": 10, + "downloads": 59, + "weekDownloads": 8, "size": 23118, "latestRelease": "0.1.1", "latestReleaseDate": "2024-12-26T01:13:42.388Z" @@ -114155,7 +115759,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.846, + "popularity": -0.877, "topicSearchString": "react-native android install-unknown-apps apk-installer permissions android-permissions install-external-apps unknown-sources apk-manager app-install-permission external-apk-install android-apk-install mobile-app-permissions android-app" }, { @@ -114206,11 +115810,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-urovo", "npm": { - "downloads": 738, + "downloads": 773, "weekDownloads": 10, "size": 376440, "latestRelease": "1.2.0-beta.4", @@ -114220,7 +115825,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.988, + "popularity": -0.989, "topicSearchString": "react-native android urovo" }, { @@ -114276,12 +115881,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-haptics", "npm": { - "downloads": 3661, - "weekDownloads": 466, + "downloads": 3704, + "weekDownloads": 434, "size": 93632, "latestRelease": "0.1.0", "latestReleaseDate": "2025-02-26T10:04:09.322Z" @@ -114291,7 +115897,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.108, + "popularity": 0.1, "topicSearchString": "react-native nitro nitro-module haptics haptic-feedback reanimated worklet" }, { @@ -114350,10 +115956,11 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 9, + "downloads": 66, "weekDownloads": 0, "size": 33192, "latestRelease": "0.1.2", @@ -114412,12 +116019,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-quick-aws4", "npm": { - "downloads": 3, + "downloads": 37, "weekDownloads": 0, "size": 20048, "latestRelease": "1.0.3", @@ -114479,12 +116087,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-bluetooth-state-manager", "npm": { - "downloads": 49046, - "weekDownloads": 9000, + "downloads": 46389, + "weekDownloads": 8369, "size": 113784, "latestRelease": "2.0.4", "latestReleaseDate": "2025-09-12T11:14:50.131Z" @@ -114493,7 +116102,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.153, "topicSearchString": "react-native react native bluetooth state manager" }, { @@ -114520,10 +116129,10 @@ "updatedAt": "2025-10-13T09:55:09Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-13T09:55:09Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-video", @@ -114547,12 +116156,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-video", "npm": { - "downloads": 722070, - "weekDownloads": 139288, + "downloads": 708814, + "weekDownloads": 135306, "size": 1256729, "latestRelease": "3.0.11", "latestReleaseDate": "2025-09-10T18:40:10.405Z" @@ -114566,7 +116176,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.162, "topicSearchString": "react-native expo video player" }, { @@ -114615,12 +116225,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-timezone", "npm": { - "downloads": 10062, - "weekDownloads": 2013, + "downloads": 9677, + "weekDownloads": 1715, "size": 47769, "latestRelease": "3.1.0", "latestReleaseDate": "2024-12-14T09:14:17.242Z" @@ -114629,7 +116240,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": 0.17, + "popularity": 0.151, "topicSearchString": "" }, { @@ -114679,19 +116290,20 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-overflow-row", "npm": { - "downloads": 75, - "weekDownloads": 26, + "downloads": 80, + "weekDownloads": 24, "size": 754457, "latestRelease": "1.0.9", "latestReleaseDate": "2025-06-24T07:20:40.633Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.694, + "popularity": -0.733, "topicSearchString": "react-native ios android" }, { @@ -114747,12 +116359,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-use-form", "npm": { - "downloads": 117, - "weekDownloads": 19, + "downloads": 273, + "weekDownloads": 20, "size": 294775, "latestRelease": "0.17.3", "latestReleaseDate": "2025-04-15T22:07:40.261Z" @@ -114762,7 +116375,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.609, + "popularity": -0.688, "topicSearchString": "react-native ios android" }, { @@ -114826,12 +116439,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-paper-tabs", "npm": { - "downloads": 23265, - "weekDownloads": 4182, + "downloads": 22314, + "weekDownloads": 4081, "size": 968856, "latestRelease": "0.11.4", "latestReleaseDate": "2025-04-12T11:48:56.500Z" @@ -114841,7 +116455,7 @@ "Known", "Not updated recently" ], - "popularity": 0.153, + "popularity": 0.155, "topicSearchString": "react-native ios android material-design tabs viewpager web react material paper material-design-tabs" }, { @@ -114901,19 +116515,20 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-ridge-navigation", "npm": { - "downloads": 81, - "weekDownloads": 27, + "downloads": 320, + "weekDownloads": 22, "size": 1738745, "latestRelease": "3.0.16", "latestReleaseDate": "2025-08-04T21:48:06.783Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.466, + "popularity": -0.691, "topicSearchString": "react-native ios android react navigation web typescript" }, { @@ -114934,7 +116549,7 @@ "updatedAt": "2022-02-08T04:03:57Z", "createdAt": "2017-12-20T02:30:08Z", "pushedAt": "2022-02-08T04:03:57Z", - "forks": 651, + "forks": 652, "issues": 404, "subscribers": 14, "stars": 3039, @@ -114962,13 +116577,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-chart-kit", "npm": { - "downloads": 397783, - "weekDownloads": 74882, + "downloads": 391725, + "weekDownloads": 74875, "size": 399072, "latestRelease": "6.12.0", "latestReleaseDate": "2022-02-08T04:08:27.067Z" @@ -114982,7 +116598,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.588, "topicSearchString": "chart chart-kit react-native expo charts graphs" }, { @@ -115006,10 +116622,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2222, - "issues": 57, - "subscribers": 163, - "stars": 12104, + "forks": 2223, + "issues": 58, + "subscribers": 164, + "stars": 12106, "dependencies": 0 }, "name": "@react-native-firebase/installations", @@ -115032,11 +116648,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 92483, - "weekDownloads": 15401, + "downloads": 90684, + "weekDownloads": 15888, "size": 77491, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:56.395Z" @@ -115049,7 +116666,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.149, "topicSearchString": "react react-native firebase installations" }, { @@ -115068,9 +116685,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-13T12:58:39Z", + "updatedAt": "2025-10-17T09:41:09Z", "createdAt": "2021-05-18T15:24:40Z", - "pushedAt": "2025-10-13T12:58:39Z", + "pushedAt": "2025-10-17T09:41:09Z", "forks": 3, "issues": 12, "subscribers": 7, @@ -115097,11 +116714,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 12574, - "weekDownloads": 2099, + "downloads": 12188, + "weekDownloads": 1970, "size": 416448, "latestRelease": "2.16.0", "latestReleaseDate": "2025-10-10T16:35:50.137Z" @@ -115112,7 +116730,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.108, + "popularity": -0.113, "topicSearchString": "react-native ios android" }, { @@ -115169,12 +116787,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-spellchecker", "npm": { - "downloads": 21, - "weekDownloads": 12, + "downloads": 27, + "weekDownloads": 14, "size": 6698535, "latestRelease": "1.0.2", "latestReleaseDate": "2025-01-09T01:23:34.178Z" @@ -115184,7 +116803,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.4, + "popularity": -0.533, "topicSearchString": "react-native expo expo-spellchecker expospellchecker spellchecker dictionary word-completion word-prediction" }, { @@ -115236,11 +116855,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 598, - "weekDownloads": 101, + "downloads": 650, + "weekDownloads": 51, "size": 121256, "latestRelease": "2.5.5", "latestReleaseDate": "2025-10-10T15:53:27.027Z" @@ -115251,7 +116871,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.683, "topicSearchString": "react-native ai-chatbot android app-framework chat chatbot cross-platform ios mobile react" }, { @@ -115277,13 +116897,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-15T19:17:24Z", + "updatedAt": "2025-10-17T02:53:01Z", "createdAt": "2018-03-03T21:21:53Z", - "pushedAt": "2025-10-15T19:17:24Z", + "pushedAt": "2025-10-17T02:53:01Z", "forks": 1238, - "issues": 209, + "issues": 207, "subscribers": 71, - "stars": 11109, + "stars": 11112, "dependencies": 6 }, "name": "@reduxjs/toolkit", @@ -115311,14 +116931,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 28259710, - "weekDownloads": 5209759, - "size": 6842520, - "latestRelease": "2.9.0", - "latestReleaseDate": "2025-09-03T01:54:49.350Z" + "downloads": 27545869, + "weekDownloads": 5153724, + "size": 6869116, + "latestRelease": "2.9.1", + "latestReleaseDate": "2025-10-17T02:52:30.645Z" }, "score": 86, "matchingScoreModifiers": [ @@ -115329,7 +116950,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.159, "topicSearchString": "redux react starter toolkit reducer slice immer immutable redux-toolkit" }, { @@ -115383,12 +117004,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-redux", "npm": { - "downloads": 49163874, - "weekDownloads": 9127607, + "downloads": 47730105, + "weekDownloads": 8927422, "size": 822524, "latestRelease": "9.2.0", "latestReleaseDate": "2024-12-10T23:06:45.755Z" @@ -115400,7 +117022,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.159, "topicSearchString": "react reactjs redux" }, { @@ -115428,10 +117050,10 @@ "updatedAt": "2025-10-15T15:49:09Z", "createdAt": "2015-05-29T23:53:15Z", "pushedAt": "2025-10-15T15:49:09Z", - "forks": 14856, + "forks": 14860, "issues": 39, "subscribers": 1255, - "stars": 61357, + "stars": 61360, "dependencies": 0 }, "name": "redux", @@ -115461,12 +117083,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "redux", "npm": { - "downloads": 66335897, - "weekDownloads": 12249125, + "downloads": 64397734, + "weekDownloads": 12027843, "size": 289804, "latestRelease": "5.0.1", "latestReleaseDate": "2023-12-23T16:47:28.099Z" @@ -115479,7 +117102,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.159, "topicSearchString": "redux reducer state predictable functional immutable hot live replay flux elm" }, { @@ -115529,12 +117152,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "reselect", "npm": { - "downloads": 54849067, - "weekDownloads": 10178474, + "downloads": 53184386, + "weekDownloads": 9961927, "size": 646106, "latestRelease": "5.1.1", "latestReleaseDate": "2024-06-01T22:16:06.224Z" @@ -115547,7 +117171,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.159, "topicSearchString": "react redux memoized-selectors" }, { @@ -115575,7 +117199,7 @@ "forks": 1021, "issues": 0, "subscribers": 167, - "stars": 17752, + "stars": 17751, "dependencies": 0 }, "name": "redux-thunk", @@ -115599,12 +117223,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "redux-thunk", "npm": { - "downloads": 36497741, - "weekDownloads": 6733382, + "downloads": 35500803, + "weekDownloads": 6638266, "size": 26757, "latestRelease": "3.1.0", "latestReleaseDate": "2023-12-04T13:50:37.326Z" @@ -115617,7 +117242,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.159, "topicSearchString": "redux thunk middleware redux-middleware flux" }, { @@ -115643,9 +117268,9 @@ "createdAt": "2012-02-17T14:19:43Z", "pushedAt": "2025-10-01T19:14:40Z", "forks": 11945, - "issues": 3757, + "issues": 3758, "subscribers": 1346, - "stars": 75722, + "stars": 75734, "dependencies": 1 }, "name": "@fortawesome/fontawesome-svg-core", @@ -115670,11 +117295,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8571356, - "weekDownloads": 1606278, + "downloads": 8292089, + "weekDownloads": 1564039, "size": 438956, "latestRelease": "7.1.0", "latestReleaseDate": "2025-10-01T19:33:58.264Z" @@ -115688,7 +117314,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.16, "topicSearchString": "font awesome fontawesome icon svg bootstrap" }, { @@ -115713,9 +117339,9 @@ "createdAt": "2012-02-17T14:19:43Z", "pushedAt": "2025-10-01T19:14:40Z", "forks": 11945, - "issues": 3757, + "issues": 3758, "subscribers": 1346, - "stars": 75722, + "stars": 75734, "dependencies": 1 }, "name": "@fortawesome/free-brands-svg-icons", @@ -115733,11 +117359,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2804355, - "weekDownloads": 518145, + "downloads": 2729669, + "weekDownloads": 505201, "size": 2251366, "latestRelease": "7.1.0", "latestReleaseDate": "2025-10-01T19:39:12.619Z" @@ -115776,9 +117403,9 @@ "createdAt": "2012-02-17T14:19:43Z", "pushedAt": "2025-10-01T19:14:40Z", "forks": 11945, - "issues": 3757, + "issues": 3758, "subscribers": 1346, - "stars": 75722, + "stars": 75734, "dependencies": 1 }, "name": "@fortawesome/free-regular-svg-icons", @@ -115796,11 +117423,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4192858, - "weekDownloads": 787209, + "downloads": 4053936, + "weekDownloads": 764075, "size": 698777, "latestRelease": "7.1.0", "latestReleaseDate": "2025-10-01T19:38:48.790Z" @@ -115839,9 +117467,9 @@ "createdAt": "2012-02-17T14:19:43Z", "pushedAt": "2025-10-01T19:14:40Z", "forks": 11945, - "issues": 3757, + "issues": 3758, "subscribers": 1346, - "stars": 75722, + "stars": 75734, "dependencies": 1 }, "name": "@fortawesome/free-solid-svg-icons", @@ -115859,11 +117487,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8213891, - "weekDownloads": 1543061, + "downloads": 7947261, + "weekDownloads": 1500400, "size": 5063436, "latestRelease": "7.1.0", "latestReleaseDate": "2025-10-01T19:38:23.286Z" @@ -115934,12 +117563,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-motion-tabs", "npm": { - "downloads": 467, - "weekDownloads": 11, + "downloads": 490, + "weekDownloads": 12, "size": 72446, "latestRelease": "1.0.12", "latestReleaseDate": "2025-01-03T12:27:43.896Z" @@ -115948,7 +117578,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.73, + "popularity": -0.729, "topicSearchString": "react-native ios android bottom-tabs react navigation screens reactnative typescript expo" }, { @@ -115974,7 +117604,7 @@ "forks": 65, "issues": 12, "subscribers": 8, - "stars": 566, + "stars": 568, "dependencies": 1 }, "name": "react-native-ota-hot-update", @@ -116004,12 +117634,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-ota-hot-update", "npm": { - "downloads": 8690, - "weekDownloads": 1651, + "downloads": 8542, + "weekDownloads": 1598, "size": 248478, "latestRelease": "2.3.4", "latestReleaseDate": "2025-09-01T08:41:28.349Z" @@ -116019,7 +117650,7 @@ "Known", "Recently updated" ], - "popularity": 0.162, + "popularity": 0.159, "topicSearchString": "hot-update ota code-push update hotupdate codepush ota-hot-update custom-ota rn-hotupdate" }, { @@ -116070,12 +117701,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-passkey", "npm": { - "downloads": 130954, - "weekDownloads": 25791, + "downloads": 129015, + "weekDownloads": 21744, "size": 123279, "latestRelease": "3.3.1", "latestReleaseDate": "2025-10-02T22:17:44.792Z" @@ -116086,7 +117718,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.143, "topicSearchString": "react-native ios android passkey authentication auth" }, { @@ -116139,11 +117771,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 19072, - "weekDownloads": 3051, + "downloads": 18436, + "weekDownloads": 3353, "size": 65190, "latestRelease": "4.3.32", "latestReleaseDate": "2025-10-15T19:00:54.705Z" @@ -116153,7 +117786,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.114, + "popularity": -0.095, "topicSearchString": "react-native ios android mcumgr" }, { @@ -116192,7 +117825,7 @@ "forks": 29, "issues": 0, "subscribers": 6, - "stars": 95, + "stars": 96, "dependencies": 2 }, "name": "react-native-theoplayer", @@ -116219,12 +117852,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-theoplayer", "npm": { - "downloads": 30420, - "weekDownloads": 7090, + "downloads": 27919, + "weekDownloads": 6604, "size": 2592743, "latestRelease": "10.1.0", "latestReleaseDate": "2025-10-06T13:40:58.984Z" @@ -116234,7 +117868,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.198, + "popularity": 0.201, "topicSearchString": "react-native theoplayer ios android video video-player video-streaming" }, { @@ -116257,13 +117891,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-14T01:46:05Z", + "updatedAt": "2025-10-18T08:03:52Z", "createdAt": "2023-10-22T15:56:45Z", - "pushedAt": "2025-10-14T01:46:05Z", + "pushedAt": "2025-10-18T08:03:52Z", "forks": 91, - "issues": 34, + "issues": 35, "subscribers": 11, - "stars": 1050, + "stars": 1055, "dependencies": 4 }, "name": "@hot-updater/react-native", @@ -116291,14 +117925,15 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npm": { - "downloads": 25189, - "weekDownloads": 4741, + "downloads": 24268, + "weekDownloads": 4912, "size": 299648, - "latestRelease": "0.20.13", - "latestReleaseDate": "2025-10-14T01:48:15.992Z" + "latestRelease": "0.20.14", + "latestReleaseDate": "2025-10-18T08:05:58.272Z" }, "score": 76, "matchingScoreModifiers": [ @@ -116306,7 +117941,7 @@ "Known", "Recently updated" ], - "popularity": 0.16, + "popularity": 0.172, "topicSearchString": "react-native code-push code-push eas eas-update expo expo-update self-hosted" }, { @@ -116363,11 +117998,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-trendy", "npm": { - "downloads": 44, + "downloads": 70, "weekDownloads": 0, "size": 1848827, "latestRelease": "1.1.0", @@ -116428,12 +118064,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-health-connect", "npm": { - "downloads": 19430, - "weekDownloads": 3530, + "downloads": 18077, + "weekDownloads": 3407, "size": 13238, "latestRelease": "0.1.1", "latestReleaseDate": "2024-07-31T17:07:32.223Z" @@ -116443,7 +118080,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.096, + "popularity": -0.09, "topicSearchString": "react-native expo expo-health-connect expohealthconnect" }, { @@ -116467,9 +118104,9 @@ "createdAt": "2024-02-20T00:14:38Z", "pushedAt": "2025-07-13T21:48:15Z", "forks": 10, - "issues": 4, + "issues": 3, "subscribers": 5, - "stars": 390, + "stars": 391, "dependencies": 1 }, "name": "xior", @@ -116513,12 +118150,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "xior", "npm": { - "downloads": 85181, - "weekDownloads": 14243, + "downloads": 85751, + "weekDownloads": 15786, "size": 231185, "latestRelease": "0.7.8", "latestReleaseDate": "2025-04-09T22:41:39.323Z" @@ -116528,7 +118166,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.156, "topicSearchString": "fetch fetch-wrapper axios axios-fetch axios-alternatives xior fetch-plugins tauri plugins http edge-runtime https network url uri mock dedupe promise request error-retry request-cache request-throttle axios-api typescript ajax" }, { @@ -116581,11 +118219,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 505410, - "weekDownloads": 86598, + "downloads": 463909, + "weekDownloads": 100570, "size": 83684, "latestRelease": "6.1.1", "latestReleaseDate": "2025-10-03T07:07:25.969Z" @@ -116596,7 +118235,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.184, "topicSearchString": "arraybuffer browser browserify buffer compatible dataview uint8array react-native" }, { @@ -116654,11 +118293,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 36258, - "weekDownloads": 7047, + "downloads": 34160, + "weekDownloads": 6493, "size": 12044, "latestRelease": "54.0.0", "latestReleaseDate": "2025-09-15T11:41:11.549Z" @@ -116667,7 +118307,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.085, + "popularity": -0.088, "topicSearchString": "bugsnag expo react-native exception error javascript monitoring reporting stability mobile" }, { @@ -116696,7 +118336,7 @@ "forks": 254, "issues": 58, "subscribers": 45, - "stars": 882, + "stars": 883, "dependencies": 12 }, "name": "@bugsnag/react-native", @@ -116725,11 +118365,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 307805, - "weekDownloads": 56891, + "downloads": 297732, + "weekDownloads": 59766, "size": 16854070, "latestRelease": "8.7.0", "latestReleaseDate": "2025-10-13T10:50:56.678Z" @@ -116740,7 +118381,7 @@ "Known", "Recently updated" ], - "popularity": 0.157, + "popularity": 0.171, "topicSearchString": "bugsnag react-native exception error javascript monitoring reporting stability mobile" }, { @@ -116788,11 +118429,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 10643, - "weekDownloads": 1953, + "downloads": 9896, + "weekDownloads": 1835, "size": 155662, "latestRelease": "3.1.0", "latestReleaseDate": "2025-09-24T16:03:09.028Z" @@ -116801,7 +118443,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.094, + "popularity": -0.092, "topicSearchString": "" }, { @@ -116850,11 +118492,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 25, - "weekDownloads": 4, + "downloads": 88, + "weekDownloads": 1, "size": 8692, "latestRelease": "0.0.18", "latestReleaseDate": "2025-07-08T08:48:29.448Z" @@ -116863,7 +118506,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.84, + "popularity": -0.99, "topicSearchString": "react native expo expo-notifications" }, { @@ -116923,19 +118566,20 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-pdf-from-image", "npm": { - "downloads": 3240, - "weekDownloads": 855, + "downloads": 2826, + "weekDownloads": 491, "size": 77624, "latestRelease": "0.3.5", "latestReleaseDate": "2025-02-28T06:32:23.548Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.026, + "popularity": -0.102, "topicSearchString": "react-native ios android pdf-generation library image-to-pdf pdf image document-creation image-processing pdf-generation-react" }, { @@ -117004,12 +118648,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-text-touch-highlight", "npm": { - "downloads": 98, - "weekDownloads": 14, + "downloads": 108, + "weekDownloads": 21, "size": 727370, "latestRelease": "0.4.0", "latestReleaseDate": "2025-02-04T19:20:39.105Z" @@ -117018,7 +118663,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.878, + "popularity": -0.832, "topicSearchString": "react-native ios android react highlight text gesture selection interactive reanimated highlighting text-highlighting text-selection text-marker highlighting-library text-highlight ui-component text-manipulation touch-interaction text-highlighter" }, { @@ -117073,12 +118718,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-type-animation", "npm": { - "downloads": 39807, - "weekDownloads": 7522, + "downloads": 39362, + "weekDownloads": 7180, "size": 747088, "latestRelease": "0.4.4", "latestReleaseDate": "2025-05-10T20:46:45.076Z" @@ -117087,7 +118733,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.089, + "popularity": -0.095, "topicSearchString": "react-native ios android type-animation typing typinganimation" }, { @@ -117139,11 +118785,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 44, - "weekDownloads": 1, + "downloads": 54, + "weekDownloads": 4, "size": 18836, "latestRelease": "1.0.5", "latestReleaseDate": "2025-01-31T00:05:49.147Z" @@ -117153,7 +118800,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.98, + "popularity": -0.933, "topicSearchString": "style-variance-authority sva style styles variants react-native" }, { @@ -117179,7 +118826,7 @@ "forks": 19, "issues": 6, "subscribers": 3, - "stars": 772, + "stars": 773, "dependencies": 0 }, "name": "react-native-sortables", @@ -117214,12 +118861,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sortables", "npm": { - "downloads": 64838, - "weekDownloads": 12258, + "downloads": 63018, + "weekDownloads": 10436, "size": 1017797, "latestRelease": "1.9.2", "latestReleaseDate": "2025-09-16T11:11:52.305Z" @@ -117229,7 +118877,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.141, "topicSearchString": "draggable draggable-flex draggable-grid flex gesture-handler gestures grid haptic-feedback haptics react-native reanimated reorder sortable sortable-flex sortable-grid" }, { @@ -117284,12 +118932,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-fast-io", "npm": { - "downloads": 61, - "weekDownloads": 20, + "downloads": 54, + "weekDownloads": 15, "size": 491195, "latestRelease": "0.2.0", "latestReleaseDate": "2024-12-20T20:44:06.620Z" @@ -117300,7 +118949,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.464, + "popularity": -0.5, "topicSearchString": "react-native websocket fetch io streams nitro nitro-modules nitrogen" }, { @@ -117324,7 +118973,7 @@ "updatedAt": "2025-03-23T20:09:10Z", "createdAt": "2024-10-14T09:03:18Z", "pushedAt": "2025-03-23T20:09:10Z", - "forks": 3, + "forks": 4, "issues": 20, "subscribers": 4, "stars": 205, @@ -117353,11 +119002,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 25, - "weekDownloads": 5, + "downloads": 31, + "weekDownloads": 6, "size": 467033, "latestRelease": "0.2.1", "latestReleaseDate": "2025-03-20T17:11:28.160Z" @@ -117367,7 +119017,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.55, + "popularity": -0.579, "topicSearchString": "react-native ios android webassembly wasm" }, { @@ -117420,11 +119070,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 25419, - "weekDownloads": 3181, + "downloads": 26354, + "weekDownloads": 5700, "size": 38525, "latestRelease": "1.0.3", "latestReleaseDate": "2025-09-20T20:10:53.419Z" @@ -117436,7 +119087,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.106, + "popularity": 0.184, "topicSearchString": "react-native document viewer preview quicklook" }, { @@ -117486,12 +119137,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-css-animations", "npm": { - "downloads": 38, - "weekDownloads": 9, + "downloads": 34, + "weekDownloads": 3, "size": 27378, "latestRelease": "0.1.1", "latestReleaseDate": "2025-01-22T11:12:49.727Z" @@ -117501,7 +119153,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.525, + "popularity": -0.675, "topicSearchString": "react-native reanimated css-animations css-transitions ios android" }, { @@ -117549,12 +119201,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "react-native-tiktok", "npm": { - "downloads": 1162, - "weekDownloads": 271, + "downloads": 1074, + "weekDownloads": 276, "size": 31613, "latestRelease": "2.1.16", "latestReleaseDate": "2025-07-31T05:26:23.524Z" @@ -117563,7 +119216,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.199, + "popularity": 0.219, "topicSearchString": "react-native ios android" }, { @@ -117598,12 +119251,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "otago", "npm": { - "downloads": 194, - "weekDownloads": 15, + "downloads": 246, + "weekDownloads": 18, "size": 40605, "latestRelease": "2.2.10", "latestReleaseDate": "2025-10-01T08:15:51.458Z" @@ -117614,7 +119268,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.933, + "popularity": -0.937, "topicSearchString": "" }, { @@ -117670,11 +119324,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 233, - "weekDownloads": 55, + "downloads": 1101, + "weekDownloads": 51, "size": 8998, "latestRelease": "2.2.0", "latestReleaseDate": "2025-03-04T09:08:25.201Z" @@ -117684,7 +119339,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.546, + "popularity": 0.039, "topicSearchString": "react-native expo audio deprecated" }, { @@ -117737,11 +119392,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 929, - "weekDownloads": 133, + "downloads": 985, + "weekDownloads": 197, "size": 196346, "latestRelease": "0.7.0", "latestReleaseDate": "2025-07-31T07:29:39.708Z" @@ -117751,7 +119407,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.628, + "popularity": -0.579, "topicSearchString": "react-native expo expo-audio-studio expoaudiostudio" }, { @@ -117804,11 +119460,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 8531, - "weekDownloads": 1207, + "downloads": 8495, + "weekDownloads": 1323, "size": 148730, "latestRelease": "3.0.2", "latestReleaseDate": "2025-07-07T17:51:48.934Z" @@ -117818,7 +119475,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.12, + "popularity": 0.132, "topicSearchString": "react-native expo expo-widgets expowidgets" }, { @@ -117846,10 +119503,10 @@ "updatedAt": "2025-10-11T04:49:56Z", "createdAt": "2015-09-14T15:04:15Z", "pushedAt": "2025-10-11T04:49:56Z", - "forks": 1319, + "forks": 1320, "issues": 109, "subscribers": 188, - "stars": 28814, + "stars": 28820, "dependencies": 0 }, "name": "xstate", @@ -117876,11 +119533,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 10357618, - "weekDownloads": 1898921, + "downloads": 10054377, + "weekDownloads": 1852892, "size": 2189291, "latestRelease": "5.23.0", "latestReleaseDate": "2025-10-11T04:51:32.726Z" @@ -117894,7 +119552,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.157, "topicSearchString": "statechart state-machine finite-state-machine finite-automata scxml state interpreter graph" }, { @@ -117915,13 +119573,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-11T04:49:56Z", + "updatedAt": "2025-10-17T20:11:12Z", "createdAt": "2015-09-14T15:04:15Z", - "pushedAt": "2025-10-11T04:49:56Z", - "forks": 1319, + "pushedAt": "2025-10-17T20:11:12Z", + "forks": 1320, "issues": 109, "subscribers": 188, - "stars": 28814, + "stars": 28820, "dependencies": 0 }, "name": "@xstate/store", @@ -117942,14 +119600,15 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 216851, - "weekDownloads": 38768, - "size": 104734, - "latestRelease": "3.10.0", - "latestReleaseDate": "2025-10-11T04:51:36.029Z" + "downloads": 212014, + "weekDownloads": 49325, + "size": 110740, + "latestRelease": "3.11.1", + "latestReleaseDate": "2025-10-17T20:12:55.319Z" }, "score": 86, "matchingScoreModifiers": [ @@ -117960,7 +119619,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.198, "topicSearchString": "store state" }, { @@ -117984,10 +119643,10 @@ "updatedAt": "2025-06-21T19:38:14Z", "createdAt": "2015-09-14T15:04:15Z", "pushedAt": "2025-06-21T19:38:14Z", - "forks": 1319, + "forks": 1320, "issues": 109, "subscribers": 188, - "stars": 28814, + "stars": 28820, "dependencies": 2 }, "name": "@xstate/react", @@ -118014,11 +119673,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 5916673, - "weekDownloads": 1103499, + "downloads": 5690648, + "weekDownloads": 1068693, "size": 36230, "latestRelease": "6.0.0", "latestReleaseDate": "2025-06-19T16:18:00.485Z" @@ -118031,7 +119691,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.16, "topicSearchString": "state machine statechart scxml state graph react hook" }, { @@ -118085,12 +119745,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-totp", "npm": { - "downloads": 10, - "weekDownloads": 6, + "downloads": 12, + "weekDownloads": 3, "size": 29133, "latestRelease": "2.0.0", "latestReleaseDate": "2025-02-08T19:49:56.478Z" @@ -118100,7 +119761,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.4, + "popularity": -0.7, "topicSearchString": "react-native expo expo-totp expototp" }, { @@ -118155,11 +119816,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1511, - "weekDownloads": 230, + "downloads": 1444, + "weekDownloads": 322, "size": 81706, "latestRelease": "0.1.1", "latestReleaseDate": "2024-04-24T14:55:20.994Z" @@ -118169,7 +119831,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.12, + "popularity": -0.06, "topicSearchString": "react-native scroll anchor scroll-to ios android" }, { @@ -118227,12 +119889,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-key-event", "npm": { - "downloads": 1699, - "weekDownloads": 494, + "downloads": 1463, + "weekDownloads": 364, "size": 67702, "latestRelease": "1.4.0", "latestReleaseDate": "2025-04-25T07:44:59.689Z" @@ -118241,7 +119904,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.248, + "popularity": 0.212, "topicSearchString": "react-native expo expo-key-event expokeyevent keyboard-event key-event hid-event expo-module key-events" }, { @@ -118312,22 +119975,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-inner-shadow", "npm": { - "downloads": 1014, - "weekDownloads": 238, + "downloads": 1020, + "weekDownloads": 176, "size": 277259, "latestRelease": "2.4.0", "latestReleaseDate": "2025-09-17T06:07:50.629Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.05, + "popularity": -0.103, "topicSearchString": "react-native inner-shadow android ios linear-shadow linear-inner-shadow inset-shadow shadow shadow-pressable shadow-toggle shadows gradient linear-gradient neumorphism react reanimated skia skia-canvas reactnativeinnershadow" }, { @@ -118396,12 +120059,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-segmented-control-2", "npm": { - "downloads": 6624, - "weekDownloads": 1516, + "downloads": 6620, + "weekDownloads": 1179, "size": 59474, "latestRelease": "2.1.1", "latestReleaseDate": "2025-09-08T14:51:04.891Z" @@ -118410,7 +120074,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.195, + "popularity": 0.151, "topicSearchString": "segmented-control segmented-control-2 freakycoder kuray react react-native javascript ui-lib rn android app-dev app-development apple application development google ios" }, { @@ -118459,18 +120123,21 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 48, - "weekDownloads": 8, + "downloads": 61, + "weekDownloads": 11, "size": 449017, "latestRelease": "1.0.0", "latestReleaseDate": "2025-04-19T20:50:44.058Z" }, - "score": 46, - "matchingScoreModifiers": [], - "popularity": -0.605, + "score": 35, + "matchingScoreModifiers": [ + "Not updated recently" + ], + "popularity": -0.593, "topicSearchString": "react-native markdown" }, { @@ -118518,10 +120185,11 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 8, + "downloads": 42, "weekDownloads": 0, "size": 11635, "latestRelease": "0.0.2", @@ -118579,11 +120247,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 52, - "weekDownloads": 14, + "downloads": 109, + "weekDownloads": 15, "size": 20625, "latestRelease": "0.1.1", "latestReleaseDate": "2024-09-24T00:58:39.484Z" @@ -118592,7 +120261,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.767, + "popularity": -0.88, "topicSearchString": "react-native contacts" }, { @@ -118620,10 +120289,10 @@ "updatedAt": "2025-10-13T10:03:35Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-13T10:03:35Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-audio", @@ -118649,12 +120318,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-audio", "npm": { - "downloads": 498585, - "weekDownloads": 94987, + "downloads": 490879, + "weekDownloads": 94670, "size": 639220, "latestRelease": "1.0.13", "latestReleaseDate": "2025-09-18T21:32:55.128Z" @@ -118668,7 +120338,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.164, "topicSearchString": "react-native expo expo-audio audio ios android" }, { @@ -118693,10 +120363,10 @@ "updatedAt": "2025-10-08T12:16:39Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-08T12:16:39Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-maps", @@ -118719,12 +120389,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-maps", "npm": { - "downloads": 54035, - "weekDownloads": 10358, + "downloads": 52625, + "weekDownloads": 10078, "size": 336551, "latestRelease": "0.12.8", "latestReleaseDate": "2025-10-01T00:22:45.736Z" @@ -118791,11 +120462,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "userealmstorage-dexterverse", "npm": { - "downloads": 8, + "downloads": 26, "weekDownloads": 0, "size": 9018, "latestRelease": "1.0.6", @@ -118871,11 +120543,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 2960, - "weekDownloads": 575, + "downloads": 3045, + "weekDownloads": 568, "size": 1303828, "latestRelease": "11.0.1", "latestReleaseDate": "2025-10-14T18:47:30.650Z" @@ -118885,7 +120558,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.159, "topicSearchString": "appzung codepush react-native code push ota live-updates hot-updates expo-updates expo-ota appcenter code-push ota-update react updates" }, { @@ -118915,7 +120588,7 @@ "forks": 7, "issues": 1, "subscribers": 4, - "stars": 404, + "stars": 405, "dependencies": 4 }, "name": "react-native-boost", @@ -118942,12 +120615,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-boost", "npm": { - "downloads": 22069, - "weekDownloads": 5549, + "downloads": 19763, + "weekDownloads": 5664, "size": 223892, "latestRelease": "0.6.2", "latestReleaseDate": "2025-06-11T21:28:16.702Z" @@ -118957,7 +120631,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.214, + "popularity": 0.244, "topicSearchString": "react-native ios android performance optimization bundle optimize" }, { @@ -119013,11 +120687,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-googlenearby-connection", "npm": { - "downloads": 10, + "downloads": 15, "weekDownloads": 0, "size": 206419, "latestRelease": "0.1.4", @@ -119078,11 +120753,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 168, - "weekDownloads": 25, + "downloads": 262, + "weekDownloads": 30, "size": 84479, "latestRelease": "9.0.2-alpha", "latestReleaseDate": "2025-04-22T17:23:54.054Z" @@ -119091,7 +120767,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.622, + "popularity": -0.652, "topicSearchString": "react-native sms read-sms android-sms android expo sms-notification" }, { @@ -119142,10 +120818,11 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 12, + "downloads": 17, "weekDownloads": 0, "size": 22560, "latestRelease": "0.2.3", @@ -119213,12 +120890,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-tor", "npm": { - "downloads": 184, - "weekDownloads": 9, + "downloads": 311, + "weekDownloads": 11, "size": 201598185, "latestRelease": "0.3.0", "latestReleaseDate": "2025-09-26T16:08:54.549Z" @@ -119228,7 +120906,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.958, + "popularity": -0.97, "topicSearchString": "react-native ios android tor nitro-modules new-architecture onion onion-service socks5" }, { @@ -119282,12 +120960,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-stepper-ui", "npm": { - "downloads": 1059, - "weekDownloads": 190, + "downloads": 1099, + "weekDownloads": 239, "size": 12301, "latestRelease": "0.0.9", "latestReleaseDate": "2020-07-06T05:11:50.446Z" @@ -119298,7 +120977,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.185, "topicSearchString": "react-native ios android" }, { @@ -119328,13 +121007,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T13:49:01Z", + "updatedAt": "2025-10-17T10:33:16Z", "createdAt": "2024-11-20T09:02:32Z", - "pushedAt": "2025-10-16T13:49:01Z", - "forks": 79, + "pushedAt": "2025-10-17T10:33:16Z", + "forks": 80, "issues": 89, "subscribers": 18, - "stars": 2636, + "stars": 2643, "dependencies": 1 }, "name": "@legendapp/list", @@ -119357,14 +121036,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 204897, - "weekDownloads": 36076, - "size": 301350, - "latestRelease": "2.0.12", - "latestReleaseDate": "2025-10-11T19:04:59.134Z" + "downloads": 200517, + "weekDownloads": 37048, + "size": 302104, + "latestRelease": "2.0.13", + "latestReleaseDate": "2025-10-17T10:33:15.423Z" }, "score": 62, "matchingScoreModifiers": [ @@ -119374,7 +121054,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.157, "topicSearchString": "react react-native list" }, { @@ -119425,12 +121105,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-selectable-text", "npm": { - "downloads": 60, - "weekDownloads": 3, + "downloads": 64, + "weekDownloads": 4, "size": 20918, "latestRelease": "0.4.0", "latestReleaseDate": "2025-01-19T22:22:22.513Z" @@ -119440,7 +121121,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.957, + "popularity": -0.947, "topicSearchString": "react-native expo expo-selectable-text exposelectabletext" }, { @@ -119493,12 +121174,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-ios-translate-sheet", "npm": { - "downloads": 18, - "weekDownloads": 3, + "downloads": 70, + "weekDownloads": 2, "size": 77692, "latestRelease": "1.4.8", "latestReleaseDate": "2025-08-28T02:15:26.394Z" @@ -119507,7 +121189,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.6, + "popularity": -0.725, "topicSearchString": "react-native ios translate sheet swiftui" }, { @@ -119562,12 +121244,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-ios-translate-tasks", "npm": { - "downloads": 276, - "weekDownloads": 8, + "downloads": 324, + "weekDownloads": 60, "size": 79972, "latestRelease": "1.1.7", "latestReleaseDate": "2025-08-28T02:05:31.030Z" @@ -119576,7 +121259,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.975, + "popularity": -0.842, "topicSearchString": "react-native ios android translate task tasks swiftui" }, { @@ -119626,12 +121309,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-momentum-carousel", "npm": { - "downloads": 862, - "weekDownloads": 36, + "downloads": 891, + "weekDownloads": 61, "size": 137141, "latestRelease": "2.0.0", "latestReleaseDate": "2025-03-02T09:54:32.622Z" @@ -119641,7 +121325,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.964, + "popularity": -0.942, "topicSearchString": "react-native carousel react native" }, { @@ -119705,12 +121389,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-phone-entry", "npm": { - "downloads": 3226, - "weekDownloads": 628, + "downloads": 3127, + "weekDownloads": 454, "size": 179394, "latestRelease": "0.2.4", "latestReleaseDate": "2025-09-28T21:59:40.876Z" @@ -119719,7 +121404,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.165, + "popularity": 0.124, "topicSearchString": "react-native ios android component expo input phone-input react app" }, { @@ -119776,11 +121461,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 16, - "weekDownloads": 4, + "downloads": 35, + "weekDownloads": 9, "size": 47753, "latestRelease": "1.1.0", "latestReleaseDate": "2025-03-01T03:18:33.661Z" @@ -119789,7 +121475,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.733, + "popularity": -0.775, "topicSearchString": "react-native ios android shortcuts quick-actions uiapplicationshortcutitem app-shortcuts" }, { @@ -119854,11 +121540,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 43, - "weekDownloads": 14, + "downloads": 41, + "weekDownloads": 16, "size": 138119, "latestRelease": "1.0.0", "latestReleaseDate": "2025-02-21T04:42:04.698Z" @@ -119868,7 +121555,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.72, + "popularity": -0.644, "topicSearchString": "react-native forms multi-step-form multi-step stepper wizard reanimated ui ios android" }, { @@ -119891,13 +121578,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-14T09:47:17Z", + "updatedAt": "2025-10-17T20:36:53Z", "createdAt": "2025-02-21T07:12:03Z", - "pushedAt": "2025-09-14T09:47:17Z", + "pushedAt": "2025-10-17T20:36:53Z", "forks": 8, - "issues": 1, + "issues": 0, "subscribers": 1, - "stars": 43, + "stars": 44, "dependencies": 0 }, "name": "@mhpdev/react-native-speech", @@ -119929,18 +121616,21 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 626, - "weekDownloads": 61, - "size": 162170, - "latestRelease": "1.2.1", - "latestReleaseDate": "2025-09-14T09:35:15.664Z" + "downloads": 807, + "weekDownloads": 89, + "size": 129211, + "latestRelease": "1.3.0", + "latestReleaseDate": "2025-10-17T20:34:36.282Z" }, - "score": 46, - "matchingScoreModifiers": [], - "popularity": -0.667, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.656, "topicSearchString": "react-native ios android speech tts text-to-speech voice highlighted highlight-text highlighter highlighted-text" }, { @@ -119995,12 +121685,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-translate-text", "npm": { - "downloads": 207, - "weekDownloads": 43, + "downloads": 192, + "weekDownloads": 40, "size": 46052, "latestRelease": "0.1.0", "latestReleaseDate": "2025-03-05T11:34:42.380Z" @@ -120010,7 +121701,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.821, + "popularity": -0.822, "topicSearchString": "react-native expo expo-translate-text expotranslatetext" }, { @@ -120071,11 +121762,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 252, - "weekDownloads": 57, + "downloads": 257, + "weekDownloads": 42, "size": 241575, "latestRelease": "1.0.9", "latestReleaseDate": "2025-07-14T14:35:20.213Z" @@ -120084,7 +121776,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.807, + "popularity": -0.86, "topicSearchString": "nepali nepali-picker nepali-date-picker date-picker calendar-picker ios android" }, { @@ -120112,7 +121804,7 @@ "forks": 104, "issues": 44, "subscribers": 15, - "stars": 1061, + "stars": 1062, "dependencies": 1 }, "name": "react-native-purchases-ui", @@ -120138,12 +121830,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-purchases-ui", "npm": { - "downloads": 145746, - "weekDownloads": 27658, + "downloads": 142588, + "weekDownloads": 27791, "size": 262311, "latestRelease": "9.5.4", "latestReleaseDate": "2025-10-10T12:42:16.745Z" @@ -120155,7 +121848,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.166, "topicSearchString": "react-native in-app-purchase subscriptions iap ios apple android" }, { @@ -120206,12 +121899,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "newrelic-react-native-agent", "npm": { - "downloads": 92467, - "weekDownloads": 18705, + "downloads": 86825, + "weekDownloads": 17041, "size": 350100, "latestRelease": "1.5.11", "latestReleaseDate": "2025-10-10T18:02:51.777Z" @@ -120220,7 +121914,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.078, + "popularity": -0.083, "topicSearchString": "new-relic react-native" }, { @@ -120269,13 +121963,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-notification-sounds", "npm": { - "downloads": 6627, - "weekDownloads": 1497, + "downloads": 6348, + "weekDownloads": 1149, "size": 666294, "latestRelease": "0.5.8", "latestReleaseDate": "2023-08-07T17:03:39.560Z" @@ -120285,7 +121980,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.558, + "popularity": -0.596, "topicSearchString": "react-native native-sounds notifications-sounds" }, { @@ -120337,19 +122032,20 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-emoji-popup", "npm": { - "downloads": 2344, - "weekDownloads": 425, + "downloads": 2485, + "weekDownloads": 550, "size": 51071, "latestRelease": "0.3.3", "latestReleaseDate": "2025-08-12T18:03:07.301Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": 0.154, + "popularity": 0.188, "topicSearchString": "react-native ios android" }, { @@ -120384,7 +122080,7 @@ "forks": 7, "issues": 7, "subscribers": 5, - "stars": 308, + "stars": 311, "dependencies": 4 }, "name": "react-native-legal", @@ -120410,12 +122106,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-legal", "npm": { - "downloads": 11165, - "weekDownloads": 1783, + "downloads": 11234, + "weekDownloads": 1683, "size": 130274, "latestRelease": "1.6.0", "latestReleaseDate": "2025-09-12T18:22:02.510Z" @@ -120425,7 +122122,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.136, + "popularity": 0.127, "topicSearchString": "react-native oss license acknowledgements license-management" }, { @@ -120447,11 +122144,11 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-10T16:07:47Z", + "updatedAt": "2025-10-18T12:21:23Z", "createdAt": "2019-07-15T12:33:29Z", - "pushedAt": "2025-10-10T16:07:47Z", + "pushedAt": "2025-10-18T12:21:23Z", "forks": 26, - "issues": 26, + "issues": 25, "subscribers": 10, "stars": 429, "dependencies": 0 @@ -120476,11 +122173,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 5449, - "weekDownloads": 958, + "downloads": 5075, + "weekDownloads": 775, "size": 71205, "latestRelease": "1.2.0", "latestReleaseDate": "2025-07-25T08:18:57.232Z" @@ -120491,7 +122189,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.13, "topicSearchString": "brownfield native integration" }, { @@ -120516,13 +122214,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-15T10:21:45Z", + "updatedAt": "2025-10-17T13:54:17Z", "createdAt": "2024-10-16T10:58:16Z", - "pushedAt": "2025-10-15T10:21:45Z", - "forks": 49, - "issues": 59, + "pushedAt": "2025-10-17T13:54:17Z", + "forks": 50, + "issues": 58, "subscribers": 14, - "stars": 1026, + "stars": 1030, "dependencies": 7 }, "name": "react-native-executorch", @@ -120552,15 +122250,16 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-executorch", "npm": { - "downloads": 3758, - "weekDownloads": 459, - "size": 294781494, - "latestRelease": "0.5.11", - "latestReleaseDate": "2025-10-15T11:35:33.940Z" + "downloads": 4139, + "weekDownloads": 608, + "size": 294783120, + "latestRelease": "0.5.12", + "latestReleaseDate": "2025-10-17T14:17:54.408Z" }, "score": 76, "matchingScoreModifiers": [ @@ -120568,7 +122267,7 @@ "Known", "Recently updated" ], - "popularity": 0.104, + "popularity": 0.125, "topicSearchString": "react-native ios android executorch ai llm coreml xnnpack llama" }, { @@ -120617,12 +122316,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-attributify", "npm": { - "downloads": 285, - "weekDownloads": 8, + "downloads": 315, + "weekDownloads": 9, "size": 354225, "latestRelease": "0.1.0-alpha.28", "latestReleaseDate": "2025-08-21T19:31:36.661Z" @@ -120688,11 +122388,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 35, - "weekDownloads": 3, + "downloads": 40, + "weekDownloads": 7, "size": 76599, "latestRelease": "0.2.0", "latestReleaseDate": "2025-03-16T08:54:44.684Z" @@ -120701,7 +122402,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.925, + "popularity": -0.844, "topicSearchString": "react-native android @splicer97/android-keyboard-adjust android-keyboard-adjust @rn-android-keyboard-adjust keyboard-adjust keyboard adjust" }, { @@ -120781,12 +122482,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-img-buffer-save", "npm": { - "downloads": 40, - "weekDownloads": 3, + "downloads": 53, + "weekDownloads": 7, "size": 30477, "latestRelease": "0.1.7", "latestReleaseDate": "2025-03-17T18:43:24.644Z" @@ -120796,7 +122498,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.933, + "popularity": -0.883, "topicSearchString": "react-native ios android jsi cpp image img img-save image-save save-image save-img image-save-to-gallery image-to-gallery gallery img-buffer-save save-buffer save-array-buffer buffer array-buffer save-image-buffer save-image-array-buffer save-gallery img-buffer image-buffer native-module jsi-react-native module image-gallery img-gallery save-img-buffer save-to-gallery" }, { @@ -120866,12 +122568,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-xxhash", "npm": { - "downloads": 173, - "weekDownloads": 18, + "downloads": 182, + "weekDownloads": 7, "size": 303350, "latestRelease": "0.1.8", "latestReleaseDate": "2025-09-27T19:14:29.744Z" @@ -120881,7 +122584,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.91, + "popularity": -0.967, "topicSearchString": "react-native ios android xxhash hash fast xxhash3 xxhash3-react-native hash-react-native hash-xxhash jsi cpp fast-hash quick-hash xxhash-jsi xxhash-cpp xxhash3-jsi xxhash3-cpp react jni quickhash xxhash-library" }, { @@ -120944,12 +122647,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-config-jsi", "npm": { - "downloads": 43, - "weekDownloads": 15, + "downloads": 34, + "weekDownloads": 5, "size": 43671, "latestRelease": "0.1.10", "latestReleaseDate": "2025-03-17T11:56:53.615Z" @@ -120959,7 +122663,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.7, + "popularity": -0.875, "topicSearchString": "react-native ios android jsi cpp config jsi-react-native config-cpp env config-jsi jni native-module react-config module" }, { @@ -121011,12 +122715,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-render-lynx", "npm": { - "downloads": 142, - "weekDownloads": 22, + "downloads": 136, + "weekDownloads": 30, "size": 56338, "latestRelease": "0.3.0", "latestReleaseDate": "2025-03-25T12:25:46.453Z" @@ -121025,7 +122730,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.867, + "popularity": -0.813, "topicSearchString": "react-native lynx lynx-js lynxjs" }, { @@ -121078,12 +122783,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-wifi-reborn", "npm": { - "downloads": 73117, - "weekDownloads": 13840, + "downloads": 69166, + "weekDownloads": 13949, "size": 121300, "latestRelease": "4.13.6", "latestReleaseDate": "2025-06-25T08:41:16.075Z" @@ -121093,7 +122799,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.171, "topicSearchString": "react react-native android ios wifi connect" }, { @@ -121152,10 +122858,11 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 168, + "downloads": 172, "weekDownloads": 0, "size": 172201, "latestRelease": "0.1.5", @@ -121192,7 +122899,7 @@ "updatedAt": "2025-08-08T18:29:13Z", "createdAt": "2023-12-04T15:59:56Z", "pushedAt": "2025-08-08T18:29:13Z", - "forks": 300, + "forks": 301, "issues": 44, "subscribers": 29, "stars": 1226, @@ -121213,11 +122920,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 5205159, - "weekDownloads": 984362, + "downloads": 5089379, + "weekDownloads": 982995, "size": 419936, "latestRelease": "0.24.1", "latestReleaseDate": "2025-04-29T17:48:21.897Z" @@ -121229,7 +122937,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.164, "topicSearchString": "" }, { @@ -121257,7 +122965,7 @@ "forks": 8, "issues": 3, "subscribers": 3, - "stars": 295, + "stars": 297, "dependencies": 0 }, "name": "react-native-auto-skeleton", @@ -121309,12 +123017,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-auto-skeleton", "npm": { - "downloads": 4817, - "weekDownloads": 1060, + "downloads": 4915, + "weekDownloads": 942, "size": 106538, "latestRelease": "0.1.28", "latestReleaseDate": "2025-09-27T22:59:13.853Z" @@ -121324,7 +123033,7 @@ "Known", "Recently updated" ], - "popularity": 0.187, + "popularity": 0.163, "topicSearchString": "react-native ios android skeleton skeleton-loader loading-placeholder shimmer-effect loading shimmer placeholder shimmer-placeholder shimmer-placeholder-view shimmer-placeholder-view-component shimmer-placeholder-component shimmer-placeholder-component-view rn-skeleton rn-loading rn-shimmer rn-placeholder rn-skeleton-loader rn-shimmer-placeholder rn-shimmer-placeholder-view skeleton-placeholder skeleton-placeholder-view skeleton-placeholder-component skeleton-placeholder-component-view placeholder-loader loader ui native-component fabric" }, { @@ -121357,7 +123066,7 @@ "forks": 10, "issues": 12, "subscribers": 1, - "stars": 203, + "stars": 204, "dependencies": 0 }, "name": "react-native-advanced-input-mask", @@ -121394,11 +123103,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 54997, - "weekDownloads": 9524, + "downloads": 53153, + "weekDownloads": 9609, "size": 385180, "latestRelease": "1.4.6", "latestReleaseDate": "2025-10-06T15:37:52.706Z" @@ -121408,7 +123118,7 @@ "Known", "Recently updated" ], - "popularity": 0.147, + "popularity": 0.154, "topicSearchString": "react-native ios android web text-input masking input component form validation formatting phone-input credit-card-input date-input time-input mask" }, { @@ -121463,12 +123173,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-translator", "npm": { - "downloads": 527, - "weekDownloads": 126, + "downloads": 596, + "weekDownloads": 136, "size": 27094, "latestRelease": "2.0.0", "latestReleaseDate": "2025-08-07T07:29:02.274Z" @@ -121477,7 +123188,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.547, + "popularity": -0.556, "topicSearchString": "translator translate react-native typescript google-translate deepl" }, { @@ -121534,11 +123245,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "nitro" }, "npm": { - "downloads": 175, - "weekDownloads": 40, + "downloads": 172, + "weekDownloads": 47, "size": 72644702, "latestRelease": "0.3.3", "latestReleaseDate": "2025-03-26T00:26:14.628Z" @@ -121548,7 +123260,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.555, + "popularity": -0.515, "topicSearchString": "react-native nitro expo image compression compressor image-compressor image-compressor" }, { @@ -121598,12 +123310,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-bip39", "npm": { - "downloads": 385, - "weekDownloads": 72, + "downloads": 355, + "weekDownloads": 60, "size": 2680120, "latestRelease": "0.0.6", "latestReleaseDate": "2025-05-01T12:01:02.764Z" @@ -121612,7 +123325,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.84, + "popularity": -0.855, "topicSearchString": "react-native nitro" }, { @@ -121666,12 +123379,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-in-app-browser", "npm": { - "downloads": 383, - "weekDownloads": 22, + "downloads": 398, + "weekDownloads": 30, "size": 108468, "latestRelease": "2.0.0", "latestReleaseDate": "2025-08-17T08:11:54.474Z" @@ -121681,7 +123395,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.701, + "popularity": -0.685, "topicSearchString": "react-native nitro in-app-browser in-app-browser-module nitro-in-app-browser" }, { @@ -121731,11 +123445,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-turbo-scrypt", "npm": { - "downloads": 20, + "downloads": 35, "weekDownloads": 0, "size": 53325, "latestRelease": "0.0.7", @@ -121800,12 +123515,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-llm-mediapipe", "npm": { - "downloads": 119, - "weekDownloads": 15, + "downloads": 124, + "weekDownloads": 17, "size": 56729, "latestRelease": "0.5.0", "latestReleaseDate": "2024-10-05T16:10:43.789Z" @@ -121815,7 +123531,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.643, + "popularity": -0.633, "topicSearchString": "react-native ios android mediapipe llm local-llm" }, { @@ -121837,9 +123553,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-10-10T06:56:13Z", + "updatedAt": "2025-10-17T13:34:54Z", "createdAt": "2024-09-04T07:58:43Z", - "pushedAt": "2025-10-10T06:56:13Z", + "pushedAt": "2025-10-17T13:34:54Z", "forks": 8, "issues": 0, "subscribers": 11, @@ -121862,21 +123578,22 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-bare-kit", "npm": { - "downloads": 3306, - "weekDownloads": 1201, - "size": 322938645, - "latestRelease": "0.10.0", - "latestReleaseDate": "2025-10-10T06:58:20.408Z" + "downloads": 3188, + "weekDownloads": 1093, + "size": 322955045, + "latestRelease": "0.10.2", + "latestReleaseDate": "2025-10-17T13:36:46.084Z" }, "score": 51, "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.309, + "popularity": 0.291, "topicSearchString": "" }, { @@ -121936,12 +123653,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-build-version", "npm": { - "downloads": 28, - "weekDownloads": 6, + "downloads": 38, + "weekDownloads": 2, "size": 15301, "latestRelease": "1.2.2", "latestReleaseDate": "2025-03-28T05:14:54.391Z" @@ -121951,7 +123669,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.8, + "popularity": -0.95, "topicSearchString": "react-native management version-management android tools developer-tools mobile-app build-automation release-management build app-versioning auto ios rn rn-build-version upgrade-build-version" }, { @@ -121999,12 +123717,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-testflight", "npm": { - "downloads": 4504, - "weekDownloads": 1048, + "downloads": 4410, + "weekDownloads": 846, "size": 5614, "latestRelease": "0.3.0", "latestReleaseDate": "2025-03-20T16:42:11.691Z" @@ -122014,7 +123733,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.052, + "popularity": -0.087, "topicSearchString": "react-native expo expo-testflight expotestflight" }, { @@ -122039,8 +123758,8 @@ "pushedAt": "2025-09-24T15:24:19Z", "forks": 125, "issues": 41, - "subscribers": 8, - "stars": 537, + "subscribers": 7, + "stars": 539, "dependencies": 0 }, "name": "@config-plugins/react-native-blob-util", @@ -122062,11 +123781,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": true }, "npm": { - "downloads": 181522, - "weekDownloads": 33180, + "downloads": 173580, + "weekDownloads": 34186, "size": 7350, "latestRelease": "12.0.0", "latestReleaseDate": "2025-09-24T15:23:31.174Z" @@ -122078,7 +123798,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.167, "topicSearchString": "blob-util react-native expo" }, { @@ -122103,8 +123823,8 @@ "pushedAt": "2025-09-24T15:24:19Z", "forks": 125, "issues": 41, - "subscribers": 8, - "stars": 537, + "subscribers": 7, + "stars": 539, "dependencies": 0 }, "name": "@config-plugins/react-native-pdf", @@ -122126,11 +123846,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": true }, "npm": { - "downloads": 174552, - "weekDownloads": 31648, + "downloads": 166031, + "weekDownloads": 32668, "size": 6242, "latestRelease": "12.0.0", "latestReleaseDate": "2025-09-24T15:23:42.767Z" @@ -122142,7 +123863,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.167, "topicSearchString": "pdf react-native expo" }, { @@ -122166,10 +123887,10 @@ "updatedAt": "2023-10-24T22:01:45Z", "createdAt": "2013-04-08T20:16:40Z", "pushedAt": "2023-10-24T22:01:45Z", - "forks": 2455, + "forks": 2456, "issues": 261, "subscribers": 252, - "stars": 16316, + "stars": 16318, "dependencies": 0 }, "name": "crypto-js", @@ -122208,12 +123929,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "crypto-js", "npm": { - "downloads": 41391111, - "weekDownloads": 7731516, + "downloads": 40050962, + "weekDownloads": 7556884, "size": 486947, "latestRelease": "4.2.0", "latestReleaseDate": "2023-10-24T22:20:29.229Z" @@ -122227,7 +123949,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.16, "topicSearchString": "security crypto hash md5 sha1 sha-1 sha256 sha-256 rc4 rabbit aes des pbkdf2 hmac ofb cfb ctr cbc base64 base64url" }, { @@ -122251,10 +123973,10 @@ "updatedAt": "2025-09-08T08:25:07Z", "createdAt": "2014-10-06T10:24:22Z", "pushedAt": "2025-09-08T08:25:07Z", - "forks": 1834, + "forks": 1835, "issues": 631, "subscribers": 206, - "stars": 36190, + "stars": 36201, "dependencies": 0 }, "name": "date-fns", @@ -122281,12 +124003,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "date-fns", "npm": { - "downloads": 146676022, - "weekDownloads": 27362242, + "downloads": 142148928, + "weekDownloads": 26464331, "size": 22601076, "latestRelease": "4.1.0", "latestReleaseDate": "2024-09-17T04:37:03.810Z" @@ -122299,7 +124022,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.158, "topicSearchString": "javascript date modules utilities nodejs time date-fns hacktoberfest" }, { @@ -122327,7 +124050,7 @@ "forks": 22, "issues": 4, "subscribers": 3, - "stars": 162, + "stars": 163, "dependencies": 1 }, "name": "react-native-audio-pro", @@ -122352,22 +124075,22 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-audio-pro", "npm": { - "downloads": 2956, - "weekDownloads": 774, + "downloads": 2616, + "weekDownloads": 542, "size": 274282, "latestRelease": "10.1.1", "latestReleaseDate": "2025-09-17T05:44:03.065Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.223, + "popularity": 0.176, "topicSearchString": "react-native ios android web" }, { @@ -122397,7 +124120,7 @@ "forks": 673, "issues": 9, "subscribers": 84, - "stars": 8319, + "stars": 8322, "dependencies": 1 }, "name": "i18next", @@ -122429,12 +124152,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "i18next", "npm": { - "downloads": 41375698, - "weekDownloads": 7709187, + "downloads": 39890216, + "weekDownloads": 7537868, "size": 558277, "latestRelease": "25.6.0", "latestReleaseDate": "2025-10-10T11:52:40.679Z" @@ -122447,7 +124171,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.161, "topicSearchString": "i18next internationalization i18n translation localization l10n globalization gettext ecosystem flexibility nodejs deno javascript" }, { @@ -122499,12 +124223,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "posthog-react-native-session-replay", "npm": { - "downloads": 199727, - "weekDownloads": 40557, + "downloads": 192400, + "weekDownloads": 37078, "size": 37712, "latestRelease": "1.2.1", "latestReleaseDate": "2025-10-15T18:42:00.265Z" @@ -122515,7 +124240,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.077, + "popularity": -0.086, "topicSearchString": "react-native ios android" }, { @@ -122581,12 +124306,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "rn-fade-wrapper", "npm": { - "downloads": 509, - "weekDownloads": 158, + "downloads": 421, + "weekDownloads": 123, "size": 62279, "latestRelease": "0.1.10", "latestReleaseDate": "2025-09-28T12:29:47.927Z" @@ -122595,7 +124321,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.484, + "popularity": -0.502, "topicSearchString": "react-native ios android native-component app.plugin.js component wrapper fade fade-wrapper fade-in fade-out fade-container fade-view fade-in-out fade-gradient gradient fade-component" }, { @@ -122653,12 +124379,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-check-version", "npm": { - "downloads": 92471, - "weekDownloads": 18543, + "downloads": 87006, + "weekDownloads": 17495, "size": 11672, "latestRelease": "1.4.0", "latestReleaseDate": "2025-05-20T08:04:40.089Z" @@ -122668,7 +124395,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.171, "topicSearchString": "react native version checker check react-native update ios android versions app-store google-play" }, { @@ -122695,9 +124422,9 @@ "createdAt": "2022-03-06T12:01:38Z", "pushedAt": "2025-10-16T11:57:07Z", "forks": 53, - "issues": 41, + "issues": 42, "subscribers": 18, - "stars": 221, + "stars": 222, "dependencies": 12 }, "name": "@livekit/react-native", @@ -122722,11 +124449,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 71049, - "weekDownloads": 23446, + "downloads": 61235, + "weekDownloads": 15990, "size": 909920, "latestRelease": "2.9.3", "latestReleaseDate": "2025-10-13T18:07:53.405Z" @@ -122737,7 +124465,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.531, + "popularity": 0.222, "topicSearchString": "react-native ios android livekit webrtc" }, { @@ -122791,11 +124519,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 78994, - "weekDownloads": 24522, + "downloads": 69097, + "weekDownloads": 16950, "size": 1410364, "latestRelease": "137.0.2", "latestReleaseDate": "2025-09-18T13:46:42.084Z" @@ -122805,7 +124534,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.264, + "popularity": -0.041, "topicSearchString": "react-component react-native ios android webrtc" }, { @@ -122832,7 +124561,7 @@ "updatedAt": "2025-10-16T08:13:41Z", "createdAt": "2020-11-03T06:15:40Z", "pushedAt": "2025-10-16T08:13:41Z", - "forks": 225, + "forks": 226, "issues": 26, "subscribers": 27, "stars": 512, @@ -122857,11 +124586,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1155082, - "weekDownloads": 235047, + "downloads": 1111418, + "weekDownloads": 221308, "size": 7265027, "latestRelease": "2.15.11", "latestReleaseDate": "2025-10-16T08:14:48.147Z" @@ -122873,7 +124603,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.169, "topicSearchString": "typescript javascript webrtc" }, { @@ -122930,11 +124660,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 7641, - "weekDownloads": 1459, + "downloads": 7394, + "weekDownloads": 1469, "size": 65645, "latestRelease": "2.2.5", "latestReleaseDate": "2025-04-02T06:55:57.083Z" @@ -122945,7 +124676,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.169, "topicSearchString": "react react-native android foreground service background java android-application" }, { @@ -122978,10 +124709,10 @@ "updatedAt": "2025-10-10T13:00:09Z", "createdAt": "2022-07-21T07:06:08Z", "pushedAt": "2025-10-10T13:00:09Z", - "forks": 123, - "issues": 180, + "forks": 124, + "issues": 181, "subscribers": 24, - "stars": 3924, + "stars": 3928, "dependencies": 1 }, "name": "@legendapp/state", @@ -123006,11 +124737,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 103537, - "weekDownloads": 20729, + "downloads": 99824, + "weekDownloads": 19623, "size": 992478, "latestRelease": "2.1.15", "latestReleaseDate": "2024-08-30T18:05:31.880Z" @@ -123023,7 +124755,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.167, "topicSearchString": "react react-native state hooks proxy" }, { @@ -123077,12 +124809,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-click-outside", "npm": { - "downloads": 268, - "weekDownloads": 62, + "downloads": 262, + "weekDownloads": 75, "size": 48082, "latestRelease": "0.1.1", "latestReleaseDate": "2025-10-09T02:07:45.003Z" @@ -123092,7 +124825,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.803, + "popularity": -0.754, "topicSearchString": "react-native click-outside expo expo-click-outside expoclickoutside" }, { @@ -123114,7 +124847,7 @@ "updatedAt": "2025-09-28T16:13:04Z", "createdAt": "2017-07-18T16:44:51Z", "pushedAt": "2025-09-28T16:13:04Z", - "forks": 244, + "forks": 245, "issues": 3, "subscribers": 44, "stars": 638, @@ -123143,12 +124876,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "mediasoup-client", "npm": { - "downloads": 164258, - "weekDownloads": 29003, + "downloads": 158963, + "weekDownloads": 26941, "size": 586044, "latestRelease": "3.16.7", "latestReleaseDate": "2025-09-25T09:47:19.651Z" @@ -123160,7 +124894,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.144, "topicSearchString": "webrtc ortc browser nodejs javascript sfu client-library" }, { @@ -123214,12 +124948,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-advanced-checkbox", "npm": { - "downloads": 676, - "weekDownloads": 106, + "downloads": 646, + "weekDownloads": 130, "size": 29087, "latestRelease": "2.0.6", "latestReleaseDate": "2025-05-13T09:13:12.799Z" @@ -123228,7 +124963,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.867, + "popularity": -0.829, "topicSearchString": "react-native checkbox advanced-checkbox animation haptic accessibility group-checkbox android ios" }, { @@ -123292,12 +125027,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "bottom-sheet-stepper", "npm": { - "downloads": 139, - "weekDownloads": 30, + "downloads": 129, + "weekDownloads": 50, "size": 19354, "latestRelease": "0.1.8", "latestReleaseDate": "2025-06-08T07:31:13.057Z" @@ -123307,7 +125043,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.563, + "popularity": -0.417, "topicSearchString": "react-native bottom-sheet stepper wizard multi-step modal bottom-sheet-stepper onboarding reanimated gorhom gesture-handler component expo" }, { @@ -123364,12 +125100,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-image-compare", "npm": { - "downloads": 80, - "weekDownloads": 19, + "downloads": 93, + "weekDownloads": 14, "size": 15927, "latestRelease": "1.0.0", "latestReleaseDate": "2025-04-09T08:42:14.449Z" @@ -123379,7 +125116,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.789, + "popularity": -0.867, "topicSearchString": "expo react-native image-compare before-after-slider reanimated gesture-handler compare" }, { @@ -123436,18 +125173,19 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 37, - "weekDownloads": 12, + "downloads": 52, + "weekDownloads": 4, "size": 19903218, "latestRelease": "0.4.0", "latestReleaseDate": "2025-05-09T20:24:43.271Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.7, + "popularity": -0.933, "topicSearchString": "react-native cryptography crypto encryption decryption hashing encoding decoding base64 libsodium sodium" }, { @@ -123501,12 +125239,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-mqtt-clients", "npm": { - "downloads": 69, - "weekDownloads": 4, + "downloads": 75, + "weekDownloads": 2, "size": 391915, "latestRelease": "0.2.2", "latestReleaseDate": "2025-01-21T01:14:44.794Z" @@ -123516,7 +125255,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.95, + "popularity": -0.976, "topicSearchString": "react-native ios android mqtt cocoamqtt paho" }, { @@ -123567,12 +125306,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-use-google-places-autocomplete", "npm": { - "downloads": 218, - "weekDownloads": 27, + "downloads": 229, + "weekDownloads": 45, "size": 29518, "latestRelease": "1.1.1", "latestReleaseDate": "2025-04-09T17:22:53.646Z" @@ -123581,7 +125321,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.894, + "popularity": -0.83, "topicSearchString": "react-native ios android google-api google-places-autocomplete" }, { @@ -123643,11 +125383,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 8766, - "weekDownloads": 1844, + "downloads": 8121, + "weekDownloads": 1790, "size": 327678, "latestRelease": "17.1.3", "latestReleaseDate": "2025-08-21T14:53:00.788Z" @@ -123656,7 +125397,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.071, + "popularity": -0.063, "topicSearchString": "shakebugs shake sdk bug crash report android ios react-native bug-reporting shake-sdk bug-reports debugging" }, { @@ -123676,13 +125417,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T18:09:41Z", + "updatedAt": "2025-10-19T05:13:44Z", "createdAt": "2024-05-19T21:40:04Z", - "pushedAt": "2025-10-16T18:09:41Z", - "forks": 1717, - "issues": 319, + "pushedAt": "2025-10-19T05:13:44Z", + "forks": 1730, + "issues": 321, "subscribers": 32, - "stars": 21943, + "stars": 22017, "dependencies": 14 }, "name": "better-auth", @@ -123709,15 +125450,16 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "better-auth", "npm": { - "downloads": 1536133, - "weekDownloads": 264916, - "size": 15028414, - "latestRelease": "1.3.27", - "latestReleaseDate": "2025-10-07T02:39:39.739Z" + "downloads": 1542590, + "weekDownloads": 269148, + "size": 14179371, + "latestRelease": "1.3.28", + "latestReleaseDate": "2025-10-19T02:04:58.807Z" }, "score": 86, "matchingScoreModifiers": [ @@ -123728,7 +125470,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.148, "topicSearchString": "auth oauth oidc 2fa social security typescript nextjs" }, { @@ -123749,13 +125491,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T00:23:39Z", + "updatedAt": "2025-10-19T02:03:40Z", "createdAt": "2024-05-19T21:40:04Z", - "pushedAt": "2025-10-16T00:23:39Z", - "forks": 1717, - "issues": 319, + "pushedAt": "2025-10-19T02:03:40Z", + "forks": 1730, + "issues": 321, "subscribers": 32, - "stars": 21943, + "stars": 22017, "dependencies": 2 }, "name": "@better-auth/expo", @@ -123779,14 +125521,15 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 120086, - "weekDownloads": 22581, - "size": 59478, - "latestRelease": "1.3.27", - "latestReleaseDate": "2025-10-07T02:39:44.352Z" + "downloads": 119066, + "weekDownloads": 22885, + "size": 68188, + "latestRelease": "1.3.28", + "latestReleaseDate": "2025-10-19T02:05:03.273Z" }, "score": 86, "matchingScoreModifiers": [ @@ -123797,7 +125540,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.163, "topicSearchString": "auth expo react-native typescript better-auth" }, { @@ -123847,11 +125590,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 133, - "weekDownloads": 4, + "downloads": 140, + "weekDownloads": 3, "size": 1103305, "latestRelease": "2.0.8", "latestReleaseDate": "2025-07-04T13:24:14.988Z" @@ -123860,7 +125604,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.974, + "popularity": -0.981, "topicSearchString": "react-native wav mp3 audio converter lame" }, { @@ -123889,7 +125633,7 @@ "forks": 35, "issues": 1, "subscribers": 4, - "stars": 287, + "stars": 288, "dependencies": 0 }, "name": "react-native-uuid", @@ -123914,12 +125658,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-uuid", "npm": { - "downloads": 1179641, - "weekDownloads": 211533, + "downloads": 1147197, + "weekDownloads": 217673, "size": 160169, "latestRelease": "2.0.3", "latestReleaseDate": "2024-11-11T23:41:01.220Z" @@ -123931,7 +125676,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.161, "topicSearchString": "uuid rfc4122 react-native reactivelions random typescript" }, { @@ -123981,12 +125726,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-screenshot-test", "npm": { - "downloads": 17, - "weekDownloads": 3, + "downloads": 39, + "weekDownloads": 5, "size": 40726, "latestRelease": "0.0.8", "latestReleaseDate": "2025-04-21T20:42:05.872Z" @@ -123995,7 +125741,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.85, + "popularity": -0.889, "topicSearchString": "screenshot-test screenshot-testing snapshot-test snapshot-testing test" }, { @@ -124020,7 +125766,7 @@ "forks": 4, "issues": 0, "subscribers": 1, - "stars": 74, + "stars": 75, "dependencies": 0 }, "name": "react-native-splash-view", @@ -124051,12 +125797,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-splash-view", "npm": { - "downloads": 25084, - "weekDownloads": 3527, + "downloads": 25247, + "weekDownloads": 3297, "size": 46923, "latestRelease": "0.0.19", "latestReleaseDate": "2025-10-01T17:00:16.450Z" @@ -124065,7 +125812,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.12, + "popularity": 0.111, "topicSearchString": "react-native ios android component splash-screen splashscreen splash launch-screen launchscreen splash-view" }, { @@ -124090,10 +125837,10 @@ "updatedAt": "2025-10-15T19:28:12Z", "createdAt": "2017-10-06T14:59:14Z", "pushedAt": "2025-10-15T19:28:12Z", - "forks": 4719, - "issues": 52, + "forks": 4723, + "issues": 53, "subscribers": 620, - "stars": 90634, + "stars": 90664, "dependencies": 0 }, "name": "tailwindcss", @@ -124111,12 +125858,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "tailwindcss", "npm": { - "downloads": 107374674, - "weekDownloads": 19212583, + "downloads": 105730537, + "weekDownloads": 19032871, "size": 683816, "latestRelease": "4.1.14", "latestReleaseDate": "2025-10-01T16:06:45.574Z" @@ -124129,7 +125877,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.153, "topicSearchString": "" }, { @@ -124180,12 +125928,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-country-flag", "npm": { - "downloads": 101955, - "weekDownloads": 20833, + "downloads": 97633, + "weekDownloads": 19332, "size": 8223, "latestRelease": "2.0.2", "latestReleaseDate": "2023-09-04T11:18:09.834Z" @@ -124195,7 +125944,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.168, "topicSearchString": "react-native country flags flag iso icon" }, { @@ -124250,12 +125999,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-alert-queue", "npm": { - "downloads": 241, - "weekDownloads": 16, + "downloads": 246, + "weekDownloads": 28, "size": 161301, "latestRelease": "2.1.0", "latestReleaseDate": "2025-05-01T10:08:49.922Z" @@ -124264,7 +126014,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.943, + "popularity": -0.902, "topicSearchString": "react-native alert dialog promise async queue modal ui react" }, { @@ -124331,19 +126081,20 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-tiny-wavpack-decoder", "npm": { - "downloads": 226, - "weekDownloads": 46, + "downloads": 207, + "weekDownloads": 37, "size": 272291, "latestRelease": "1.1.1", "latestReleaseDate": "2025-08-30T13:00:07.535Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.826, + "popularity": -0.846, "topicSearchString": "react-native wavpack audio-decoder turbo-module new-architecture ios android audio-processing wav file-conversion native-module audio decoder cross-platform progress-events" }, { @@ -124393,13 +126144,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-gzip", "npm": { - "downloads": 226091, - "weekDownloads": 40292, + "downloads": 217712, + "weekDownloads": 51716, "size": 29032, "latestRelease": "1.1.0", "latestReleaseDate": "2023-08-26T05:51:03.540Z" @@ -124410,7 +126162,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.849, + "popularity": -0.798, "topicSearchString": "react-native ios android gzip compress decompress" }, { @@ -124452,11 +126204,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2557, - "weekDownloads": 421, + "downloads": 2630, + "weekDownloads": 443, "size": 695643, "latestRelease": "6.0.0-beta1", "latestReleaseDate": "2025-07-17T07:38:47.619Z" @@ -124466,7 +126219,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.14, + "popularity": 0.143, "topicSearchString": "" }, { @@ -124520,12 +126273,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-emoji-picker", "npm": { - "downloads": 107, - "weekDownloads": 27, + "downloads": 93, + "weekDownloads": 22, "size": 520912, "latestRelease": "1.0.0", "latestReleaseDate": "2025-04-26T11:00:47.122Z" @@ -124534,7 +126288,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.784, + "popularity": -0.79, "topicSearchString": "react-native expo expo-emoji-picker emoji ios android" }, { @@ -124560,10 +126314,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 1 }, "name": "expo-background-task", @@ -124587,12 +126341,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-background-task", "npm": { - "downloads": 179757, - "weekDownloads": 44307, + "downloads": 166940, + "weekDownloads": 34738, "size": 138577, "latestRelease": "1.0.8", "latestReleaseDate": "2025-09-18T21:32:59.093Z" @@ -124606,7 +126361,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.21, + "popularity": 0.177, "topicSearchString": "expo react-native background background-task" }, { @@ -124656,12 +126411,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-webgpu-worklets", "npm": { - "downloads": 98, - "weekDownloads": 20, + "downloads": 104, + "weekDownloads": 19, "size": 38243192, "latestRelease": "0.3.0", "latestReleaseDate": "2025-08-28T15:31:16.782Z" @@ -124670,7 +126426,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.576, + "popularity": -0.592, "topicSearchString": "react-native ios android" }, { @@ -124695,7 +126451,7 @@ "forks": 28, "issues": 3, "subscribers": 6, - "stars": 968, + "stars": 969, "dependencies": 0 }, "name": "react-native-is-edge-to-edge", @@ -124721,12 +126477,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-is-edge-to-edge", "npm": { - "downloads": 8968417, - "weekDownloads": 1726748, + "downloads": 8708383, + "weekDownloads": 1710332, "size": 13042, "latestRelease": "1.2.1", "latestReleaseDate": "2025-07-01T16:08:51.760Z" @@ -124738,7 +126495,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.167, "topicSearchString": "react react-native edge-to-edge status-bar navigation-bar system-bar system-bars" }, { @@ -124801,12 +126558,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "react-native-capture-protection", "npm": { - "downloads": 33684, - "weekDownloads": 5912, + "downloads": 32983, + "weekDownloads": 6179, "size": 175789, "latestRelease": "2.3.2", "latestReleaseDate": "2025-10-09T05:10:08.147Z" @@ -124816,7 +126574,7 @@ "Known", "Recently updated" ], - "popularity": 0.149, + "popularity": 0.159, "topicSearchString": "react-native ios android screen-capture screenrecord screenshot mobile-security privacy screenshot-protection security" }, { @@ -124841,7 +126599,7 @@ "createdAt": "2023-06-09T19:34:59Z", "pushedAt": "2025-06-06T07:22:54Z", "forks": 1, - "issues": 6, + "issues": 5, "subscribers": 2, "stars": 101, "dependencies": 0 @@ -124866,12 +126624,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-stallion", "npm": { - "downloads": 4924, - "weekDownloads": 1056, + "downloads": 4790, + "weekDownloads": 1017, "size": 485114, "latestRelease": "2.2.0", "latestReleaseDate": "2025-06-06T07:22:58.101Z" @@ -124880,7 +126639,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.182, + "popularity": 0.18, "topicSearchString": "react-native ios android stallion" }, { @@ -124904,10 +126663,10 @@ "updatedAt": "2025-09-22T10:50:57Z", "createdAt": "2020-04-08T02:52:26Z", "pushedAt": "2025-09-22T10:50:57Z", - "forks": 204, + "forks": 203, "issues": 13, "subscribers": 12, - "stars": 417, + "stars": 418, "dependencies": 2 }, "name": "react-native-vlc-media-player", @@ -124940,12 +126699,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-vlc-media-player", "npm": { - "downloads": 8924, - "weekDownloads": 2154, + "downloads": 8296, + "weekDownloads": 1967, "size": 325443, "latestRelease": "1.0.96", "latestReleaseDate": "2025-09-22T10:51:36.784Z" @@ -124956,7 +126716,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.205, + "popularity": 0.202, "topicSearchString": "vlc player android ios react-native mp4 rtsp media video media-player rtmp video-player video-streaming vlc-player" }, { @@ -125009,11 +126769,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 108382, - "weekDownloads": 20271, + "downloads": 108754, + "weekDownloads": 20877, "size": 824490, "latestRelease": "25.3.0", "latestReleaseDate": "2025-10-08T01:52:43.700Z" @@ -125024,7 +126785,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.163, "topicSearchString": "react-native ios android airship" }, { @@ -125076,11 +126837,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 887, - "weekDownloads": 81, + "downloads": 4104, + "weekDownloads": 79, "size": 132404881, "latestRelease": "6.0.1", "latestReleaseDate": "2024-12-04T17:24:32.614Z" @@ -125091,7 +126853,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.672, + "popularity": 0.016, "topicSearchString": "react-native ios android" }, { @@ -125149,18 +126911,19 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 849, - "weekDownloads": 209, + "downloads": 790, + "weekDownloads": 113, "size": 164984, "latestRelease": "3.1.1", "latestReleaseDate": "2025-07-15T23:07:31.614Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.54, + "popularity": -0.628, "topicSearchString": "react-native date-picker time-picker calendar" }, { @@ -125217,11 +126980,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 6679, - "weekDownloads": 1257, + "downloads": 6387, + "weekDownloads": 1320, "size": 299599, "latestRelease": "5.1.10", "latestReleaseDate": "2025-08-23T10:56:38.184Z" @@ -125230,7 +126994,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.176, "topicSearchString": "react native react-native react-native-velements rn-vui ui components ui-library ios android bootstrap" }, { @@ -125293,11 +127057,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 6657, - "weekDownloads": 1244, + "downloads": 6344, + "weekDownloads": 1305, "size": 69641, "latestRelease": "5.1.10", "latestReleaseDate": "2025-08-23T10:56:54.523Z" @@ -125306,7 +127071,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.175, "topicSearchString": "react native react-native react-native-velements elements elements-themed themed ui rneui rn-vui themed ui components ui-library ios android bootstrap" }, { @@ -125353,11 +127118,12 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 56707, - "weekDownloads": 10789, + "downloads": 53973, + "weekDownloads": 10292, "size": 196378, "latestRelease": "3.0.0", "latestReleaseDate": "2025-06-05T12:44:51.167Z" @@ -125413,11 +127179,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 201, - "weekDownloads": 37, + "downloads": 219, + "weekDownloads": 24, "size": 42940, "latestRelease": "1.4.1", "latestReleaseDate": "2025-06-05T12:44:55.421Z" @@ -125426,7 +127193,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.843, + "popularity": -0.906, "topicSearchString": "react-native rudder db-encryption" }, { @@ -125473,11 +127240,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 191, - "weekDownloads": 51, + "downloads": 202, + "weekDownloads": 49, "size": 43243, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:29.223Z" @@ -125486,7 +127254,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.768, + "popularity": -0.791, "topicSearchString": "react-native rudder amplitude" }, { @@ -125533,11 +127301,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 907, - "weekDownloads": 183, + "downloads": 863, + "weekDownloads": 144, "size": 45581, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:31.091Z" @@ -125546,7 +127315,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.828, + "popularity": -0.858, "topicSearchString": "react-native rudder appcenter" }, { @@ -125593,11 +127362,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 739, - "weekDownloads": 150, + "downloads": 761, + "weekDownloads": 175, "size": 78391, "latestRelease": "1.7.0", "latestReleaseDate": "2025-04-29T10:32:33.158Z" @@ -125606,7 +127376,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.827, + "popularity": -0.804, "topicSearchString": "react-native rudder appsflyer" }, { @@ -125653,11 +127423,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 155, - "weekDownloads": 38, + "downloads": 187, + "weekDownloads": 63, "size": 44155, "latestRelease": "2.0.0", "latestReleaseDate": "2025-04-29T10:32:35.390Z" @@ -125666,7 +127437,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.789, + "popularity": -0.714, "topicSearchString": "react-native rudder braze" }, { @@ -125713,11 +127484,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 293, - "weekDownloads": 46, + "downloads": 309, + "weekDownloads": 66, "size": 44124, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:37.525Z" @@ -125726,7 +127498,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.865, + "popularity": -0.817, "topicSearchString": "react-native rudder clevertap" }, { @@ -125773,10 +127545,11 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 76, + "downloads": 100, "weekDownloads": 6, "size": 38309, "latestRelease": "1.1.0", @@ -125786,7 +127559,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.929, + "popularity": -0.948, "topicSearchString": "react-native rudder facebook" }, { @@ -125833,11 +127606,12 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 10703, - "weekDownloads": 2090, + "downloads": 10230, + "weekDownloads": 1845, "size": 27838, "latestRelease": "2.2.0", "latestReleaseDate": "2025-10-15T11:03:10.000Z" @@ -125847,7 +127621,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.084, + "popularity": -0.097, "topicSearchString": "react-native rudder firebase" }, { @@ -125894,11 +127668,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 119, - "weekDownloads": 5, + "downloads": 159, + "weekDownloads": 7, "size": 43031, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:43.693Z" @@ -125907,7 +127682,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.964, + "popularity": -0.962, "topicSearchString": "react-native rudder moengage" }, { @@ -125954,11 +127729,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 78, - "weekDownloads": 4, + "downloads": 118, + "weekDownloads": 5, "size": 43104, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:45.799Z" @@ -125967,7 +127743,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.956, + "popularity": -0.963, "topicSearchString": "react-native rudder singular" }, { @@ -125995,7 +127771,7 @@ "forks": 8, "issues": 10, "subscribers": 6, - "stars": 120, + "stars": 121, "dependencies": 0 }, "name": "@azzapp/react-native-skia-video", @@ -126022,11 +127798,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 2012, - "weekDownloads": 306, + "downloads": 2070, + "weekDownloads": 245, "size": 368072, "latestRelease": "0.9.0", "latestReleaseDate": "2025-09-26T07:22:27.721Z" @@ -126036,7 +127813,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.129, + "popularity": 0.101, "topicSearchString": "react-native ios android skia video video-composition" }, { @@ -126091,12 +127868,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-image-crop-tool", "npm": { - "downloads": 12164, - "weekDownloads": 1343, + "downloads": 12161, + "weekDownloads": 2051, "size": 38387, "latestRelease": "0.3.1", "latestReleaseDate": "2025-07-18T18:11:11.329Z" @@ -126105,7 +127883,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.094, + "popularity": 0.143, "topicSearchString": "react-native expo expo-image-crop-tool image-crop-tool cropper crop-tool image expoimagecroptool" }, { @@ -126125,9 +127903,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-13T22:39:30Z", + "updatedAt": "2025-10-18T19:09:40Z", "createdAt": "2021-06-11T16:50:45Z", - "pushedAt": "2025-10-13T22:39:30Z", + "pushedAt": "2025-10-18T19:09:40Z", "forks": 21, "issues": 1, "subscribers": 2, @@ -126154,12 +127932,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-cached-image", "npm": { - "downloads": 5238, - "weekDownloads": 766, + "downloads": 5352, + "weekDownloads": 971, "size": 22983, "latestRelease": "54.0.7", "latestReleaseDate": "2025-10-13T22:40:20.931Z" @@ -126169,7 +127948,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.124, + "popularity": 0.154, "topicSearchString": "expo react-native image cached" }, { @@ -126221,12 +128000,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-shazamkit", "npm": { - "downloads": 108, - "weekDownloads": 22, + "downloads": 124, + "weekDownloads": 25, "size": 25395, "latestRelease": "1.0.0", "latestReleaseDate": "2024-01-11T23:40:14.472Z" @@ -126236,7 +128016,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.574, + "popularity": -0.578, "topicSearchString": "react-native expo shazamkit shazam music ios" }, { @@ -126292,11 +128072,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 6869, - "weekDownloads": 1296, + "downloads": 6575, + "weekDownloads": 1348, "size": 103415, "latestRelease": "0.5.0", "latestReleaseDate": "2025-05-16T17:44:36.588Z" @@ -126305,7 +128086,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.09, + "popularity": -0.076, "topicSearchString": "react-native ios android" }, { @@ -126330,10 +128111,10 @@ "updatedAt": "2025-09-22T13:43:22Z", "createdAt": "2014-09-22T23:54:22Z", "pushedAt": "2025-09-22T13:43:22Z", - "forks": 934, + "forks": 935, "issues": 157, "subscribers": 75, - "stars": 23588, + "stars": 23594, "dependencies": 4 }, "name": "yup", @@ -126351,12 +128132,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "yup", "npm": { - "downloads": 35163812, - "weekDownloads": 6502912, + "downloads": 33554260, + "weekDownloads": 6431197, "size": 270432, "latestRelease": "1.7.1", "latestReleaseDate": "2025-09-21T13:59:55.107Z" @@ -126370,7 +128152,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.163, "topicSearchString": "" }, { @@ -126390,13 +128172,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-10-15T17:48:39Z", + "updatedAt": "2025-10-17T22:44:37Z", "createdAt": "2024-12-06T23:16:55Z", - "pushedAt": "2025-10-15T17:48:39Z", - "forks": 154, - "issues": 68, + "pushedAt": "2025-10-17T22:44:37Z", + "forks": 155, + "issues": 69, "subscribers": 26, - "stars": 1163, + "stars": 1167, "dependencies": 2 }, "name": "@google/genai", @@ -126414,11 +128196,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 7618969, - "weekDownloads": 1566099, + "downloads": 7548123, + "weekDownloads": 1534651, "size": 7966696, "latestRelease": "1.25.0", "latestReleaseDate": "2025-10-15T03:42:14.866Z" @@ -126431,7 +128214,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.173, "topicSearchString": "" }, { @@ -126507,11 +128290,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1877, - "weekDownloads": 299, + "downloads": 1890, + "weekDownloads": 288, "size": 32414, "latestRelease": "1.0.5", "latestReleaseDate": "2025-08-15T09:24:18.866Z" @@ -126520,7 +128304,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.114, + "popularity": -0.12, "topicSearchString": "react-native checkbox animated-checkbox component ui-component cross-platform accessibility typescript expo ui mobile-ui customizable-checkbox animation ios android web material-design form-component paper vector-icons" }, { @@ -126574,10 +128358,11 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 1, + "downloads": 22, "weekDownloads": 0, "size": 1372806, "latestRelease": "0.1.5", @@ -126618,7 +128403,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 4 }, "name": "@rn-primitives/accordion", @@ -126636,11 +128421,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 127583, - "weekDownloads": 18175, + "downloads": 125962, + "weekDownloads": 22111, "size": 41368, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.851Z" @@ -126651,7 +128437,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.121, + "popularity": 0.149, "topicSearchString": "" }, { @@ -126684,7 +128470,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 4 }, "name": "@rn-primitives/alert-dialog", @@ -126702,11 +128488,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 77269, - "weekDownloads": 13165, + "downloads": 75527, + "weekDownloads": 13203, "size": 43716, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.827Z" @@ -126716,7 +128503,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.145, + "popularity": 0.149, "topicSearchString": "" }, { @@ -126749,7 +128536,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 2 }, "name": "@rn-primitives/aspect-ratio", @@ -126767,11 +128554,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 53262, - "weekDownloads": 9335, + "downloads": 53139, + "weekDownloads": 9871, "size": 7257, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.989Z" @@ -126781,7 +128569,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.158, "topicSearchString": "" }, { @@ -126814,7 +128602,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 3 }, "name": "@rn-primitives/avatar", @@ -126832,11 +128620,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 131864, - "weekDownloads": 22800, + "downloads": 128194, + "weekDownloads": 23103, "size": 13154, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.616Z" @@ -126847,7 +128636,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.153, "topicSearchString": "" }, { @@ -126880,7 +128669,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 4 }, "name": "@rn-primitives/checkbox", @@ -126898,11 +128687,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 131481, - "weekDownloads": 23642, + "downloads": 129014, + "weekDownloads": 23433, "size": 21426, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.643Z" @@ -126913,7 +128703,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.154, "topicSearchString": "" }, { @@ -126946,7 +128736,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 4 }, "name": "@rn-primitives/collapsible", @@ -126964,11 +128754,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 143648, - "weekDownloads": 22250, + "downloads": 140665, + "weekDownloads": 26039, "size": 25380, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.773Z" @@ -126979,7 +128770,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.132, + "popularity": 0.157, "topicSearchString": "" }, { @@ -127012,7 +128803,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 5 }, "name": "@rn-primitives/context-menu", @@ -127030,11 +128821,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 47106, - "weekDownloads": 7901, + "downloads": 47693, + "weekDownloads": 8119, "size": 86150, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.922Z" @@ -127044,7 +128836,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.145, "topicSearchString": "" }, { @@ -127077,7 +128869,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 4 }, "name": "@rn-primitives/dialog", @@ -127095,11 +128887,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 113032, - "weekDownloads": 20297, + "downloads": 109075, + "weekDownloads": 19684, "size": 40364, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.006Z" @@ -127143,7 +128936,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 5 }, "name": "@rn-primitives/dropdown-menu", @@ -127161,11 +128954,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 152960, - "weekDownloads": 23875, + "downloads": 152389, + "weekDownloads": 27409, "size": 84829, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.021Z" @@ -127176,7 +128970,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.133, + "popularity": 0.153, "topicSearchString": "" }, { @@ -127209,7 +129003,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 5 }, "name": "@rn-primitives/hover-card", @@ -127227,11 +129021,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 40182, - "weekDownloads": 6589, + "downloads": 40834, + "weekDownloads": 7008, "size": 35695, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.245Z" @@ -127241,7 +129036,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.139, + "popularity": 0.146, "topicSearchString": "" }, { @@ -127274,7 +129069,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 3 }, "name": "@rn-primitives/label", @@ -127292,11 +129087,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 120085, - "weekDownloads": 21387, + "downloads": 118186, + "weekDownloads": 21478, "size": 13810, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.980Z" @@ -127307,7 +129103,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.154, "topicSearchString": "" }, { @@ -127340,7 +129136,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 5 }, "name": "@rn-primitives/menubar", @@ -127358,11 +129154,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 39559, - "weekDownloads": 6709, + "downloads": 39279, + "weekDownloads": 6980, "size": 85643, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.664Z" @@ -127372,7 +129169,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.151, "topicSearchString": "" }, { @@ -127405,7 +129202,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 5 }, "name": "@rn-primitives/navigation-menu", @@ -127423,11 +129220,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 33603, - "weekDownloads": 5506, + "downloads": 33680, + "weekDownloads": 5995, "size": 46892, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.589Z" @@ -127437,7 +129235,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.139, + "popularity": 0.151, "topicSearchString": "" }, { @@ -127470,7 +129268,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 4 }, "name": "@rn-primitives/popover", @@ -127488,11 +129286,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 63147, - "weekDownloads": 10641, + "downloads": 63184, + "weekDownloads": 10731, "size": 40267, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.184Z" @@ -127502,7 +129301,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.144, "topicSearchString": "" }, { @@ -127535,7 +129334,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 3 }, "name": "@rn-primitives/progress", @@ -127553,11 +129352,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 107065, - "weekDownloads": 16797, + "downloads": 106889, + "weekDownloads": 18394, "size": 14774, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:03.843Z" @@ -127568,7 +129368,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.133, + "popularity": 0.146, "topicSearchString": "" }, { @@ -127601,7 +129401,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 3 }, "name": "@rn-primitives/radio-group", @@ -127619,11 +129419,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 94782, - "weekDownloads": 17544, + "downloads": 88726, + "weekDownloads": 16967, "size": 21539, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.163Z" @@ -127634,7 +129435,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.163, "topicSearchString": "" }, { @@ -127666,7 +129467,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 4 }, "name": "@rn-primitives/select", @@ -127684,11 +129485,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 152762, - "weekDownloads": 23147, + "downloads": 152440, + "weekDownloads": 27573, "size": 62839, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.598Z" @@ -127699,7 +129501,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.129, + "popularity": 0.154, "topicSearchString": "" }, { @@ -127732,7 +129534,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 3 }, "name": "@rn-primitives/separator", @@ -127750,11 +129552,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 100612, - "weekDownloads": 16981, + "downloads": 100065, + "weekDownloads": 17103, "size": 7629, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.825Z" @@ -127765,7 +129568,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.145, "topicSearchString": "" }, { @@ -127798,7 +129601,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 3 }, "name": "@rn-primitives/slider", @@ -127816,11 +129619,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 12342, - "weekDownloads": 2028, + "downloads": 11872, + "weekDownloads": 2039, "size": 19152, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.949Z" @@ -127830,7 +129634,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.14, + "popularity": 0.146, "topicSearchString": "" }, { @@ -127863,7 +129667,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 3 }, "name": "@rn-primitives/switch", @@ -127881,11 +129685,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 181100, - "weekDownloads": 28959, + "downloads": 178629, + "weekDownloads": 32012, "size": 15802, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.724Z" @@ -127896,7 +129701,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.136, + "popularity": 0.152, "topicSearchString": "" }, { @@ -127929,7 +129734,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 2 }, "name": "@rn-primitives/table", @@ -127947,11 +129752,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 53583, - "weekDownloads": 10288, + "downloads": 52334, + "weekDownloads": 9991, "size": 12999, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.352Z" @@ -127961,7 +129767,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.162, "topicSearchString": "" }, { @@ -127994,7 +129800,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 3 }, "name": "@rn-primitives/tabs", @@ -128012,11 +129818,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 136506, - "weekDownloads": 19288, + "downloads": 137329, + "weekDownloads": 22789, "size": 25704, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.800Z" @@ -128027,7 +129834,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.12, + "popularity": 0.141, "topicSearchString": "" }, { @@ -128060,7 +129867,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 2 }, "name": "@rn-primitives/toast", @@ -128078,11 +129885,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 9113, - "weekDownloads": 1766, + "downloads": 8724, + "weekDownloads": 1492, "size": 15022, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.531Z" @@ -128092,7 +129900,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.145, "topicSearchString": "" }, { @@ -128125,7 +129933,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 3 }, "name": "@rn-primitives/toggle", @@ -128143,11 +129951,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 64153, - "weekDownloads": 11401, + "downloads": 63671, + "weekDownloads": 12032, "size": 12843, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.562Z" @@ -128157,7 +129966,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.161, "topicSearchString": "" }, { @@ -128190,7 +129999,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 4 }, "name": "@rn-primitives/toggle-group", @@ -128208,11 +130017,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 49304, - "weekDownloads": 8408, + "downloads": 49355, + "weekDownloads": 8781, "size": 25037, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.070Z" @@ -128222,7 +130032,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.145, + "popularity": 0.151, "topicSearchString": "" }, { @@ -128255,7 +130065,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 4 }, "name": "@rn-primitives/toolbar", @@ -128273,11 +130083,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2751, - "weekDownloads": 522, + "downloads": 2728, + "weekDownloads": 472, "size": 30059, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.345Z" @@ -128287,7 +130098,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.147, "topicSearchString": "" }, { @@ -128320,7 +130131,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 4 }, "name": "@rn-primitives/tooltip", @@ -128338,11 +130149,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 76637, - "weekDownloads": 13126, + "downloads": 76758, + "weekDownloads": 13289, "size": 36725, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.724Z" @@ -128352,7 +130164,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.147, "topicSearchString": "" }, { @@ -128384,7 +130196,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 1 }, "name": "@rn-primitives/hooks", @@ -128402,11 +130214,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 325357, - "weekDownloads": 56414, + "downloads": 319383, + "weekDownloads": 59184, "size": 21709, "latestRelease": "1.3.0", "latestReleaseDate": "2025-05-20T20:18:04.797Z" @@ -128417,7 +130230,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.158, "topicSearchString": "" }, { @@ -128449,7 +130262,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 1 }, "name": "@rn-primitives/portal", @@ -128467,11 +130280,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 320239, - "weekDownloads": 53692, + "downloads": 310950, + "weekDownloads": 57901, "size": 9495, "latestRelease": "1.3.0", "latestReleaseDate": "2025-05-20T20:18:04.822Z" @@ -128482,7 +130296,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.158, "topicSearchString": "" }, { @@ -128514,7 +130328,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 0 }, "name": "@rn-primitives/slot", @@ -128532,11 +130346,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 385657, - "weekDownloads": 68320, + "downloads": 376346, + "weekDownloads": 70870, "size": 13773, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.876Z" @@ -128547,7 +130362,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.16, "topicSearchString": "" }, { @@ -128580,7 +130395,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 0 }, "name": "@rn-primitives/types", @@ -128598,11 +130413,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 374771, - "weekDownloads": 66459, + "downloads": 366142, + "weekDownloads": 69206, "size": 8209, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.715Z" @@ -128613,7 +130429,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.161, "topicSearchString": "" }, { @@ -128645,7 +130461,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 768, + "stars": 770, "dependencies": 0 }, "name": "@rn-primitives/utils", @@ -128663,11 +130479,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 166151, - "weekDownloads": 26398, + "downloads": 165068, + "weekDownloads": 29787, "size": 7110, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.912Z" @@ -128678,7 +130495,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.135, + "popularity": 0.153, "topicSearchString": "" }, { @@ -128700,13 +130517,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T11:39:58Z", + "updatedAt": "2025-10-17T18:39:24Z", "createdAt": "2025-03-24T04:05:41Z", - "pushedAt": "2025-09-08T11:39:58Z", + "pushedAt": "2025-10-17T18:39:24Z", "forks": 4, - "issues": 1, + "issues": 0, "subscribers": 2, - "stars": 109, + "stars": 111, "dependencies": 0 }, "name": "expo-passkey", @@ -128737,21 +130554,23 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-passkey", "npm": { - "downloads": 920, - "weekDownloads": 178, - "size": 711347, - "latestRelease": "0.2.3", - "latestReleaseDate": "2025-09-08T11:41:42.480Z" + "downloads": 982, + "weekDownloads": 131, + "size": 720146, + "latestRelease": "0.3.0", + "latestReleaseDate": "2025-10-17T18:31:23.403Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.585, + "popularity": -0.637, "topicSearchString": "react-native expo expo-passkey expopasskeymodule passkey biometric authentication better-auth face-id touch-id fingerprint" }, { @@ -128806,13 +130625,14 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "unmaintained": true, "npmPkg": "react-native-turbo-mock-location-detector", "npm": { - "downloads": 9368, - "weekDownloads": 1597, + "downloads": 9018, + "weekDownloads": 1462, "size": 84310, "latestRelease": "2.3.1", "latestReleaseDate": "2023-10-12T16:52:22.491Z" @@ -128821,7 +130641,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.605, + "popularity": -0.612, "topicSearchString": "react-native ios android fabric typescript newarchitecture" }, { @@ -128882,11 +130702,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 758, - "weekDownloads": 38, + "downloads": 1142, + "weekDownloads": 43, "size": 29975, "latestRelease": "0.2.1", "latestReleaseDate": "2025-06-03T13:07:57.371Z" @@ -128895,7 +130716,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.957, + "popularity": -0.218, "topicSearchString": "react-native ios android status-bar status-bar-height status-bar-height-ios status-bar-height-android status-bar-height-ios-android bottom-inset safe-area safe-area-inset" }, { @@ -128955,11 +130776,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 529, - "weekDownloads": 98, + "downloads": 496, + "weekDownloads": 107, "size": 92479, "latestRelease": "0.3.12", "latestReleaseDate": "2025-06-19T13:36:19.454Z" @@ -128968,7 +130790,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.842, + "popularity": -0.816, "topicSearchString": "react-native ios android tvos analytics tracking matomo tracker" }, { @@ -129031,11 +130853,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 952, - "weekDownloads": 132, + "downloads": 905, + "weekDownloads": 153, "size": 52409, "latestRelease": "0.3.2", "latestReleaseDate": "2025-08-07T16:44:04.091Z" @@ -129044,7 +130867,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.882, + "popularity": -0.856, "topicSearchString": "react-native ios android foldable fold-detection dual-screen foldable-phone fold foldable-device device-posture screen-posture multi-window foldable-support foldable-devices" }, { @@ -129094,12 +130917,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-fs", "npm": { - "downloads": 299, - "weekDownloads": 26, + "downloads": 313, + "weekDownloads": 22, "size": 240475, "latestRelease": "0.7.0", "latestReleaseDate": "2025-10-07T16:57:43.306Z" @@ -129109,7 +130933,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.676, + "popularity": -0.69, "topicSearchString": "react-native" }, { @@ -129165,12 +130989,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-google-sso", "npm": { - "downloads": 66, - "weekDownloads": 10, + "downloads": 70, + "weekDownloads": 11, "size": 114477, "latestRelease": "1.1.7", "latestReleaseDate": "2025-08-22T02:33:17.304Z" @@ -129179,7 +131004,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.867, + "popularity": -0.863, "topicSearchString": "react-native nitro nitro-modules google-sso nitro-google-sso google-signin sso" }, { @@ -129225,12 +131050,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-css", "npm": { - "downloads": 1095, - "weekDownloads": 184, + "downloads": 1569, + "weekDownloads": 176, "size": 438271, "latestRelease": "2.0.1", "latestReleaseDate": "2025-10-12T22:10:42.932Z" @@ -129240,7 +131066,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.095, "topicSearchString": "" }, { @@ -129300,11 +131126,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 340201, - "weekDownloads": 54210, + "downloads": 329984, + "weekDownloads": 69713, "size": 21202312, "latestRelease": "2.5.3", "latestReleaseDate": "2025-09-28T18:36:39.486Z" @@ -129315,7 +131142,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.135, + "popularity": 0.18, "topicSearchString": "pdf-lib pdf document create modify creation modification edit editing typescript javascript library" }, { @@ -129373,11 +131200,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 20, - "weekDownloads": 4, + "downloads": 23, + "weekDownloads": 2, "size": 63872, "latestRelease": "2.1.3", "latestReleaseDate": "2025-05-20T10:18:29.957Z" @@ -129386,7 +131214,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.8, + "popularity": -0.92, "topicSearchString": "react native navigation web" }, { @@ -129437,12 +131265,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": true }, "npmPkg": "pushy-expo-plugin", "npm": { - "downloads": 523, - "weekDownloads": 74, + "downloads": 537, + "weekDownloads": 56, "size": 14132, "latestRelease": "1.0.5", "latestReleaseDate": "2025-08-05T07:44:29.177Z" @@ -129451,7 +131280,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.88, + "popularity": -0.911, "topicSearchString": "" }, { @@ -129527,12 +131356,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "fast-is-equal", "npm": { - "downloads": 1758, - "weekDownloads": 338, + "downloads": 1679, + "weekDownloads": 292, "size": 37837, "latestRelease": "1.2.3", "latestReleaseDate": "2025-05-31T07:56:12.995Z" @@ -129541,7 +131371,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.086, + "popularity": -0.102, "topicSearchString": "deep-equal equality compare lodash isequal fast performance typescript javascript react react-native vue angular object-comparison array-comparison deep-comparison utility lightweight zero-dependencies circular-references map set immutable benchmark speed efficient alternative replacement" }, { @@ -129590,11 +131420,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 59953, - "weekDownloads": 11066, + "downloads": 57563, + "weekDownloads": 11125, "size": 94759, "latestRelease": "1.6.0", "latestReleaseDate": "2025-05-13T14:31:23.956Z" @@ -129603,7 +131434,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.164, "topicSearchString": "" }, { @@ -129634,7 +131465,7 @@ "forks": 689, "issues": 1, "subscribers": 68, - "stars": 20602, + "stars": 20614, "dependencies": 0 }, "name": "jotai", @@ -129661,12 +131492,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "jotai", "npm": { - "downloads": 9336847, - "weekDownloads": 1753450, + "downloads": 8998479, + "weekDownloads": 1718068, "size": 495678, "latestRelease": "2.15.0", "latestReleaseDate": "2025-09-25T15:30:23.496Z" @@ -129679,7 +131511,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.162, "topicSearchString": "react state manager management recoil store atomic hacktoberfest" }, { @@ -129732,12 +131564,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "geolib", "npm": { - "downloads": 1425516, - "weekDownloads": 273053, + "downloads": 1363894, + "weekDownloads": 265040, "size": 104758, "latestRelease": "3.3.4", "latestReleaseDate": "2023-06-01T08:02:38.009Z" @@ -129750,7 +131583,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.165, "topicSearchString": "geolib wgs84 distance geography geojson sexagesimal latlng hacktoberfest" }, { @@ -129780,7 +131613,7 @@ "forks": 115, "issues": 3, "subscribers": 9, - "stars": 3312, + "stars": 3314, "dependencies": 0 }, "name": "use-debounce", @@ -129805,12 +131638,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "use-debounce", "npm": { - "downloads": 10782404, - "weekDownloads": 1986580, + "downloads": 10444891, + "weekDownloads": 1941105, "size": 110056, "latestRelease": "10.0.6", "latestReleaseDate": "2025-09-01T22:38:10.929Z" @@ -129822,7 +131656,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.158, "topicSearchString": "debounce react-hook react react-hooks usedebounce react-use" }, { @@ -129878,12 +131712,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-google-places-sdk", "npm": { - "downloads": 13910, - "weekDownloads": 2965, + "downloads": 12598, + "weekDownloads": 2643, "size": 106004, "latestRelease": "0.3.1", "latestReleaseDate": "2025-01-30T16:07:51.849Z" @@ -129893,7 +131728,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.181, + "popularity": 0.178, "topicSearchString": "react-native ios android google-places places-sdk typescript autocomplete google-places-sdk" }, { @@ -129915,10 +131750,10 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T14:26:43Z", + "updatedAt": "2025-10-17T04:50:58Z", "createdAt": "2024-07-03T16:14:40Z", - "pushedAt": "2025-10-16T14:26:43Z", - "forks": 28, + "pushedAt": "2025-10-17T04:50:58Z", + "forks": 27, "issues": 0, "subscribers": 1, "stars": 279, @@ -129950,15 +131785,16 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-iap", "npm": { - "downloads": 51990, - "weekDownloads": 9191, - "size": 1865828, - "latestRelease": "3.1.17", - "latestReleaseDate": "2025-10-16T08:45:15.848Z" + "downloads": 52300, + "weekDownloads": 9796, + "size": 1865806, + "latestRelease": "3.1.18", + "latestReleaseDate": "2025-10-17T04:51:25.324Z" }, "score": 57, "matchingScoreModifiers": [ @@ -129966,7 +131802,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.159, "topicSearchString": "react-native expo expo-iap expoiap inapp inapp-billing inapppurchase reactnative openiap" }, { @@ -129995,7 +131831,7 @@ "forks": 471, "issues": 17, "subscribers": 67, - "stars": 11654, + "stars": 11656, "dependencies": 0 }, "name": "mitt", @@ -130024,13 +131860,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "mitt", "npm": { - "downloads": 55772082, - "weekDownloads": 10332466, + "downloads": 53397076, + "weekDownloads": 10211299, "size": 26444, "latestRelease": "3.0.1", "latestReleaseDate": "2023-07-04T17:31:47.638Z" @@ -130043,7 +131880,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.587, "topicSearchString": "events eventemitter emitter pubsub mitt event-handlers tiny event event-bus event-listener" }, { @@ -130098,11 +131935,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 498, - "weekDownloads": 62, + "downloads": 481, + "weekDownloads": 72, "size": 43527, "latestRelease": "0.2.1", "latestReleaseDate": "2025-10-07T21:35:28.592Z" @@ -130112,7 +131950,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.894, + "popularity": -0.873, "topicSearchString": "expo cache github build eas react-native" }, { @@ -130136,10 +131974,10 @@ "updatedAt": "2025-09-14T08:26:02Z", "createdAt": "2020-04-21T11:56:22Z", "pushedAt": "2025-09-14T08:26:02Z", - "forks": 196, + "forks": 195, "issues": 52, "subscribers": 11, - "stars": 2124, + "stars": 2125, "dependencies": 1 }, "name": "@hookform/resolvers", @@ -130187,11 +132025,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 49395695, - "weekDownloads": 11335808, + "downloads": 46342167, + "weekDownloads": 9563669, "size": 989826, "latestRelease": "5.2.2", "latestReleaseDate": "2025-09-14T08:30:00.918Z" @@ -130203,7 +132042,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.195, + "popularity": 0.175, "topicSearchString": "scheme validation scheme-validation hookform react-hook-form yup joi superstruct typescript zod vest class-validator io-ts effect-ts nope computed-types typanion ajv typebox arktype typeschema vine fluentvalidation-ts standard-schema form form-validation hooks schema-validation resolvers" }, { @@ -130229,7 +132068,7 @@ "forks": 131, "issues": 1, "subscribers": 12, - "stars": 6547, + "stars": 6550, "dependencies": 1 }, "name": "class-variance-authority", @@ -130258,12 +132097,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "class-variance-authority", "npm": { - "downloads": 35732759, - "weekDownloads": 6582597, + "downloads": 35141735, + "weekDownloads": 6533730, "size": 22073, "latestRelease": "0.7.1", "latestReleaseDate": "2024-11-26T08:20:34.604Z" @@ -130275,7 +132115,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.158, "topicSearchString": "class-variance-authority class-variance-authority classes classname classnames css cva stitches vanilla-extract variants" }, { @@ -130304,7 +132144,7 @@ "forks": 27, "issues": 2, "subscribers": 3, - "stars": 234, + "stars": 233, "dependencies": 0 }, "name": "phosphor-react-native", @@ -130332,12 +132172,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "phosphor-react-native", "npm": { - "downloads": 184208, - "weekDownloads": 20030, + "downloads": 186951, + "weekDownloads": 20960, "size": 23534500, "latestRelease": "3.0.1", "latestReleaseDate": "2025-09-27T23:22:16.176Z" @@ -130348,7 +132189,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.092, + "popularity": 0.095, "topicSearchString": "react-native ios android react icons phosphoricons svg-icons svg" }, { @@ -130406,12 +132247,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ranking-leaderboard", "npm": { - "downloads": 34, - "weekDownloads": 3, + "downloads": 60, + "weekDownloads": 0, "size": 2626397, "latestRelease": "0.7.1", "latestReleaseDate": "2025-06-13T15:10:20.676Z" @@ -130420,7 +132262,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.925, + "popularity": -1, "topicSearchString": "react-native leaderboard scoreboard ranking rank profile customizable ios android component library package" }, { @@ -130449,7 +132291,7 @@ "forks": 20, "issues": 21, "subscribers": 10, - "stars": 465, + "stars": 470, "dependencies": 0 }, "name": "react-native-reanimated-dnd", @@ -130474,12 +132316,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-reanimated-dnd", "npm": { - "downloads": 136505, - "weekDownloads": 27626, + "downloads": 131609, + "weekDownloads": 27019, "size": 99622, "latestRelease": "1.1.0", "latestReleaseDate": "2025-06-15T12:03:03.582Z" @@ -130490,7 +132333,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.175, "topicSearchString": "react-native drag-and-drop reanimated sortable dnd gesture-handler" }, { @@ -130543,13 +132386,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-pressable-opacity", "npm": { - "downloads": 17722, - "weekDownloads": 2870, + "downloads": 17121, + "weekDownloads": 2556, "size": 16799, "latestRelease": "1.0.10", "latestReleaseDate": "2022-04-20T16:08:30.012Z" @@ -130559,7 +132403,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, + "popularity": -0.623, "topicSearchString": "react native pressable opacity component module pressability button" }, { @@ -130626,13 +132470,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-highlight-overlay", "npm": { - "downloads": 580, - "weekDownloads": 80, + "downloads": 637, + "weekDownloads": 61, "size": 152110, "latestRelease": "1.4.0", "latestReleaseDate": "2022-11-06T16:41:02.933Z" @@ -130642,7 +132487,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.382, + "popularity": -1.418, "topicSearchString": "react-native ios android web overlay highlight focus typed typescript tooltip tutorial hint walkthrough react reanimated reanimated2 tint typescript-library" }, { @@ -130698,12 +132543,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-video-trim", "npm": { - "downloads": 7855, - "weekDownloads": 1696, + "downloads": 7743, + "weekDownloads": 1734, "size": 310064, "latestRelease": "6.0.7", "latestReleaseDate": "2025-09-26T16:38:56.595Z" @@ -130712,7 +132558,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.184, + "popularity": 0.19, "topicSearchString": "react-native ios android video video-processing video-editor video-trim" }, { @@ -130735,13 +132581,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-14T19:24:04Z", + "updatedAt": "2025-10-18T10:35:11Z", "createdAt": "2024-09-17T10:57:24Z", - "pushedAt": "2025-10-14T19:24:04Z", + "pushedAt": "2025-10-18T10:35:11Z", "forks": 1, "issues": 0, "subscribers": 2, - "stars": 187, + "stars": 189, "dependencies": 0 }, "name": "pressto", @@ -130753,8 +132599,12 @@ "react-native", "ios", "android", - "gesture-handler", + "pressable", + "touchable", + "gesture", + "animation", "reanimated", + "gesture-handler", "pressables" ], "license": { @@ -130767,23 +132617,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "pressto", "npm": { - "downloads": 3646, - "weekDownloads": 583, - "size": 93484, - "latestRelease": "0.5.1", - "latestReleaseDate": "2025-10-14T19:23:50.239Z" + "downloads": 3913, + "weekDownloads": 471, + "size": 120098, + "latestRelease": "0.6.0", + "latestReleaseDate": "2025-10-18T10:35:06.858Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.136, - "topicSearchString": "react-native ios android gesture-handler reanimated pressables" + "popularity": 0.102, + "topicSearchString": "react-native ios android pressable touchable gesture animation reanimated gesture-handler pressables" }, { "githubUrl": "https://github.com/drizzle-team/drizzle-orm/tree/main/drizzle-orm", @@ -130805,10 +132656,10 @@ "updatedAt": "2025-10-02T09:30:21Z", "createdAt": "2021-06-24T09:03:05Z", "pushedAt": "2025-10-02T09:30:21Z", - "forks": 1039, - "issues": 1487, - "subscribers": 64, - "stars": 30781, + "forks": 1043, + "issues": 1486, + "subscribers": 65, + "stars": 30816, "dependencies": 0 }, "name": "drizzle-orm", @@ -130840,12 +132691,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "drizzle-orm", "npm": { - "downloads": 9532153, - "weekDownloads": 1733799, + "downloads": 9392645, + "weekDownloads": 1682264, "size": 10380227, "latestRelease": "0.44.6", "latestReleaseDate": "2025-10-02T09:49:33.326Z" @@ -130859,7 +132711,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.152, "topicSearchString": "drizzle orm pg mysql singlestore postgresql postgres sqlite database sql typescript ts drizzle-orm" }, { @@ -130913,13 +132765,14 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "unmaintained": true, "npmPkg": "react-native-exit-app", "npm": { - "downloads": 188029, - "weekDownloads": 35181, + "downloads": 181353, + "weekDownloads": 34214, "size": 40270, "latestRelease": "2.0.0", "latestReleaseDate": "2023-06-30T06:50:14.405Z" @@ -130929,7 +132782,7 @@ "Known", "Not updated recently" ], - "popularity": -0.591, + "popularity": -0.59, "topicSearchString": "react native exit close shutdown kill android ios react-native" }, { @@ -130990,12 +132843,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-device-country", "npm": { - "downloads": 13287, - "weekDownloads": 2692, + "downloads": 12079, + "weekDownloads": 2725, "size": 34817, "latestRelease": "1.1.1", "latestReleaseDate": "2025-06-04T07:58:35.224Z" @@ -131004,7 +132858,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.192, "topicSearchString": "react-native ios android country device location device-location phone-location gps-location gps phone-code phone-number simcard" }, { @@ -131027,10 +132881,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-checkbox", @@ -131053,12 +132907,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-checkbox", "npm": { - "downloads": 329628, - "weekDownloads": 67228, + "downloads": 318437, + "weekDownloads": 63597, "size": 50415, "latestRelease": "5.0.7", "latestReleaseDate": "2025-09-11T20:26:09.695Z" @@ -131071,7 +132926,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.17, "topicSearchString": "react-native expo expo-checkbox" }, { @@ -131135,11 +132990,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-pushdown-alert", "npm": { - "downloads": 10, + "downloads": 27, "weekDownloads": 1, "size": 126341, "latestRelease": "0.5.2", @@ -131149,7 +133005,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.9, + "popularity": -0.967, "topicSearchString": "react-native ios android web alert pushdown-alert notification customizable success-alert error-alert warning-alert animation dropdown notifications pushdown" }, { @@ -131216,12 +133072,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-credentials-manager", "npm": { - "downloads": 1196, - "weekDownloads": 270, + "downloads": 1271, + "weekDownloads": 324, "size": 158464, "latestRelease": "0.8.0", "latestReleaseDate": "2025-10-16T10:41:15.348Z" @@ -131230,7 +133087,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.192, + "popularity": 0.217, "topicSearchString": "react-native ios android passkeys webauthn authentication credential-manager google-signin passwordless biometric security identity fido2 signin google-sign-in password-manager signup" }, { @@ -131285,12 +133142,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-resolve-url", "npm": { - "downloads": 2, - "weekDownloads": 0, + "downloads": 4, + "weekDownloads": 1, "size": 14753, "latestRelease": "1.0.1", "latestReleaseDate": "2025-04-17T15:52:03.756Z" @@ -131357,11 +133215,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 5871, - "weekDownloads": 1188, + "downloads": 5230, + "weekDownloads": 1073, "size": 23031, "latestRelease": "1.0.6", "latestReleaseDate": "2024-12-16T11:19:16.263Z" @@ -131371,7 +133230,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.078, + "popularity": -0.076, "topicSearchString": "react react-native word cloud wordcloud word-cloud buuble bubble-chart visualization tag tagcloud tag-cloud" }, { @@ -131428,12 +133287,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-network-info", "npm": { - "downloads": 98, - "weekDownloads": 13, + "downloads": 99, + "weekDownloads": 24, "size": 93607, "latestRelease": "1.0.5", "latestReleaseDate": "2025-08-20T16:09:01.085Z" @@ -131442,7 +133302,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.887, + "popularity": -0.791, "topicSearchString": "react-native nitro-network-info nitro network connection wifi cellular ethernet" }, { @@ -131469,7 +133329,7 @@ "forks": 1, "issues": 2, "subscribers": 0, - "stars": 43, + "stars": 44, "dependencies": 0 }, "name": "expo-pencilkit-ui", @@ -131500,12 +133360,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-pencilkit-ui", "npm": { - "downloads": 160, - "weekDownloads": 8, + "downloads": 169, + "weekDownloads": 12, "size": 53913, "latestRelease": "1.0.4", "latestReleaseDate": "2025-06-07T20:44:54.408Z" @@ -131514,7 +133375,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.707, + "popularity": -0.688, "topicSearchString": "expo expo-module react-native pencilkit apple-pencil drawing canvas ios expo-pencilkit-ui expo-pencilkit apple-pencilkit" }, { @@ -131569,11 +133430,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 569, - "weekDownloads": 73, + "downloads": 782, + "weekDownloads": 60, "size": 133907, "latestRelease": "0.5.0", "latestReleaseDate": "2025-10-16T10:47:36.652Z" @@ -131583,7 +133445,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.64, + "popularity": -0.685, "topicSearchString": "react-native whip whep webrtc streaming video audio" }, { @@ -131608,9 +133470,9 @@ "createdAt": "2024-07-03T09:13:20Z", "pushedAt": "2025-10-15T11:00:44Z", "forks": 31, - "issues": 14, + "issues": 13, "subscribers": 10, - "stars": 549, + "stars": 554, "dependencies": 0 }, "name": "react-native-audio-api", @@ -131638,12 +133500,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-audio-api", "npm": { - "downloads": 20226, - "weekDownloads": 3843, + "downloads": 19767, + "weekDownloads": 3468, "size": 145758416, "latestRelease": "0.9.1", "latestReleaseDate": "2025-10-13T12:11:15.861Z" @@ -131654,7 +133517,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.149, "topicSearchString": "react-native audio audio-api web-audio-api react music player" }, { @@ -131704,13 +133567,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-public-ip", "npm": { - "downloads": 37157, - "weekDownloads": 6799, + "downloads": 35764, + "weekDownloads": 6436, "size": 2558, "latestRelease": "1.0.2", "latestReleaseDate": "2019-10-18T15:43:52.105Z" @@ -131720,7 +133584,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.597, "topicSearchString": "ip ipv4 ipv6 address public external own" }, { @@ -131782,12 +133646,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-viewport-detector", "npm": { - "downloads": 1887, - "weekDownloads": 281, + "downloads": 1875, + "weekDownloads": 388, "size": 14942, "latestRelease": "1.0.7", "latestReleaseDate": "2025-04-01T07:24:00.815Z" @@ -131797,7 +133662,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.127, + "popularity": 0.176, "topicSearchString": "react-native viewport visibility detector in-view screen components ui visibility-detection mobile user-experience optimization library react utility performance" }, { @@ -131859,12 +133724,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 44, - "weekDownloads": 3, + "downloads": 155, + "weekDownloads": 9, "size": 2196927, "latestRelease": "1.1.5", "latestReleaseDate": "2023-08-16T01:46:25.896Z" @@ -131874,7 +133740,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.69, + "popularity": -1.7, "topicSearchString": "react-native component splash-screen lottie-splash-screen lottie animation splashscreen splash launch-screen launchscreen android ios" }, { @@ -131917,12 +133783,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-fast-memo", "npm": { - "downloads": 77, - "weekDownloads": 13, + "downloads": 144, + "weekDownloads": 1, "size": 9571, "latestRelease": "2.0.1", "latestReleaseDate": "2024-03-10T19:24:12.099Z" @@ -131932,7 +133799,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.744, "topicSearchString": "" }, { @@ -131957,7 +133824,7 @@ "forks": 23, "issues": 10, "subscribers": 12, - "stars": 1859, + "stars": 1860, "dependencies": 0 }, "name": "mutative", @@ -131987,12 +133854,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "mutative", "npm": { - "downloads": 554695, - "weekDownloads": 95653, + "downloads": 546531, + "weekDownloads": 97421, "size": 705484, "latestRelease": "1.3.0", "latestReleaseDate": "2025-09-21T16:02:59.572Z" @@ -132004,7 +133872,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.152, "topicSearchString": "immutable mutable copy-on-write mutative immutability mutation immer reducer redux state-management react" }, { @@ -132027,10 +133895,10 @@ "updatedAt": "2025-10-06T15:53:12Z", "createdAt": "2017-12-29T12:25:47Z", "pushedAt": "2025-10-06T15:53:12Z", - "forks": 859, + "forks": 860, "issues": 33, "subscribers": 149, - "stars": 28655, + "stars": 28662, "dependencies": 0 }, "name": "immer", @@ -132056,12 +133924,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "immer", "npm": { - "downloads": 74236811, - "weekDownloads": 13894196, + "downloads": 71973668, + "weekDownloads": 13465226, "size": 632100, "latestRelease": "10.1.3", "latestReleaseDate": "2025-09-01T18:14:01.763Z" @@ -132137,11 +134006,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 8730, - "weekDownloads": 910, + "downloads": 9156, + "weekDownloads": 1980, "size": 13570, "latestRelease": "0.2.0", "latestReleaseDate": "2025-09-05T11:14:01.465Z" @@ -132150,7 +134020,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.161, + "popularity": -0.066, "topicSearchString": "react-native ios android exit exit-app close-app quit-app app-exit android-exit ios-exit system-exit" }, { @@ -132210,11 +134080,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 46, - "weekDownloads": 2, + "downloads": 47, + "weekDownloads": 11, "size": 27210, "latestRelease": "0.1.2", "latestReleaseDate": "2025-06-03T13:17:40.181Z" @@ -132223,7 +134094,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.96, + "popularity": -0.8, "topicSearchString": "react-native ios tvos apple-tv keyboard native-keyboard tvos-keyboard voice-typing voice-search uisearchcontroller tv" }, { @@ -132292,11 +134163,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 19, - "weekDownloads": 7, + "downloads": 16, + "weekDownloads": 3, "size": 51365, "latestRelease": "0.1.0", "latestReleaseDate": "2025-06-09T05:15:33.852Z" @@ -132305,7 +134177,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.65, + "popularity": -0.8, "topicSearchString": "react-native ios android ssl ssl-pinning tvos certificate-pinning https network-security fetch axios ssl-pinning-tvos secure-networking networking tls cert-pinning native-module" }, { @@ -132363,12 +134235,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "rn-watch-connect", "npm": { - "downloads": 18, - "weekDownloads": 3, + "downloads": 16, + "weekDownloads": 1, "size": 65492, "latestRelease": "1.0.0", "latestReleaseDate": "2025-06-13T20:20:40.809Z" @@ -132377,7 +134250,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.85, + "popularity": -0.933, "topicSearchString": "react-native expo rn-watch-connect rnwatchconnect watchconnectivity apple-watch apple-watch-connectivity apple-watch-communication apple-watch-data-transfer apple-watch-message-transfer apple-watch-file-transfer" }, { @@ -132429,12 +134302,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "loro-react-native", "npm": { - "downloads": 148, - "weekDownloads": 0, + "downloads": 181, + "weekDownloads": 72, "size": 59874231, "latestRelease": "1.8.1", "latestReleaseDate": "2025-09-24T00:56:00.660Z" @@ -132443,7 +134317,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -1, + "popularity": -0.657, "topicSearchString": "react-native ios android" }, { @@ -132507,12 +134381,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-navigation-mode", "npm": { - "downloads": 33420, - "weekDownloads": 5228, + "downloads": 33530, + "weekDownloads": 4754, "size": 44049, "latestRelease": "1.2.3", "latestReleaseDate": "2025-09-24T02:44:58.258Z" @@ -132521,7 +134396,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.133, + "popularity": 0.121, "topicSearchString": "react-native android ios navigation gesture navigation-buttons edge-to-edge navigation-bar turbo-module native gestures" }, { @@ -132588,11 +134463,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 5356, - "weekDownloads": 706, + "downloads": 5661, + "weekDownloads": 728, "size": 133658, "latestRelease": "3.2.0", "latestReleaseDate": "2025-10-14T22:33:39.151Z" @@ -132601,7 +134477,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.112, + "popularity": 0.109, "topicSearchString": "react-native ios android blur react-blur modern-blur android-blur blur-effect blurview visualeffectview liquid-glass liquidglass liquidglassreact" }, { @@ -132656,12 +134532,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-rn-in-app-update", "npm": { - "downloads": 65, - "weekDownloads": 9, + "downloads": 73, + "weekDownloads": 16, "size": 21067, "latestRelease": "1.1.0", "latestReleaseDate": "2025-08-04T13:55:40.591Z" @@ -132670,7 +134547,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.88, + "popularity": -0.812, "topicSearchString": "react-native ios android in-app-update android-update play-store google-play update play-core app-update" }, { @@ -132697,7 +134574,7 @@ "forks": 28, "issues": 26, "subscribers": 9, - "stars": 581, + "stars": 586, "dependencies": 2 }, "name": "@nandorojo/galeria", @@ -132720,11 +134597,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 21515, - "weekDownloads": 3230, + "downloads": 21626, + "weekDownloads": 3722, "size": 83169, "latestRelease": "1.2.0", "latestReleaseDate": "2025-03-21T15:33:41.079Z" @@ -132735,7 +134613,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.128, + "popularity": 0.146, "topicSearchString": "react-native expo galeria" }, { @@ -132790,12 +134668,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "stan-js", "npm": { - "downloads": 1817, - "weekDownloads": 197, + "downloads": 1796, + "weekDownloads": 299, "size": 80092, "latestRelease": "1.8.2", "latestReleaseDate": "2025-09-30T13:05:06.166Z" @@ -132805,7 +134684,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.092, + "popularity": 0.142, "topicSearchString": "state react store context rerenders typescript intellisense" }, { @@ -132865,11 +134744,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 132617, - "weekDownloads": 23657, + "downloads": 129943, + "weekDownloads": 23421, "size": 499156, "latestRelease": "2.4.2", "latestReleaseDate": "2025-04-28T20:17:43.570Z" @@ -132879,7 +134759,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.153, "topicSearchString": "react-native react-component ios android pinch-to-zoom pinch mobile native component view zoom zoomable double tap" }, { @@ -132907,7 +134787,7 @@ "forks": 2, "issues": 0, "subscribers": 1, - "stars": 49, + "stars": 51, "dependencies": 0 }, "name": "react-native-nitro-toast", @@ -132938,12 +134818,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-toast", "npm": { - "downloads": 243, - "weekDownloads": 23, + "downloads": 269, + "weekDownloads": 14, "size": 173119, "latestRelease": "1.2.5", "latestReleaseDate": "2025-09-13T13:41:52.355Z" @@ -132952,7 +134833,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.669, + "popularity": -0.706, "topicSearchString": "react-native nitro toast toast-notification jetpack-compose kotlin native-ui nitro-modules swift swiftui" }, { @@ -133000,19 +134881,20 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-document-picker-macos", "npm": { - "downloads": 101, - "weekDownloads": 2, + "downloads": 133, + "weekDownloads": 4, "size": 29573, "latestRelease": "1.0.0", "latestReleaseDate": "2025-07-16T09:53:17.895Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.983, + "popularity": -0.974, "topicSearchString": "react-native macos" }, { @@ -133077,11 +134959,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2955, - "weekDownloads": 628, + "downloads": 3078, + "weekDownloads": 459, "size": 250928, "latestRelease": "1.1.6", "latestReleaseDate": "2025-07-18T05:37:34.906Z" @@ -133090,7 +134973,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.181, + "popularity": 0.127, "topicSearchString": "deep equal equals equality comparison object compare fast high-performance engine-aware deep-equal typescript react circular crossrealm symbols custom-equality structured-equality cross-realm" }, { @@ -133143,11 +135026,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 229, - "weekDownloads": 34, + "downloads": 235, + "weekDownloads": 11, "size": 45624, "latestRelease": "1.1.1", "latestReleaseDate": "2025-06-20T10:24:27.962Z" @@ -133156,7 +135040,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.872, + "popularity": -0.96, "topicSearchString": "react-native toast notification alert expo react toastify" }, { @@ -133217,12 +135101,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-youtube-bridge", "npm": { - "downloads": 1962, - "weekDownloads": 469, + "downloads": 1705, + "weekDownloads": 250, "size": 166350, "latestRelease": "2.1.4", "latestReleaseDate": "2025-09-16T16:59:10.233Z" @@ -133231,7 +135116,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.047, + "popularity": -0.125, "topicSearchString": "react-native ios android youtube youtube youtube-bridge youtube-iframe-api youtube-iframe" }, { @@ -133307,11 +135192,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 6005, - "weekDownloads": 602, + "downloads": 6279, + "weekDownloads": 622, "size": 435640, "latestRelease": "0.7.2", "latestReleaseDate": "2025-10-07T20:29:24.089Z" @@ -133320,7 +135206,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.085, + "popularity": 0.084, "topicSearchString": "react-native ios android biometrics biometric-authentication face-id touch-id fingerprint authentication security mobile-security biometric-login face-recognition touchid faceid mobile-authentication secure-login expo mobile-biometrics native-modules turbo-modules typescript mobile-login" }, { @@ -133373,12 +135259,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "input-otp-native", "npm": { - "downloads": 45475, - "weekDownloads": 8235, + "downloads": 43930, + "weekDownloads": 7837, "size": 163111, "latestRelease": "0.5.0", "latestReleaseDate": "2025-06-22T00:57:07.494Z" @@ -133388,7 +135275,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.152, "topicSearchString": "react-native otp otp-input expo-otp-input expo otp-verification react-ntive" }, { @@ -133442,11 +135329,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 491, - "weekDownloads": 61, + "downloads": 542, + "weekDownloads": 68, "size": 344180, "latestRelease": "0.5.4", "latestReleaseDate": "2025-10-12T15:27:34.648Z" @@ -133456,7 +135344,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.894, + "popularity": -0.893, "topicSearchString": "ui-kit ui ts typescript js" }, { @@ -133524,11 +135412,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-vimeo-bridge", "npm": { - "downloads": 1056, + "downloads": 1015, "weekDownloads": 172, "size": 174340, "latestRelease": "1.1.0", @@ -133538,7 +135427,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.111, + "popularity": -0.105, "topicSearchString": "react-native expo ios android web vimeo player vimeo-player vimeo-video vimeo-bridge expo-vimeo-player expo-vimeo-video bridges vimeo-iframe expo-vimeo" }, { @@ -133598,11 +135487,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 300, - "weekDownloads": 94, + "downloads": 257, + "weekDownloads": 67, "size": 45225, "latestRelease": "0.5.0", "latestReleaseDate": "2025-01-24T15:55:35.382Z" @@ -133612,7 +135502,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.731, + "popularity": -0.777, "topicSearchString": "react-native ui aria aria-description aria-describedby a11y react jsx hoc higher-order-component" }, { @@ -133639,7 +135529,7 @@ "forks": 225, "issues": 14, "subscribers": 36, - "stars": 3470, + "stars": 3471, "dependencies": 0 }, "name": "eventemitter3", @@ -133675,12 +135565,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "eventemitter3", "npm": { - "downloads": 237579972, - "weekDownloads": 45955776, + "downloads": 229316190, + "weekDownloads": 43964293, "size": 73390, "latestRelease": "5.0.1", "latestReleaseDate": "2023-04-30T19:49:14.500Z" @@ -133693,7 +135584,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.163, "topicSearchString": "eventemitter eventemitter2 eventemitter3 events addeventlistener addlistener emit emits emitter event once pub/sub publish reactor subscribe nodejs browser" }, { @@ -133748,19 +135639,20 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-place-autocomplete-picker", "npm": { - "downloads": 371, - "weekDownloads": 51, + "downloads": 406, + "weekDownloads": 45, "size": 28395, "latestRelease": "1.0.2", "latestReleaseDate": "2025-08-07T02:34:20.246Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.883, + "popularity": -0.905, "topicSearchString": "react-native ios android" }, { @@ -133782,13 +135674,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-16T17:47:31Z", + "updatedAt": "2025-10-18T14:41:27Z", "createdAt": "2025-05-21T11:09:57Z", - "pushedAt": "2025-10-16T17:47:31Z", + "pushedAt": "2025-10-18T14:41:27Z", "forks": 3, "issues": 8, "subscribers": 3, - "stars": 32, + "stars": 33, "dependencies": 1 }, "name": "expo-superwall", @@ -133812,12 +135704,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-superwall", "npm": { - "downloads": 11867, - "weekDownloads": 2009, + "downloads": 12486, + "weekDownloads": 2221, "size": 825787, "latestRelease": "0.3.2", "latestReleaseDate": "2025-10-16T17:48:11.348Z" @@ -133827,7 +135720,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.151, "topicSearchString": "react-native expo expo-superwall superwallexpo" }, { @@ -133878,19 +135771,20 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "rn-turbo-location-enabler", "npm": { "downloads": 33, - "weekDownloads": 4, + "weekDownloads": 10, "size": 18116, "latestRelease": "0.3.0", "latestReleaseDate": "2025-07-02T06:16:31.172Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.886, + "popularity": -0.714, "topicSearchString": "react-native ios android" }, { @@ -133913,11 +135807,11 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T00:14:48Z", + "updatedAt": "2025-10-16T20:30:46Z", "createdAt": "2020-02-21T17:08:59Z", - "pushedAt": "2025-10-16T00:14:48Z", + "pushedAt": "2025-10-16T20:30:46Z", "forks": 38, - "issues": 13, + "issues": 10, "subscribers": 7, "stars": 46, "dependencies": 0 @@ -133946,21 +135840,22 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 112498, - "weekDownloads": 21316, - "size": 939308, - "latestRelease": "2.0.3", - "latestReleaseDate": "2025-10-04T00:00:00.673Z" + "downloads": 105955, + "weekDownloads": 22367, + "size": 879588, + "latestRelease": "2.0.4", + "latestReleaseDate": "2025-10-16T20:40:20.737Z" }, "score": 59, "matchingScoreModifiers": [ "Known", "Recently updated" ], - "popularity": 0.161, + "popularity": 0.179, "topicSearchString": "react-native ios android iterable sdk library" }, { @@ -134013,11 +135908,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 18218, - "weekDownloads": 4067, + "downloads": 16620, + "weekDownloads": 3272, "size": 529222, "latestRelease": "1.0.1", "latestReleaseDate": "2025-07-17T00:33:00.719Z" @@ -134026,7 +135922,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.06, + "popularity": -0.083, "topicSearchString": "react-native expo @iterable/expo-plugin expoadapteriterable" }, { @@ -134049,13 +135945,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-10T04:56:35Z", + "updatedAt": "2025-10-18T14:30:01Z", "createdAt": "2024-03-17T09:22:42Z", - "pushedAt": "2025-10-10T04:56:35Z", - "forks": 19, - "issues": 4, + "pushedAt": "2025-10-18T14:30:01Z", + "forks": 20, + "issues": 3, "subscribers": 2, - "stars": 115, + "stars": 116, "dependencies": 6 }, "name": "@bravemobile/react-native-code-push", @@ -134082,11 +135978,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 7195, - "weekDownloads": 1141, + "downloads": 7168, + "weekDownloads": 1572, "size": 1346567, "latestRelease": "12.0.2", "latestReleaseDate": "2025-09-26T05:28:34.357Z" @@ -134096,7 +135993,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.135, + "popularity": 0.186, "topicSearchString": "react-native expo code push code-push expo-code-push codepush self-hosted" }, { @@ -134153,11 +136050,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 8712, - "weekDownloads": 4291, + "downloads": 7111, + "weekDownloads": 2989, "size": 1494730, "latestRelease": "0.10.0", "latestReleaseDate": "2025-09-11T07:03:54.469Z" @@ -134166,7 +136064,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.107, "topicSearchString": "moyasar react-native ios android apple-pay samsung-pay credit-card stc-pay" }, { @@ -134188,11 +136086,11 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-27T23:12:05Z", + "updatedAt": "2025-10-18T20:24:48Z", "createdAt": "2025-07-03T10:20:01Z", - "pushedAt": "2025-09-27T23:12:05Z", + "pushedAt": "2025-10-18T20:24:48Z", "forks": 1, - "issues": 0, + "issues": 1, "subscribers": 4, "stars": 17, "dependencies": 0 @@ -134220,22 +136118,23 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-libvlc-player", "npm": { - "downloads": 1238, - "weekDownloads": 263, - "size": 124789, - "latestRelease": "2.2.1", - "latestReleaseDate": "2025-09-27T23:16:25.459Z" + "downloads": 1449, + "weekDownloads": 73, + "size": 125007, + "latestRelease": "2.2.2", + "latestReleaseDate": "2025-10-18T20:27:22.226Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.069, + "popularity": -0.207, "topicSearchString": "react-native expo libvlc player expo-libvlc-player expolibvlcplayer" }, { @@ -134263,13 +136162,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-12T09:54:17Z", + "updatedAt": "2025-10-17T04:18:52Z", "createdAt": "2025-06-30T15:10:12Z", - "pushedAt": "2025-10-12T09:54:17Z", + "pushedAt": "2025-10-17T04:18:52Z", "forks": 2, "issues": 1, "subscribers": 1, - "stars": 41, + "stars": 43, "dependencies": 0 }, "name": "react-native-gesture-image-viewer", @@ -134316,22 +136215,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gesture-image-viewer", "npm": { - "downloads": 2449, - "weekDownloads": 800, - "size": 213233, - "latestRelease": "2.0.0", - "latestReleaseDate": "2025-10-12T09:00:45.595Z" + "downloads": 2204, + "weekDownloads": 407, + "size": 210721, + "latestRelease": "1.9.1", + "latestReleaseDate": "2025-10-17T04:45:03.931Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.278, + "popularity": 0.157, "topicSearchString": "react-native ios android web expo image-viewer image-gallery gesture pinch-to-zoom swipe zoom customizable modal carousel slider photo-viewer image-carousel touch-gestures lightbox gallery viewer zoomable double-tap reanimated gesture-handler reanimated-image-viewer image-zoom-viewer" }, { @@ -134393,12 +136293,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-cashfree-pg-sdk", "npm": { - "downloads": 5127, - "weekDownloads": 985, + "downloads": 5185, + "weekDownloads": 992, "size": 1046320, "latestRelease": "2.2.5", "latestReleaseDate": "2025-07-25T09:52:12.956Z" @@ -134458,11 +136359,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-unilist", "npm": { - "downloads": 4, + "downloads": 10, "weekDownloads": 0, "size": 70326, "latestRelease": "0.2.0", @@ -134526,11 +136428,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 7, - "weekDownloads": 1, + "downloads": 19, + "weekDownloads": 0, "size": 56451, "latestRelease": "1.4.0", "latestReleaseDate": "2025-07-24T04:43:53.439Z" @@ -134539,7 +136442,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.8, + "popularity": -1, "topicSearchString": "react-native api fetch axios hooks typescript expo http-client api-client mmkv" }, { @@ -134589,12 +136492,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-android-keyboard-fix", "npm": { - "downloads": 7489, - "weekDownloads": 502, + "downloads": 7937, + "weekDownloads": 686, "size": 4298, "latestRelease": "2.1.0", "latestReleaseDate": "2025-08-11T05:29:01.464Z" @@ -134603,7 +136507,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.193, + "popularity": -0.177, "topicSearchString": "expo react-native android keyboard keyboardavoidingview sdk35 android15 expo-config-plugin" }, { @@ -134630,10 +136534,10 @@ "updatedAt": "2025-08-06T07:45:20Z", "createdAt": "2021-06-24T09:03:05Z", "pushedAt": "2025-08-06T07:45:20Z", - "forks": 1039, - "issues": 1487, - "subscribers": 64, - "stars": 30781, + "forks": 1043, + "issues": 1486, + "subscribers": 65, + "stars": 30816, "dependencies": 0 }, "name": "drizzle-zod", @@ -134667,12 +136571,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "drizzle-zod", "npm": { - "downloads": 3075359, - "weekDownloads": 580755, + "downloads": 3031651, + "weekDownloads": 567248, "size": 92553, "latestRelease": "0.8.3", "latestReleaseDate": "2025-08-06T08:03:58.355Z" @@ -134685,7 +136590,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.159, "topicSearchString": "zod validate validation schema drizzle orm pg mysql postgresql postgres sqlite database sql typescript ts" }, { @@ -134716,7 +136621,7 @@ "forks": 15, "issues": 6, "subscribers": 3, - "stars": 158, + "stars": 159, "dependencies": 0 }, "name": "expo-drizzle-studio-plugin", @@ -134743,11 +136648,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 38390, - "weekDownloads": 7886, + "downloads": 36265, + "weekDownloads": 6667, "size": 3171727, "latestRelease": "0.2.1", "latestReleaseDate": "2025-10-13T12:17:09.348Z" @@ -134757,7 +136663,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.156, "topicSearchString": "expo devtools drizzle drizzle-orm expo-sqlite react-native sqlite" }, { @@ -134781,9 +136687,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-16T15:10:37Z", + "updatedAt": "2025-10-19T03:13:25Z", "createdAt": "2022-10-05T14:46:35Z", - "pushedAt": "2025-10-16T15:10:37Z", + "pushedAt": "2025-10-19T03:13:25Z", "forks": 8, "issues": 2, "subscribers": 1, @@ -134828,12 +136734,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "enum-plus", "npm": { - "downloads": 20611, - "weekDownloads": 3830, + "downloads": 19349, + "weekDownloads": 3640, "size": 1040390, "latestRelease": "3.0.1", "latestReleaseDate": "2025-10-06T08:09:32.672Z" @@ -134843,7 +136750,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.16, "topicSearchString": "enum enumeration javascript typescript front-end back-end node.js browser mini-program react-native ui-binding ssr localization globalization plugin-system react vue angular internationalization reactjs vuejs" }, { @@ -134870,7 +136777,7 @@ "forks": 219, "issues": 1, "subscribers": 27, - "stars": 7720, + "stars": 7721, "dependencies": 1 }, "name": "react-error-boundary", @@ -134888,12 +136795,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-error-boundary", "npm": { - "downloads": 32267968, - "weekDownloads": 5954422, + "downloads": 31161063, + "weekDownloads": 5844763, "size": 21910, "latestRelease": "6.0.0", "latestReleaseDate": "2025-05-03T20:26:02.358Z" @@ -134905,7 +136813,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.159, "topicSearchString": "" }, { @@ -134961,11 +136869,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 35, - "weekDownloads": 10, + "downloads": 57, + "weekDownloads": 7, "size": 46268, "latestRelease": "1.0.21", "latestReleaseDate": "2025-07-09T13:22:05.363Z" @@ -134974,7 +136883,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.75, + "popularity": -0.892, "topicSearchString": "react-native responsive scaling expo typescript font-scale width-scale height-scale @shayrn/scaler scaler" }, { @@ -135005,7 +136914,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 13, + "stars": 14, "dependencies": 0 }, "name": "react-native-inappbrowser-nitro", @@ -135033,12 +136942,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-inappbrowser-nitro", "npm": { - "downloads": 337, - "weekDownloads": 19, + "downloads": 371, + "weekDownloads": 92, "size": 405544, "latestRelease": "2.0.0", "latestReleaseDate": "2025-10-13T20:14:10.033Z" @@ -135048,7 +136958,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.952, + "popularity": -0.789, "topicSearchString": "react-native inappbrowser-nitro android custom-tabs ios nitro-modules nitrogen" }, { @@ -135105,12 +137015,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-scroll-track", "npm": { - "downloads": 36, - "weekDownloads": 7, + "downloads": 48, + "weekDownloads": 3, "size": 52958, "latestRelease": "1.2.0", "latestReleaseDate": "2025-08-20T15:54:26.449Z" @@ -135119,7 +137030,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.825, + "popularity": -0.945, "topicSearchString": "react-native scrollbar scroll-indicator gesture flatlist draggable-scrollbar scroll-track animated-scroll" }, { @@ -135148,7 +137059,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 11, + "stars": 12, "dependencies": 1 }, "name": "rn-selector", @@ -135171,12 +137082,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-selector", "npm": { - "downloads": 517, - "weekDownloads": 55, + "downloads": 620, + "weekDownloads": 32, "size": 52487, "latestRelease": "0.1.3", "latestReleaseDate": "2025-08-19T23:43:49.739Z" @@ -135185,7 +137097,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.909, + "popularity": -0.956, "topicSearchString": "react-native ios android" }, { @@ -135239,12 +137151,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-native-alipay", "npm": { - "downloads": 104, - "weekDownloads": 17, + "downloads": 101, + "weekDownloads": 21, "size": 7412352, "latestRelease": "0.1.1", "latestReleaseDate": "2025-07-21T09:51:53.409Z" @@ -135253,7 +137166,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.858, + "popularity": -0.817, "topicSearchString": "react-native expo expo-native-alipay exponativealipay alipay alipay-sdk" }, { @@ -135275,10 +137188,10 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-17T16:05:17Z", + "updatedAt": "2025-10-17T21:02:39Z", "createdAt": "2025-07-17T08:07:51Z", - "pushedAt": "2025-07-17T16:05:17Z", - "forks": 1, + "pushedAt": "2025-10-17T21:02:39Z", + "forks": 2, "issues": 0, "subscribers": 0, "stars": 5, @@ -135305,18 +137218,21 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 401, - "weekDownloads": 32, - "size": 31309, - "latestRelease": "0.1.4", - "latestReleaseDate": "2025-07-17T16:05:26.481Z" + "downloads": 539, + "weekDownloads": 45, + "size": 31333, + "latestRelease": "0.1.5", + "latestReleaseDate": "2025-10-17T21:02:48.829Z" }, - "score": 46, - "matchingScoreModifiers": [], - "popularity": -0.932, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.929, "topicSearchString": "react-native ios android" }, { @@ -135340,8 +137256,8 @@ "updatedAt": "2025-05-31T08:42:11Z", "createdAt": "2022-05-03T01:02:26Z", "pushedAt": "2025-05-31T08:42:11Z", - "forks": 23, - "issues": 3, + "forks": 24, + "issues": 4, "subscribers": 1, "stars": 60, "dependencies": 0 @@ -135375,12 +137291,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npmPkg": "react-native-full-screen-notification-incoming-call", "npm": { - "downloads": 3447, - "weekDownloads": 741, + "downloads": 3394, + "weekDownloads": 959, "size": 208622, "latestRelease": "1.1.0", "latestReleaseDate": "2025-05-31T08:34:57.109Z" @@ -135389,7 +137306,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.183, + "popularity": 0.24, "topicSearchString": "react-native ios android notification fullscreen-intent time-sensitive-notification block-screen incoming-notifications foreground-service voip incomming" }, { @@ -135441,12 +137358,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-screen-transitions", "npm": { - "downloads": 5318, - "weekDownloads": 1252, + "downloads": 5090, + "weekDownloads": 1086, "size": 1174070, "latestRelease": "2.4.2", "latestReleaseDate": "2025-10-04T16:32:40.939Z" @@ -135457,7 +137375,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.2, + "popularity": 0.181, "topicSearchString": "react-native transitions animation react-navigation expo-router reanimated" }, { @@ -135509,11 +137427,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 17081, - "weekDownloads": 2918, + "downloads": 16114, + "weekDownloads": 2086, "size": 2205293, "latestRelease": "0.1.13", "latestReleaseDate": "2025-10-06T07:18:03.584Z" @@ -135524,7 +137443,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.145, + "popularity": 0.11, "topicSearchString": "react-native ios android" }, { @@ -135549,13 +137468,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T13:54:01Z", + "updatedAt": "2025-10-18T07:50:04Z", "createdAt": "2025-02-01T13:40:42Z", - "pushedAt": "2025-10-16T13:54:01Z", + "pushedAt": "2025-10-18T07:50:04Z", "forks": 4, - "issues": 101, + "issues": 103, "subscribers": 7, - "stars": 156, + "stars": 157, "dependencies": 3 }, "name": "react-native-node-api", @@ -135587,14 +137506,15 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 340, - "weekDownloads": 109, - "size": 1230155, - "latestRelease": "0.5.1", - "latestReleaseDate": "2025-09-23T08:47:22.991Z" + "downloads": 371, + "weekDownloads": 141, + "size": 1232349, + "latestRelease": "0.5.2", + "latestReleaseDate": "2025-10-17T18:04:16.161Z" }, "score": 38, "matchingScoreModifiers": [ @@ -135602,7 +137522,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.477, + "popularity": -0.426, "topicSearchString": "react-native node-api napi node-api node-addon-api native addon module c c++ bindings buildtools cmake" }, { @@ -135625,7 +137545,7 @@ "forks": 11, "issues": 2, "subscribers": 3, - "stars": 280, + "stars": 283, "dependencies": 0 }, "name": "react-native-apple-llm", @@ -135675,12 +137595,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-apple-llm", "npm": { - "downloads": 409, - "weekDownloads": 51, + "downloads": 432, + "weekDownloads": 64, "size": 70426, "latestRelease": "1.0.12", "latestReleaseDate": "2025-08-07T02:32:13.162Z" @@ -135690,7 +137611,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.644, + "popularity": -0.623, "topicSearchString": "react-native apple apple-intelligence foundation-models llm local-llm plugin apple-llm apple-foundation-models ai on-device-llm machine-learning ios swift chatbot natural-language-processing nlp text-generation structured-output json-schema offline-ai privacy-focused-ai mobile-ai ios-llm apple-silicon neural-engine siri-intelligence core-ml on-device-inference apple-llm-integration zod" }, { @@ -135700,6 +137621,9 @@ ], "android": true, "ios": true, + "alternatives": [ + "@atproto/oauth-client-expo" + ], "github": { "urls": { "repo": "https://github.com/haileyok/expo-atproto-auth", @@ -135741,13 +137665,14 @@ "newArchitecture": false, "isArchived": true, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "unmaintained": true, "npmPkg": "expo-atproto-auth", "npm": { - "downloads": 105, - "weekDownloads": 16, + "downloads": 104, + "weekDownloads": 7, "size": 696564, "latestRelease": "0.1.1", "latestReleaseDate": "2025-07-17T21:10:56.606Z" @@ -135757,7 +137682,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -1.617, + "popularity": -1.692, "topicSearchString": "react-native expo expo-atproto-auth expoatprotoauth" }, { @@ -135784,7 +137709,7 @@ "forks": 12, "issues": 2, "subscribers": 4, - "stars": 125, + "stars": 128, "dependencies": 4 }, "name": "react-native-css", @@ -135809,12 +137734,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-css", "npm": { - "downloads": 13573, - "weekDownloads": 171, + "downloads": 16093, + "weekDownloads": 740, "size": 1924145, "latestRelease": "3.0.1", "latestReleaseDate": "2025-10-11T08:13:45.212Z" @@ -135824,7 +137750,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.011, + "popularity": 0.039, "topicSearchString": "react-native ios android css css-in-js" }, { @@ -135878,12 +137804,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-maps-clustering", "npm": { - "downloads": 207, - "weekDownloads": 29, + "downloads": 227, + "weekDownloads": 64, "size": 95370, "latestRelease": "0.1.2", "latestReleaseDate": "2025-07-09T07:16:30.840Z" @@ -135892,7 +137819,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.629, + "popularity": -0.508, "topicSearchString": "react-native maps cluster clustering supercluster ios android" }, { @@ -135955,11 +137882,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { "downloads": 41, - "weekDownloads": 5, + "weekDownloads": 4, "size": 34848, "latestRelease": "0.3.0", "latestReleaseDate": "2025-07-04T20:42:08.838Z" @@ -135968,7 +137896,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.889, + "popularity": -0.911, "topicSearchString": "react-native responsive-ui responsive-view responsive-screen responsive scaling ui-design screen-size mobile-ui adaptive cross-platform android ios responsive-layout ui" }, { @@ -136026,12 +137954,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-orientation-turbo", "npm": { - "downloads": 2535, - "weekDownloads": 812, + "downloads": 2376, + "weekDownloads": 650, "size": 78868, "latestRelease": "2.2.0", "latestReleaseDate": "2025-07-28T18:50:57.827Z" @@ -136040,7 +137969,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.022, + "popularity": -0.017, "topicSearchString": "react-native orientation screen-orientation rotation portrait landscape turbo-module new-architecture ios android" }, { @@ -136092,11 +138021,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-mixins", "npm": { - "downloads": 9, + "downloads": 10, "weekDownloads": 0, "size": 14323, "latestRelease": "0.1.0", @@ -136158,7 +138088,8 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-azure-blob-storage", "npm": { @@ -136200,10 +138131,10 @@ "updatedAt": "2025-10-15T21:02:12Z", "createdAt": "2024-08-19T21:53:42Z", "pushedAt": "2025-10-15T21:02:12Z", - "forks": 296, + "forks": 298, "issues": 3, "subscribers": 35, - "stars": 9342, + "stars": 9348, "dependencies": 3 }, "name": "@instantdb/react-native", @@ -136214,14 +138145,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 35271, - "weekDownloads": 4826, + "downloads": 36342, + "weekDownloads": 5408, "size": 111767, - "latestRelease": "0.22.19", - "latestReleaseDate": "2025-10-16T15:05:32.766Z" + "latestRelease": "0.22.21", + "latestReleaseDate": "2025-10-17T18:52:46.985Z" }, "score": 97, "matchingScoreModifiers": [ @@ -136231,7 +138163,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.116, + "popularity": 0.126, "topicSearchString": "" }, { @@ -136280,11 +138212,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 436, - "weekDownloads": 63, + "downloads": 420, + "weekDownloads": 134, "size": 10705, "latestRelease": "1.0.2", "latestReleaseDate": "2025-09-23T00:13:09.248Z" @@ -136294,7 +138227,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.876, + "popularity": -0.727, "topicSearchString": "react-native barcode generator" }, { @@ -136355,12 +138288,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "otpauth", "npm": { - "downloads": 2944932, - "weekDownloads": 551160, + "downloads": 2863272, + "weekDownloads": 537881, "size": 750590, "latestRelease": "9.4.1", "latestReleaseDate": "2025-08-12T16:46:16.606Z" @@ -136372,7 +138306,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.16, "topicSearchString": "otp hotp totp one-time-password 2fa 2-factor two-factor 2step 2-step two-step auth authenticator google-authenticator otpauth two-step-authentication two-factor-authentication" }, { @@ -136396,10 +138330,10 @@ "updatedAt": "2020-06-09T08:59:48Z", "createdAt": "2017-06-15T22:23:23Z", "pushedAt": "2020-06-09T08:59:48Z", - "forks": 102, + "forks": 103, "issues": 21, - "subscribers": 13, - "stars": 2023, + "subscribers": 15, + "stars": 2026, "dependencies": 0 }, "name": "fast-deep-equal", @@ -136422,13 +138356,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "fast-deep-equal", "npm": { - "downloads": 322422823, - "weekDownloads": 60606687, + "downloads": 314341440, + "weekDownloads": 58449070, "size": 12966, "latestRelease": "3.1.3", "latestReleaseDate": "2020-06-08T07:27:28.474Z" @@ -136441,7 +138376,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.592, "topicSearchString": "fast equal deep-equal deep-equals" }, { @@ -136498,11 +138433,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 202, - "weekDownloads": 28, + "downloads": 224, + "weekDownloads": 21, "size": 142883, "latestRelease": "1.3.2", "latestReleaseDate": "2025-09-26T14:26:48.765Z" @@ -136511,7 +138447,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.881, + "popularity": -0.919, "topicSearchString": "react-native ping-react-native ping ping-ios ping-android ping-macos" }, { @@ -136537,7 +138473,7 @@ "updatedAt": "2025-09-30T16:50:39Z", "createdAt": "2019-09-06T17:54:46Z", "pushedAt": "2025-09-30T16:50:39Z", - "forks": 70, + "forks": 71, "issues": 35, "subscribers": 41, "stars": 88, @@ -136572,11 +138508,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4221877, - "weekDownloads": 780525, + "downloads": 4065713, + "weekDownloads": 733353, "size": 150096, "latestRelease": "3.9.0", "latestReleaseDate": "2025-09-30T16:51:51.217Z" @@ -136588,7 +138525,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.153, "topicSearchString": "launchdarkly launch darkly react sdk bindings launchdarkly-sdk reactjs react-js feature-flags feature-toggles typescript managed-by-terraform" }, { @@ -136615,9 +138552,9 @@ "createdAt": "2015-11-30T12:48:48Z", "pushedAt": "2025-10-08T18:39:32Z", "forks": 758, - "issues": 158, + "issues": 157, "subscribers": 103, - "stars": 16174, + "stars": 16178, "dependencies": 0 }, "name": "luxon", @@ -136643,12 +138580,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "luxon", "npm": { - "downloads": 71145306, - "weekDownloads": 13165472, + "downloads": 68685864, + "weekDownloads": 12900516, "size": 4592735, "latestRelease": "3.7.2", "latestReleaseDate": "2025-09-05T10:14:55.814Z" @@ -136662,7 +138600,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.16, "topicSearchString": "date immutable intl timezones dates times datetime" }, { @@ -136712,12 +138650,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-feather-toast", "npm": { - "downloads": 66, - "weekDownloads": 2, + "downloads": 114, + "weekDownloads": 3, "size": 33529, "latestRelease": "1.0.14", "latestReleaseDate": "2025-02-02T05:48:54.808Z" @@ -136727,7 +138666,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.973, + "popularity": -0.977, "topicSearchString": "react-native expo toast expo-toast" }, { @@ -136787,11 +138726,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-scroll-sync", "npm": { - "downloads": 9, + "downloads": 14, "weekDownloads": 0, "size": 34866, "latestRelease": "0.3.0", @@ -136828,7 +138768,7 @@ "forks": 7017, "issues": 89, "subscribers": 817, - "stars": 61274, + "stars": 61284, "dependencies": 0 }, "name": "lodash", @@ -136851,12 +138791,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "lodash", "npm": { - "downloads": 324589961, - "weekDownloads": 61905757, + "downloads": 310225602, + "weekDownloads": 58796914, "size": 1412415, "latestRelease": "4.17.21", "latestReleaseDate": "2021-02-20T15:42:16.891Z" @@ -136870,7 +138811,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.161, "topicSearchString": "lodash utilities javascript modules" }, { @@ -136895,7 +138836,7 @@ "createdAt": "2020-12-23T21:14:25Z", "pushedAt": "2025-06-18T04:22:14Z", "forks": 193, - "issues": 73, + "issues": 72, "subscribers": 20, "stars": 4789, "dependencies": 0 @@ -136921,12 +138862,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "radash", "npm": { - "downloads": 2125911, - "weekDownloads": 374597, + "downloads": 2080404, + "weekDownloads": 358192, "size": 306084, "latestRelease": "12.1.1", "latestReleaseDate": "2025-06-18T04:22:49.665Z" @@ -136938,7 +138880,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.146, "topicSearchString": "functions javascript javascript-library typescript hacktoberfest" }, { @@ -136959,13 +138901,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-10-08T11:44:27Z", + "updatedAt": "2025-10-17T09:58:54Z", "createdAt": "2024-04-25T11:56:31Z", - "pushedAt": "2025-10-08T11:44:27Z", - "forks": 497, - "issues": 117, + "pushedAt": "2025-10-17T09:58:54Z", + "forks": 498, + "issues": 115, "subscribers": 33, - "stars": 10254, + "stars": 10273, "dependencies": 0 }, "name": "es-toolkit", @@ -136983,12 +138925,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "es-toolkit", "npm": { - "downloads": 19880436, - "weekDownloads": 3723940, + "downloads": 19640398, + "weekDownloads": 3630135, "size": 2501699, "latestRelease": "1.40.0", "latestReleaseDate": "2025-10-08T11:46:27.997Z" @@ -137002,7 +138945,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.157, "topicSearchString": "" }, { @@ -137029,8 +138972,8 @@ "pushedAt": "2025-09-28T02:37:55Z", "forks": 2686, "issues": 174, - "subscribers": 90, - "stars": 14712, + "subscribers": 91, + "stars": 14716, "dependencies": 0 }, "name": "ahooks", @@ -137054,11 +138997,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1805194, - "weekDownloads": 330253, + "downloads": 1764293, + "weekDownloads": 331255, "size": 620757, "latestRelease": "3.9.5", "latestReleaseDate": "2025-08-31T13:56:25.816Z" @@ -137072,7 +139016,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.16, "topicSearchString": "ahooks react hooks-library umi-hooks react-hooks" }, { @@ -137127,12 +139071,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-letter-flatlist", "npm": { - "downloads": 39, - "weekDownloads": 6, + "downloads": 37, + "weekDownloads": 4, "size": 13994, "latestRelease": "1.0.1", "latestReleaseDate": "2025-07-30T08:18:42.361Z" @@ -137141,7 +139086,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.867, + "popularity": -0.9, "topicSearchString": "react-native flatlist grid layout alphabetlist letterlist sectionlist" }, { @@ -137194,12 +139139,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-stonewall-grid", "npm": { - "downloads": 5, - "weekDownloads": 1, + "downloads": 4, + "weekDownloads": 0, "size": 16275, "latestRelease": "1.0.1", "latestReleaseDate": "2025-07-29T19:01:59.388Z" @@ -137208,7 +139154,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.8, + "popularity": -1, "topicSearchString": "react-native masonry grid layout stonewall" }, { @@ -137228,13 +139174,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-15T21:51:33Z", + "updatedAt": "2025-10-18T04:41:50Z", "createdAt": "2025-06-22T22:45:31Z", - "pushedAt": "2025-10-15T21:51:33Z", + "pushedAt": "2025-10-18T04:41:50Z", "forks": 0, "issues": 1, "subscribers": 0, - "stars": 11, + "stars": 12, "dependencies": 0 }, "name": "react-native-scroll-to-child", @@ -137266,12 +139212,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-scroll-to-child", "npm": { - "downloads": 101, - "weekDownloads": 17, + "downloads": 108, + "weekDownloads": 12, "size": 146512, "latestRelease": "0.2.0", "latestReleaseDate": "2025-07-31T16:44:45.024Z" @@ -137281,7 +139228,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.852, + "popularity": -0.904, "topicSearchString": "react-native react scrollintoview form scroll into view expo visible component scrolling scrollview typescript" }, { @@ -137338,12 +139285,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-dream-toast", "npm": { - "downloads": 19, - "weekDownloads": 3, + "downloads": 20, + "weekDownloads": 2, "size": 33262, "latestRelease": "1.0.0", "latestReleaseDate": "2025-07-31T14:37:19.954Z" @@ -137352,7 +139300,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.85, + "popularity": -0.9, "topicSearchString": "react-native toast toast-message toast-notification toast-host custom-toast toast-system beauty-toast dream-toast" }, { @@ -137403,11 +139351,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 437, - "weekDownloads": 88, + "downloads": 534, + "weekDownloads": 16, "size": 158467, "latestRelease": "3.0.7", "latestReleaseDate": "2025-10-03T21:41:07.120Z" @@ -137417,7 +139366,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.827, + "popularity": -0.974, "topicSearchString": "react-native ios android" }, { @@ -137468,11 +139417,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 365, - "weekDownloads": 73, + "downloads": 311, + "weekDownloads": 14, "size": 126658, "latestRelease": "3.0.7", "latestReleaseDate": "2025-10-03T21:16:56.654Z" @@ -137482,7 +139432,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.828, + "popularity": -0.962, "topicSearchString": "react-native expo expo-helium helium-expo-sdk expo-helium-sdk heliumpaywallsdk" }, { @@ -137537,12 +139487,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "onesignal-expo-plugin", "npm": { - "downloads": 163322, - "weekDownloads": 33097, + "downloads": 157222, + "weekDownloads": 29868, "size": 101579, "latestRelease": "2.0.3", "latestReleaseDate": "2024-06-04T23:31:59.485Z" @@ -137552,7 +139503,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.161, "topicSearchString": "expo onesignal push notifications eas react-native ios android onesignal-notifications push-notifications" }, { @@ -137607,12 +139558,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-input-suggestion", "npm": { "downloads": 14, - "weekDownloads": 5, + "weekDownloads": 4, "size": 13892, "latestRelease": "1.0.2", "latestReleaseDate": "2025-08-02T14:02:25.113Z" @@ -137621,7 +139573,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.667, + "popularity": -0.733, "topicSearchString": "react-native textinput autocomplete suggestion-input input auto-fill input-suggestion swipe-to-fill textinput-suggestion component library" }, { @@ -137649,7 +139601,7 @@ "forks": 1, "issues": 2, "subscribers": 3, - "stars": 54, + "stars": 55, "dependencies": 0 }, "name": "react-native-nitro-screen-recorder", @@ -137700,12 +139652,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-screen-recorder", "npm": { - "downloads": 815, - "weekDownloads": 45, + "downloads": 951, + "weekDownloads": 48, "size": 664714, "latestRelease": "0.4.7", "latestReleaseDate": "2025-10-06T11:06:46.413Z" @@ -137715,7 +139668,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.703, + "popularity": -0.707, "topicSearchString": "react-native ios android nitro-screen-recorder nitro screen-recording screen-recorder video-recording screen-capture screen-sharing recording video-capture camera-overlay microphone audio-recording global-recording in-app-recording broadcast-extension media-projection nitro-modules replaykit expo-plugin permissions mobile-recording video camera audio multimedia native-module typescript" }, { @@ -137766,11 +139719,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 139061, - "weekDownloads": 24406, + "downloads": 132327, + "weekDownloads": 23673, "size": 65701, "latestRelease": "3.1.0", "latestReleaseDate": "2025-04-09T16:19:56.324Z" @@ -137780,7 +139734,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.101, + "popularity": -0.098, "topicSearchString": "react expo config-plugins prebuild appboy-sdk braze appboy analytics segmentation" }, { @@ -137802,10 +139756,10 @@ "updatedAt": "2025-08-14T00:03:29Z", "createdAt": "2024-02-08T20:28:00Z", "pushedAt": "2025-08-14T00:03:29Z", - "forks": 26, + "forks": 27, "issues": 9, "subscribers": 3, - "stars": 332, + "stars": 333, "dependencies": 0 }, "name": "react-native-zoom-toolkit", @@ -137840,12 +139794,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-zoom-toolkit", "npm": { - "downloads": 42083, - "weekDownloads": 5832, + "downloads": 42699, + "weekDownloads": 6708, "size": 594147, "latestRelease": "5.0.1", "latestReleaseDate": "2025-08-14T00:02:40.753Z" @@ -137855,7 +139810,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.118, + "popularity": 0.134, "topicSearchString": "zoom zoomable zoomable-view pan pinch pinch-to-zoom double-tap gallery lightbox image-gallery image-cropper react-native image-zoom zoomable-image crop" }, { @@ -137883,7 +139838,7 @@ "forks": 2, "issues": 5, "subscribers": 2, - "stars": 30, + "stars": 32, "dependencies": 0 }, "name": "react-native-trays", @@ -137920,12 +139875,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-trays", "npm": { - "downloads": 232, - "weekDownloads": 39, + "downloads": 251, + "weekDownloads": 52, "size": 113348, "latestRelease": "0.11.0", "latestReleaseDate": "2025-08-15T04:58:15.472Z" @@ -137934,7 +139890,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.574, "topicSearchString": "react-native ios android tray bottom-sheet modal drawer popup component ui animation reanimated expo mobile-ui bottomsheet family react" }, { @@ -137986,11 +139942,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "nitro" }, "npm": { - "downloads": 551, - "weekDownloads": 122, + "downloads": 453, + "weekDownloads": 286, "size": 340278, "latestRelease": "0.0.9", "latestReleaseDate": "2025-09-24T13:08:59.519Z" @@ -138000,7 +139957,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.561, + "popularity": -0.21, "topicSearchString": "react-native nitro" }, { @@ -138052,12 +140009,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-snappy-toast", "npm": { - "downloads": 43, - "weekDownloads": 2, + "downloads": 57, + "weekDownloads": 0, "size": 112140, "latestRelease": "0.1.8", "latestReleaseDate": "2025-08-11T04:44:55.660Z" @@ -138066,7 +140024,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.96, + "popularity": -1, "topicSearchString": "react-native ios android" }, { @@ -138127,12 +140085,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-simple-weekly-calendar", "npm": { "downloads": 12, - "weekDownloads": 1, + "weekDownloads": 2, "size": 45119, "latestRelease": "1.0.0", "latestReleaseDate": "2025-08-09T13:03:37.220Z" @@ -138141,7 +140100,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.9, + "popularity": -0.8, "topicSearchString": "react native simple weekly calendar react-native ios android" }, { @@ -138203,12 +140162,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-crossfade-image", "npm": { - "downloads": 570, - "weekDownloads": 100, + "downloads": 555, + "weekDownloads": 92, "size": 12191, "latestRelease": "1.3.4", "latestReleaseDate": "2025-04-19T09:11:43.661Z" @@ -138218,7 +140178,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, + "popularity": -0.608, "topicSearchString": "react-native ios android crossfade image transition animation background-image cross-fade" }, { @@ -138284,11 +140244,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3266, - "weekDownloads": 648, + "downloads": 3267, + "weekDownloads": 583, "size": 90907, "latestRelease": "2.1.6", "latestReleaseDate": "2025-09-10T20:50:40.499Z" @@ -138297,7 +140258,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.152, "topicSearchString": "react-native ios android userpic avatar gravatar avatar-image user-picture user-image user-avatar initials badge image picture user" }, { @@ -138331,7 +140292,7 @@ "forks": 7, "issues": 1, "subscribers": 1, - "stars": 105, + "stars": 106, "dependencies": 0 }, "name": "@kolking/react-native-rating", @@ -138363,11 +140324,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 13956, - "weekDownloads": 2901, + "downloads": 12760, + "weekDownloads": 2858, "size": 418766, "latestRelease": "1.4.1", "latestReleaseDate": "2025-04-19T09:26:58.159Z" @@ -138377,7 +140339,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.19, "topicSearchString": "react-native ios android rating rate evaluate feedback user-rating stars-rating hearts-rating emoji-rating rating-stars" }, { @@ -138441,12 +140403,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-page-indicator", "npm": { - "downloads": 12251, - "weekDownloads": 2243, + "downloads": 11719, + "weekDownloads": 2296, "size": 21603, "latestRelease": "2.4.3", "latestReleaseDate": "2025-09-12T16:35:25.511Z" @@ -138455,7 +140418,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.167, "topicSearchString": "react-native ios android pager paging pagination indicator swiper slideshow carousel indicators" }, { @@ -138520,11 +140483,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 45, - "weekDownloads": 7, + "downloads": 41, + "weekDownloads": 5, "size": 17975, "latestRelease": "1.0.2", "latestReleaseDate": "2025-04-19T09:36:45.941Z" @@ -138534,7 +140498,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.86, + "popularity": -0.889, "topicSearchString": "react-native ios android parallax swiper carousel intro onboarding scrollable reanimated parallax-effect parallax-swiper parallax-scrolling parallax-carousel parallax-slider" }, { @@ -138555,7 +140519,7 @@ "hasIssues": true, "hasWiki": false, "hasSponsorships": false, - "hasDiscussions": false, + "hasDiscussions": true, "hasTopics": true, "updatedAt": "2025-08-14T19:14:49Z", "createdAt": "2025-08-03T09:17:31Z", @@ -138596,18 +140560,19 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 425, - "weekDownloads": 73, + "downloads": 442, + "weekDownloads": 62, "size": 46579, "latestRelease": "1.0.1", "latestReleaseDate": "2025-08-11T17:54:16.750Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.854, + "popularity": -0.881, "topicSearchString": "react-native ios android haptics vibration haptic-feedback vibration-effects haptic-feedback-ios haptic haptic-feedback-android haptics-ios haptics-android" }, { @@ -138659,12 +140624,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "react-native-device-attest", "npm": { - "downloads": 6168, - "weekDownloads": 652, + "downloads": 6346, + "weekDownloads": 1153, "size": 29001, "latestRelease": "0.1.6", "latestReleaseDate": "2025-08-01T18:33:56.209Z" @@ -138673,7 +140639,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.16, + "popularity": -0.096, "topicSearchString": "react-native expo device-attest reactnativedeviceattest" }, { @@ -138720,12 +140686,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-linear-gradient-web", "npm": { - "downloads": 18, - "weekDownloads": 1, + "downloads": 24, + "weekDownloads": 0, "size": 12286, "latestRelease": "1.1.0", "latestReleaseDate": "2025-07-16T08:13:11.536Z" @@ -138734,7 +140701,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.95, + "popularity": -1, "topicSearchString": "" }, { @@ -138785,11 +140752,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-fbtee", "npm": { - "downloads": 19, + "downloads": 23, "weekDownloads": 3, "size": 17942, "latestRelease": "1.1.0", @@ -138797,7 +140765,7 @@ }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.85, + "popularity": -0.88, "topicSearchString": "react react-native component android android-widget widget home-screen home-screen-widget" }, { @@ -138844,12 +140812,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-bundle-discovery", "npm": { - "downloads": 1309, - "weekDownloads": 102, + "downloads": 1297, + "weekDownloads": 185, "size": 361499, "latestRelease": "1.2.1", "latestReleaseDate": "2025-09-28T10:28:43.544Z" @@ -138859,7 +140828,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.066, + "popularity": 0.121, "topicSearchString": "metro react-native" }, { @@ -138883,10 +140852,10 @@ "updatedAt": "2025-10-11T07:53:07Z", "createdAt": "2016-11-29T04:53:07Z", "pushedAt": "2025-10-11T07:53:07Z", - "forks": 523, - "issues": 110, + "forks": 525, + "issues": 111, "subscribers": 44, - "stars": 5892, + "stars": 5900, "dependencies": 4 }, "name": "@tanstack/react-form", @@ -138904,11 +140873,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1771836, - "weekDownloads": 320503, + "downloads": 1736621, + "weekDownloads": 319320, "size": 372104, "latestRelease": "1.23.7", "latestReleaseDate": "2025-10-11T07:53:54.880Z" @@ -138922,7 +140892,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.156, "topicSearchString": "" }, { @@ -138947,10 +140917,10 @@ "updatedAt": "2025-10-16T15:09:02Z", "createdAt": "2019-09-10T19:23:58Z", "pushedAt": "2025-10-16T15:09:02Z", - "forks": 3477, - "issues": 64, + "forks": 3486, + "issues": 66, "subscribers": 214, - "stars": 47003, + "stars": 47040, "dependencies": 2 }, "name": "@tanstack/query-async-storage-persister", @@ -138968,11 +140938,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 865363, - "weekDownloads": 175773, + "downloads": 814239, + "weekDownloads": 161696, "size": 56548, "latestRelease": "5.90.7", "latestReleaseDate": "2025-10-16T15:15:34.995Z" @@ -138985,7 +140956,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.169, "topicSearchString": "" }, { @@ -139010,10 +140981,10 @@ "updatedAt": "2025-10-16T15:09:02Z", "createdAt": "2019-09-10T19:23:58Z", "pushedAt": "2025-10-16T15:09:02Z", - "forks": 3477, - "issues": 64, + "forks": 3486, + "issues": 66, "subscribers": 214, - "stars": 47003, + "stars": 47040, "dependencies": 1 }, "name": "@tanstack/react-query-persist-client", @@ -139031,11 +141002,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2310179, - "weekDownloads": 430284, + "downloads": 2210904, + "weekDownloads": 423767, "size": 33909, "latestRelease": "5.90.7", "latestReleaseDate": "2025-10-16T15:15:34.197Z" @@ -139048,7 +141020,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.163, "topicSearchString": "" }, { @@ -139099,13 +141071,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "gl-react-native", "npm": { - "downloads": 2478, - "weekDownloads": 335, + "downloads": 2929, + "weekDownloads": 338, "size": 5765, "latestRelease": "5.2.1", "latestReleaseDate": "2022-05-28T20:16:26.073Z" @@ -139117,7 +141090,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.635, + "popularity": -0.652, "topicSearchString": "gl-react gl opengl react react-native react-component" }, { @@ -139140,9 +141113,9 @@ "createdAt": "2025-08-03T16:09:47Z", "pushedAt": "2025-09-18T09:24:05Z", "forks": 5, - "issues": 4, + "issues": 3, "subscribers": 1, - "stars": 349, + "stars": 353, "dependencies": 0 }, "name": "react-native-fast-squircle", @@ -139166,22 +141139,22 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-fast-squircle", "npm": { - "downloads": 1509, - "weekDownloads": 683, + "downloads": 1419, + "weekDownloads": 368, "size": 184944, "latestRelease": "1.0.11", "latestReleaseDate": "2025-09-18T09:24:05.381Z" }, - "score": 59, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated" + "Known" ], - "popularity": 0.385, + "popularity": 0.221, "topicSearchString": "react-native ios android" }, { @@ -139239,11 +141212,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 2263, - "weekDownloads": 377, + "downloads": 2389, + "weekDownloads": 453, "size": 37556, "latestRelease": "3.0.0", "latestReleaseDate": "2025-08-14T00:56:54.865Z" @@ -139252,7 +141226,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.108, + "popularity": -0.089, "topicSearchString": "react-native component splash-screen lottie-splash-screen lottie animation splashscreen splash launch-screen launchscreen android ios swift" }, { @@ -139274,10 +141248,10 @@ "updatedAt": "2025-10-08T12:16:39Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-08T12:16:39Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-mesh-gradient", @@ -139302,12 +141276,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-mesh-gradient", "npm": { - "downloads": 20265, - "weekDownloads": 3260, + "downloads": 20710, + "weekDownloads": 2656, "size": 61658, "latestRelease": "0.4.7", "latestReleaseDate": "2025-09-11T20:24:05.826Z" @@ -139321,7 +141296,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.137, + "popularity": 0.109, "topicSearchString": "react-native expo mesh-gradient gradient mesh" }, { @@ -139341,13 +141316,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T16:00:14Z", + "updatedAt": "2025-10-17T11:55:29Z", "createdAt": "2018-04-25T06:35:29Z", - "pushedAt": "2025-10-16T16:00:14Z", - "forks": 1371, - "issues": 205, + "pushedAt": "2025-10-17T11:55:29Z", + "forks": 1372, + "issues": 203, "subscribers": 80, - "stars": 10335, + "stars": 10341, "dependencies": 11 }, "name": "react-native-worklets", @@ -139371,12 +141346,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-worklets", "npm": { - "downloads": 1862765, - "weekDownloads": 281608, + "downloads": 1918652, + "weekDownloads": 299648, "size": 688037, "latestRelease": "0.6.1", "latestReleaseDate": "2025-10-09T14:03:07.533Z" @@ -139389,7 +141365,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.129, + "popularity": 0.133, "topicSearchString": "react-native react native worklets" }, { @@ -139416,7 +141392,7 @@ "updatedAt": "2025-09-05T03:18:17Z", "createdAt": "2025-07-26T02:49:02Z", "pushedAt": "2025-09-05T03:18:17Z", - "forks": 8, + "forks": 9, "issues": 6, "subscribers": 0, "stars": 313, @@ -139456,12 +141432,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-glow", "npm": { - "downloads": 2902, - "weekDownloads": 543, + "downloads": 3151, + "weekDownloads": 407, "size": 251743, "latestRelease": "3.0.1", "latestReleaseDate": "2025-09-05T03:16:53.426Z" @@ -139471,7 +141448,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.11, "topicSearchString": "react-native skia reanimated glow animation animated border effect neon button-glow animated-glow glowing-button inner-glow apple-intelligence gradient hover press interactive" }, { @@ -139523,12 +141500,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-video-player", "npm": { - "downloads": 17513, - "weekDownloads": 3425, + "downloads": 16709, + "weekDownloads": 3592, "size": 215370, "latestRelease": "0.16.3", "latestReleaseDate": "2025-05-05T18:35:32.931Z" @@ -139539,7 +141517,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.183, "topicSearchString": "react-native ios android video-player hacktoberfest" }, { @@ -139552,7 +141530,7 @@ "android": true, "github": { "urls": { - "repo": "https://github.com/dream-sports-labs/d11-react-native-mqtt", + "repo": "https://github.com/ds-horizon/d11-react-native-mqtt", "homepage": null }, "stats": { @@ -139571,7 +141549,7 @@ "dependencies": 0 }, "name": "@d11/react-native-mqtt", - "fullName": "dream-sports-labs/d11-react-native-mqtt", + "fullName": "ds-horizon/d11-react-native-mqtt", "isPrivate": false, "registry": "https://registry.npmjs.org/", "description": "d11 mqtt library supporting mqtt for react native applications.", @@ -139591,11 +141569,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 4845, - "weekDownloads": 1488, + "downloads": 3846, + "weekDownloads": 1166, "size": 527188, "latestRelease": "0.0.5", "latestReleaseDate": "2025-07-08T22:33:05.310Z" @@ -139604,7 +141583,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.261, + "popularity": 0.258, "topicSearchString": "react-native ios android" }, { @@ -139654,11 +141633,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-drop-shadow-view", "npm": { - "downloads": 14, + "downloads": 20, "weekDownloads": 0, "size": 27337, "latestRelease": "0.3.1", @@ -139718,23 +141698,23 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-liquid-glass-view", "npm": { - "downloads": 738, - "weekDownloads": 169, + "downloads": 782, + "weekDownloads": 144, "size": 334070, "latestRelease": "0.1.9", "latestReleaseDate": "2025-09-19T13:44:13.028Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.555, + "popularity": -0.593, "topicSearchString": "react-native expo expo-liquid-glass expoliquidglass" }, { @@ -139787,12 +141767,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-thermal-receipt-printer", "npm": { - "downloads": 1784, - "weekDownloads": 330, + "downloads": 1842, + "weekDownloads": 275, "size": 6242614, "latestRelease": "1.2.0-rc.2", "latestReleaseDate": "2023-12-06T15:18:12.977Z" @@ -139804,7 +141785,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.127, "topicSearchString": "react-native thermal printer bluetooth net rn android" }, { @@ -139860,12 +141841,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-vosk", "npm": { - "downloads": 3763, - "weekDownloads": 365, + "downloads": 4034, + "weekDownloads": 465, "size": 186811367, "latestRelease": "2.1.6", "latestReleaseDate": "2025-09-12T15:35:23.028Z" @@ -139874,7 +141856,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.082, + "popularity": 0.098, "topicSearchString": "react-native ios android vosk speech-to-text speech-recognition asr offline" }, { @@ -139927,11 +141909,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 7651, - "weekDownloads": 1423, + "downloads": 7407, + "weekDownloads": 1415, "size": 1130584, "latestRelease": "0.3.8", "latestReleaseDate": "2025-06-17T15:37:17.610Z" @@ -139941,7 +141924,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.162, "topicSearchString": "react-native ios android stripe identity" }, { @@ -139999,12 +141982,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-screen-corner-radius", "npm": { - "downloads": 3546, - "weekDownloads": 609, + "downloads": 3501, + "weekDownloads": 691, "size": 28527, "latestRelease": "0.2.2", "latestReleaseDate": "2023-12-07T17:51:57.567Z" @@ -140014,7 +141998,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.168, "topicSearchString": "react-native ios android react native screen library native-module" }, { @@ -140071,10 +142055,11 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 16, + "downloads": 25, "weekDownloads": 2, "size": 30292, "latestRelease": "0.1.6", @@ -140082,7 +142067,7 @@ }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.867, + "popularity": -0.92, "topicSearchString": "react-native android ios battery batteryinfo batterystatus turbomodule dynamic-battery-info static-battery-info react-native-turbomodule event-listener" }, { @@ -140142,12 +142127,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-roomplan", "npm": { - "downloads": 248, - "weekDownloads": 18, + "downloads": 256, + "weekDownloads": 44, "size": 102541, "latestRelease": "1.2.1", "latestReleaseDate": "2025-08-30T16:41:17.752Z" @@ -140156,7 +142142,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.938, + "popularity": -0.853, "topicSearchString": "react-native expo expo-roomplan exporoomplan roomplan arkit room-scanning augmented-reality ar lidar ios mobile" }, { @@ -140202,12 +142188,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "matomo-tracker-react-native", "npm": { - "downloads": 9944, - "weekDownloads": 1645, + "downloads": 9640, + "weekDownloads": 1722, "size": 84881, "latestRelease": "0.3.3", "latestReleaseDate": "2025-04-02T07:52:36.348Z" @@ -140217,7 +142204,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.141, + "popularity": 0.152, "topicSearchString": "matomo react-native expo" }, { @@ -140269,11 +142256,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 16328, - "weekDownloads": 2533, + "downloads": 16009, + "weekDownloads": 3605, "size": 3165422, "latestRelease": "1.7.0", "latestReleaseDate": "2025-10-08T18:32:44.529Z" @@ -140284,7 +142272,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.132, + "popularity": 0.191, "topicSearchString": "react-native ios android" }, { @@ -140337,12 +142325,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-feedback-hub", "npm": { - "downloads": 25, - "weekDownloads": 1, + "downloads": 34, + "weekDownloads": 4, "size": 88174, "latestRelease": "1.1.4", "latestReleaseDate": "2025-08-27T23:07:51.573Z" @@ -140351,7 +142340,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.96, + "popularity": -0.9, "topicSearchString": "react-native feedback slack jira teams bug-reporting user-feedback screenshot screen-recording" }, { @@ -140413,11 +142402,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 48, - "weekDownloads": 9, + "downloads": 58, + "weekDownloads": 10, "size": 70279, "latestRelease": "0.1.11", "latestReleaseDate": "2025-08-23T08:14:54.368Z" @@ -140426,7 +142416,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.836, + "popularity": -0.846, "topicSearchString": "react-native expo emoji-picker emoji-chooser emoji-select emoji picker component" }, { @@ -140453,9 +142443,9 @@ "createdAt": "2024-11-21T13:42:10Z", "pushedAt": "2025-10-13T15:08:03Z", "forks": 50, - "issues": 21, + "issues": 22, "subscribers": 17, - "stars": 65, + "stars": 66, "dependencies": 1 }, "name": "@elevenlabs/react-native", @@ -140480,11 +142470,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 6050, - "weekDownloads": 913, + "downloads": 6254, + "weekDownloads": 993, "size": 270254, "latestRelease": "0.4.3", "latestReleaseDate": "2025-10-13T15:10:17.174Z" @@ -140495,7 +142486,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.128, + "popularity": 0.135, "topicSearchString": "elevenlabs react-native conversational-ai webrtc voice ai" }, { @@ -140541,22 +142532,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "scandit-react-native-datacapture-core", "npm": { - "downloads": 29759, - "weekDownloads": 5151, + "downloads": 29166, + "weekDownloads": 5378, "size": 613118, "latestRelease": "7.6.1", "latestReleaseDate": "2025-09-18T18:21:34.950Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.103, + "popularity": -0.093, "topicSearchString": "scandit react-native" }, { @@ -140602,22 +142593,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "scandit-react-native-datacapture-barcode", "npm": { - "downloads": 28147, - "weekDownloads": 4915, + "downloads": 27637, + "weekDownloads": 5128, "size": 2113757, "latestRelease": "7.6.1", "latestReleaseDate": "2025-09-18T18:21:44.257Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.102, + "popularity": -0.092, "topicSearchString": "scandit react-native" }, { @@ -140663,22 +142654,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "scandit-react-native-datacapture-id", "npm": { - "downloads": 12039, - "weekDownloads": 2061, + "downloads": 12345, + "weekDownloads": 2264, "size": 446828, "latestRelease": "7.6.1", "latestReleaseDate": "2025-09-18T18:21:55.200Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.104, + "popularity": -0.094, "topicSearchString": "scandit react-native" }, { @@ -140724,22 +142715,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "scandit-react-native-datacapture-parser", "npm": { - "downloads": 9274, - "weekDownloads": 1616, + "downloads": 9622, + "weekDownloads": 1788, "size": 101083, "latestRelease": "7.6.1", "latestReleaseDate": "2025-09-18T18:22:11.191Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.102, + "popularity": -0.092, "topicSearchString": "scandit react-native" }, { @@ -140785,22 +142776,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "scandit-react-native-datacapture-label", "npm": { - "downloads": 587, - "weekDownloads": 133, + "downloads": 773, + "weekDownloads": 58, "size": 504437, "latestRelease": "7.6.1", "latestReleaseDate": "2025-09-18T18:22:03.770Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.807, + "popularity": -0.936, "topicSearchString": "scandit react-native" }, { @@ -140846,22 +142837,22 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "scandit-react-native-datacapture-label-text", "npm": { - "downloads": 690, - "weekDownloads": 138, + "downloads": 851, + "weekDownloads": 56, "size": 57013, "latestRelease": "7.6.1", "latestReleaseDate": "2025-09-18T18:22:33.609Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.83, + "popularity": -0.944, "topicSearchString": "scandit react-native" }, { @@ -140907,22 +142898,22 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "scandit-react-native-datacapture-price-label", "npm": { - "downloads": 636, - "weekDownloads": 135, + "downloads": 1629, + "weekDownloads": 56, "size": 57270, "latestRelease": "7.6.1", "latestReleaseDate": "2025-09-18T18:22:19.116Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.819, + "popularity": -0.221, "topicSearchString": "scandit react-native" }, { @@ -140976,11 +142967,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 287, - "weekDownloads": 18, + "downloads": 299, + "weekDownloads": 6, "size": 473970, "latestRelease": "0.15.0", "latestReleaseDate": "2025-10-06T17:03:43.419Z" @@ -140990,7 +142982,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.696, + "popularity": -0.733, "topicSearchString": "react-native ui components" }, { @@ -141044,11 +143036,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 201, - "weekDownloads": 14, + "downloads": 205, + "weekDownloads": 6, "size": 122276, "latestRelease": "0.15.0", "latestReleaseDate": "2025-10-06T17:03:43.123Z" @@ -141058,7 +143051,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.69, + "popularity": -0.725, "topicSearchString": "react-native calendar dates" }, { @@ -141091,10 +143084,10 @@ "updatedAt": "2025-09-11T22:14:21Z", "createdAt": "2024-01-26T19:08:37Z", "pushedAt": "2025-09-11T22:14:21Z", - "forks": 63, + "forks": 64, "issues": 38, "subscribers": 6, - "stars": 1048, + "stars": 1049, "dependencies": 29 }, "name": "@10play/tentap-editor", @@ -141123,11 +143116,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 75394, - "weekDownloads": 14950, + "downloads": 71662, + "weekDownloads": 14727, "size": 4488272, "latestRelease": "0.7.4", "latestReleaseDate": "2025-07-02T08:38:51.306Z" @@ -141137,7 +143131,7 @@ "Popular", "Known" ], - "popularity": 0.169, + "popularity": 0.175, "topicSearchString": "rich-text rich-text-editor editor tiptap-react-native prosemirror-react-native react-native ios android" }, { @@ -141194,11 +143188,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 376, - "weekDownloads": 6, + "downloads": 389, + "weekDownloads": 288, "size": 42792, "latestRelease": "1.0.5", "latestReleaseDate": "2025-09-23T11:57:11.048Z" @@ -141208,7 +143203,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.986, + "popularity": -0.367, "topicSearchString": "react-native qr-code decoder scanner qr qr-code qr-local-image qr-decode qr-kit" }, { @@ -141236,7 +143231,7 @@ "pushedAt": "2025-10-08T14:58:44Z", "forks": 11, "issues": 0, - "subscribers": 90, + "subscribers": 89, "stars": 63, "dependencies": 0 }, @@ -141260,11 +143255,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 15548, - "weekDownloads": 3006, + "downloads": 14688, + "weekDownloads": 2791, "size": 294179, "latestRelease": "3.4.0", "latestReleaseDate": "2025-10-08T15:01:24.584Z" @@ -141275,7 +143271,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.162, "topicSearchString": "react-native shopify checkout" }, { @@ -141296,13 +143292,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-13T15:45:48Z", + "updatedAt": "2025-10-17T15:06:25Z", "createdAt": "2025-06-03T11:27:50Z", - "pushedAt": "2025-10-13T15:45:48Z", + "pushedAt": "2025-10-17T15:06:25Z", "forks": 9, "issues": 1, "subscribers": 3, - "stars": 326, + "stars": 332, "dependencies": 0 }, "name": "expo-live-activity", @@ -141327,12 +143323,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-live-activity", "npm": { - "downloads": 3003, - "weekDownloads": 491, + "downloads": 3183, + "weekDownloads": 787, "size": 116809, "latestRelease": "0.4.1", "latestReleaseDate": "2025-10-13T15:48:00.223Z" @@ -141343,7 +143340,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.139, + "popularity": 0.21, "topicSearchString": "react-native expo live-activity ios apple" }, { @@ -141371,7 +143368,7 @@ "forks": 12, "issues": 3, "subscribers": 0, - "stars": 224, + "stars": 235, "dependencies": 2 }, "name": "react-native-rag", @@ -141397,12 +143394,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-rag", "npm": { - "downloads": 779, - "weekDownloads": 20, + "downloads": 1065, + "weekDownloads": 93, "size": 134263, "latestRelease": "0.2.0", "latestReleaseDate": "2025-10-10T10:14:52.195Z" @@ -141413,7 +143411,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.728, + "popularity": 0.074, "topicSearchString": "react-native ios android ai llm rag" }, { @@ -141434,13 +143432,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T09:42:11Z", + "updatedAt": "2025-10-18T11:30:22Z", "createdAt": "2023-08-02T04:26:30Z", - "pushedAt": "2025-10-16T09:42:11Z", + "pushedAt": "2025-10-18T11:30:22Z", "forks": 69, "issues": 11, "subscribers": 10, - "stars": 697, + "stars": 699, "dependencies": 0 }, "name": "llama.rn", @@ -141470,15 +143468,16 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "llama.rn", "npm": { - "downloads": 8101, - "weekDownloads": 1348, - "size": 716143708, - "latestRelease": "0.8.0-rc.1", - "latestReleaseDate": "2025-10-16T07:45:04.498Z" + "downloads": 8589, + "weekDownloads": 1578, + "size": 158951813, + "latestRelease": "0.8.0-rc.3", + "latestReleaseDate": "2025-10-18T05:14:52.084Z" }, "score": 57, "matchingScoreModifiers": [ @@ -141486,7 +143485,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.141, + "popularity": 0.156, "topicSearchString": "react-native ios android large-language-model llm local-llm llama.cpp llama llama-2 llama-cpp" }, { @@ -141532,12 +143531,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-toptabs", "npm": { - "downloads": 22, - "weekDownloads": 0, + "downloads": 36, + "weekDownloads": 1, "size": 34977, "latestRelease": "1.0.11", "latestReleaseDate": "2025-09-04T14:44:47.397Z" @@ -141546,7 +143546,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -0.975, "topicSearchString": "" }, { @@ -141601,12 +143601,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-gnss-status-checker", "npm": { - "downloads": 32, - "weekDownloads": 11, + "downloads": 33, + "weekDownloads": 7, "size": 115812, "latestRelease": "1.1.0-beta.1", "latestReleaseDate": "2025-08-29T09:22:57.310Z" @@ -141615,7 +143616,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.686, + "popularity": -0.8, "topicSearchString": "react-native android gnss gps navic satellite dual-frequency location" }, { @@ -141670,12 +143671,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "typewriter4react-native", "npm": { - "downloads": 242, - "weekDownloads": 14, + "downloads": 324, + "weekDownloads": 8, "size": 59844, "latestRelease": "0.5.3", "latestReleaseDate": "2025-09-15T09:10:27.105Z" @@ -141684,7 +143686,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.95, + "popularity": -0.979, "topicSearchString": "react-native ios android component reactjs expo npm-package typewriter-animation typewriter-effect typewriter-effects" }, { @@ -141738,18 +143740,19 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 287, - "weekDownloads": 37, + "downloads": 286, + "weekDownloads": 40, "size": 33566, "latestRelease": "0.2.0", "latestReleaseDate": "2025-07-26T01:07:14.096Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.89, + "popularity": -0.881, "topicSearchString": "react-native ios android keep-awake" }, { @@ -141805,12 +143808,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-better-auth-passkey", "npm": { - "downloads": 554, - "weekDownloads": 80, + "downloads": 755, + "weekDownloads": 161, "size": 111080, "latestRelease": "1.3.0", "latestReleaseDate": "2025-10-08T12:55:00.326Z" @@ -141820,7 +143824,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.877, + "popularity": -0.818, "topicSearchString": "react-native expo expo-better-auth-passkey better-auth passkey webauthn" }, { @@ -141865,11 +143869,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1190, - "weekDownloads": 178, + "downloads": 1163, + "weekDownloads": 262, "size": 32136, "latestRelease": "2.3.1", "latestReleaseDate": "2025-10-07T11:45:34.125Z" @@ -141879,7 +143884,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.127, + "popularity": 0.192, "topicSearchString": "" }, { @@ -141901,13 +143906,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-03T08:26:36Z", + "updatedAt": "2025-10-19T11:59:16Z", "createdAt": "2025-09-02T14:44:03Z", - "pushedAt": "2025-10-03T08:26:36Z", + "pushedAt": "2025-10-19T11:59:16Z", "forks": 17, - "issues": 2, + "issues": 1, "subscribers": 7, - "stars": 740, + "stars": 747, "dependencies": 0 }, "name": "@callstack/liquid-glass", @@ -141931,21 +143936,22 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 6017, - "weekDownloads": 878, - "size": 36872, - "latestRelease": "0.4.2", - "latestReleaseDate": "2025-10-03T08:26:35.845Z" + "downloads": 5932, + "weekDownloads": 720, + "size": 36907, + "latestRelease": "0.4.3", + "latestReleaseDate": "2025-10-19T11:59:15.152Z" }, "score": 59, "matchingScoreModifiers": [ "Known", "Recently updated" ], - "popularity": 0.124, + "popularity": 0.103, "topicSearchString": "react-native ios android" }, { @@ -141998,11 +144004,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-event-kit", "npm": { - "downloads": 7, + "downloads": 25, "weekDownloads": 0, "size": 438129, "latestRelease": "1.7.6", @@ -142065,12 +144072,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-audio-manager", "npm": { - "downloads": 306, - "weekDownloads": 15, + "downloads": 303, + "weekDownloads": 31, "size": 574815, "latestRelease": "0.1.6", "latestReleaseDate": "2025-09-25T11:06:19.723Z" @@ -142080,7 +144088,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.708, + "popularity": -0.663, "topicSearchString": "react-native ios android" }, { @@ -142106,9 +144114,9 @@ "createdAt": "2025-04-17T08:02:15Z", "pushedAt": "2025-10-13T09:12:40Z", "forks": 14, - "issues": 7, + "issues": 9, "subscribers": 5, - "stars": 722, + "stars": 737, "dependencies": 0 }, "name": "react-native-enriched", @@ -142134,12 +144142,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-enriched", "npm": { - "downloads": 6414, - "weekDownloads": 829, + "downloads": 7723, + "weekDownloads": 1231, "size": 583914, "latestRelease": "0.1.3", "latestReleaseDate": "2025-09-24T09:14:41.767Z" @@ -142149,7 +144158,7 @@ "Known", "Recently updated" ], - "popularity": 0.11, + "popularity": 0.135, "topicSearchString": "react-native ios android rich-text-editor text-input" }, { @@ -142202,12 +144211,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 33634, - "weekDownloads": 5533, + "downloads": 32935, + "weekDownloads": 6010, "size": 16913, "latestRelease": "1.4.2", "latestReleaseDate": "2023-06-06T07:24:32.759Z" @@ -142218,7 +144228,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.61, + "popularity": -0.595, "topicSearchString": "masonry react-native masonry-list pinterest flatlist masonry-layout" }, { @@ -142239,10 +144249,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9188, - "issues": 379, + "forks": 9243, + "issues": 386, "subscribers": 333, - "stars": 44143, + "stars": 44203, "dependencies": 0 }, "name": "expo-glass-effect", @@ -142267,12 +144277,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-glass-effect", "npm": { - "downloads": 95684, - "weekDownloads": 23263, + "downloads": 88298, + "weekDownloads": 29998, "size": 29528, "latestRelease": "0.1.4", "latestReleaseDate": "2025-09-17T00:06:51.348Z" @@ -142286,7 +144297,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.207, + "popularity": 0.539, "topicSearchString": "react-native apple liquid-glass expo expo-glass-effect" }, { @@ -142314,7 +144325,7 @@ "createdAt": "2017-09-11T16:41:36Z", "pushedAt": "2025-09-07T11:13:08Z", "forks": 96, - "issues": 2, + "issues": 3, "subscribers": 6, "stars": 177, "dependencies": 1 @@ -142343,11 +144354,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npm": { - "downloads": 8924, - "weekDownloads": 1900, + "downloads": 8531, + "weekDownloads": 1850, "size": 69246, "latestRelease": "4.2.2", "latestReleaseDate": "2025-09-07T11:14:35.768Z" @@ -142357,7 +144369,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.181, + "popularity": 0.184, "topicSearchString": "react-native naver 네아로 네이버 seoul dooboolab naver-login" }, { @@ -142412,11 +144424,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npm": { - "downloads": 1446, - "weekDownloads": 301, + "downloads": 1408, + "weekDownloads": 173, "size": 51475, "latestRelease": "1.0.1", "latestReleaseDate": "2025-09-07T17:52:20.712Z" @@ -142425,7 +144438,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.177, + "popularity": 0.105, "topicSearchString": "react react-native navigation-bar edge-to-edge status-bar system-bar" }, { @@ -142477,19 +144490,20 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-animated-observer", "npm": { - "downloads": 61, - "weekDownloads": 11, + "downloads": 63, + "weekDownloads": 15, "size": 37950, "latestRelease": "0.2.4", "latestReleaseDate": "2025-09-13T21:31:35.764Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.593, + "popularity": -0.536, "topicSearchString": "react-native ios android" }, { @@ -142545,18 +144559,19 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 58441, - "weekDownloads": 11243, + "downloads": 53703, + "weekDownloads": 10126, "size": 78390, "latestRelease": "0.2.2", "latestReleaseDate": "2025-09-10T06:48:11.576Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": 0.164, + "popularity": 0.16, "topicSearchString": "googlepay google-pay pay payment react-native ios android" }, { @@ -142580,7 +144595,7 @@ "updatedAt": "2025-09-15T19:35:12Z", "createdAt": "2025-02-26T21:03:41Z", "pushedAt": "2025-09-15T19:35:12Z", - "forks": 5, + "forks": 6, "issues": 1, "subscribers": 1, "stars": 14, @@ -142610,12 +144625,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-tiktok-business-sdk", "npm": { - "downloads": 2219, - "weekDownloads": 342, + "downloads": 2246, + "weekDownloads": 345, "size": 90276, "latestRelease": "1.5.0", "latestReleaseDate": "2025-09-09T18:39:45.140Z" @@ -142677,12 +144693,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-multi-resource-timeline", "npm": { - "downloads": 27, - "weekDownloads": 8, + "downloads": 32, + "weekDownloads": 3, "size": 393137, "latestRelease": "2.0.2", "latestReleaseDate": "2025-09-13T08:54:12.074Z" @@ -142691,7 +144708,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.733, + "popularity": -0.914, "topicSearchString": "react-native timeline calendar scheduler multi-resource gesture-handler reanimated expo typescript" }, { @@ -142711,13 +144728,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T16:40:12Z", + "updatedAt": "2025-10-17T18:15:17Z", "createdAt": "2021-12-14T16:53:48Z", - "pushedAt": "2025-10-16T16:40:12Z", - "forks": 392, - "issues": 15, + "pushedAt": "2025-10-17T18:15:17Z", + "forks": 393, + "issues": 16, "subscribers": 8, - "stars": 1578, + "stars": 1580, "dependencies": 2 }, "name": "@clerk/expo-passkeys", @@ -142743,14 +144760,15 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 17136, - "weekDownloads": 2346, - "size": 227476, - "latestRelease": "0.4.9", - "latestReleaseDate": "2025-10-16T16:43:44.916Z" + "downloads": 20260, + "weekDownloads": 1484, + "size": 227778, + "latestRelease": "0.4.10", + "latestReleaseDate": "2025-10-17T18:18:48.509Z" }, "score": 73, "matchingScoreModifiers": [ @@ -142759,7 +144777,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.116, + "popularity": 0.062, "topicSearchString": "react-native expo expo-passkey clerkexpopasskeys clerk passkeys" }, { @@ -142815,12 +144833,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-keyevent", "npm": { - "downloads": 48, - "weekDownloads": 8, + "downloads": 67, + "weekDownloads": 11, "size": 85182, "latestRelease": "0.0.6", "latestReleaseDate": "2025-09-09T03:35:48.776Z" @@ -142829,7 +144848,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.855, + "popularity": -0.853, "topicSearchString": "react-native nitro nitro-keyevent keyevent keyboard external android module remote tvos androidtv" }, { @@ -142882,11 +144901,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 511, - "weekDownloads": 59, + "downloads": 739, + "weekDownloads": 58, "size": 66248, "latestRelease": "1.2.1", "latestReleaseDate": "2024-01-23T14:40:01.381Z" @@ -142896,7 +144916,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.902, + "popularity": -0.933, "topicSearchString": "js react-native ios music-kit apple native" }, { @@ -142951,19 +144971,20 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-app-clip-overlay", "npm": { - "downloads": 22, - "weekDownloads": 11, + "downloads": 18, + "weekDownloads": 4, "size": 15407, "latestRelease": "0.1.6", "latestReleaseDate": "2025-09-12T07:44:17.009Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.56, + "popularity": -0.8, "topicSearchString": "react-native ios android app-clips turbomodule turbomodules new-architecture" }, { @@ -142988,7 +145009,7 @@ "forks": 1, "issues": 2, "subscribers": 0, - "stars": 94, + "stars": 95, "dependencies": 0 }, "name": "react-native-google-auth", @@ -143036,12 +145057,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-google-auth", "npm": { - "downloads": 2224, - "weekDownloads": 1432, + "downloads": 1427, + "weekDownloads": 587, "size": 177761, "latestRelease": "1.1.1", "latestReleaseDate": "2025-09-21T23:09:36.915Z" @@ -143050,7 +145072,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.548, + "popularity": 0.35, "topicSearchString": "react-native google-auth google-signin google-login google-oauth google-sso authentication oauth2 openid-connect social-login credential-manager one-tap-signin ios android typescript cross-platform mobile-auth google-identity auth google-api signin-sdk mobile-oauth user-authentication google-services google google-authentication google-sign-in" }, { @@ -143103,11 +145125,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 1889, - "weekDownloads": 414, + "downloads": 1695, + "weekDownloads": 1174, "size": 110862, "latestRelease": "1.3.1", "latestReleaseDate": "2025-09-25T15:54:10.866Z" @@ -143116,7 +145139,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.064, + "popularity": 0.34, "topicSearchString": "react-native ios android" }, { @@ -143148,7 +145171,7 @@ "forks": 0, "issues": 1, "subscribers": 1, - "stars": 76, + "stars": 77, "dependencies": 0 }, "name": "react-native-teleport", @@ -143181,12 +145204,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-teleport", "npm": { - "downloads": 756, - "weekDownloads": 94, + "downloads": 717, + "weekDownloads": 97, "size": 75911, "latestRelease": "0.3.0", "latestReleaseDate": "2025-09-23T08:49:16.321Z" @@ -143195,7 +145219,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.644, + "popularity": -0.635, "topicSearchString": "react-native portal teleport tunnel re-parent reparent reparentable gateway ios android web reparenting" }, { @@ -143248,12 +145272,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-calllogs-android", "npm": { - "downloads": 258, - "weekDownloads": 217, + "downloads": 261, + "weekDownloads": 236, "size": 35149, "latestRelease": "0.2.1", "latestReleaseDate": "2025-09-20T05:27:37.792Z" @@ -143262,7 +145287,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.277, + "popularity": -0.226, "topicSearchString": "react-native ios android" }, { @@ -143314,12 +145339,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "expo-core-spotlight", "npm": { - "downloads": 906, - "weekDownloads": 0, + "downloads": 939, + "weekDownloads": 645, "size": 44666, "latestRelease": "1.1.1", "latestReleaseDate": "2025-09-23T09:43:09.470Z" @@ -143329,7 +145355,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -0.414, "topicSearchString": "react-native expo expo-core-spotlight expocorespotlight ios spotlight spotlight-search" }, { @@ -143377,11 +145403,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "turbo" }, "npm": { - "downloads": 52075, - "weekDownloads": 7725, + "downloads": 51840, + "weekDownloads": 9185, "size": 92736, "latestRelease": "6.4.2", "latestReleaseDate": "2025-09-30T12:43:13.069Z" @@ -143390,7 +145417,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.124, + "popularity": -0.099, "topicSearchString": "react-native expo" }, { @@ -143455,12 +145482,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-xenon", "npm": { - "downloads": 466, - "weekDownloads": 111, + "downloads": 476, + "weekDownloads": 174, "size": 375543, "latestRelease": "2.3.0", "latestReleaseDate": "2025-10-12T00:30:43.981Z" @@ -143470,7 +145498,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.546, + "popularity": -0.439, "topicSearchString": "react-native android ios xenon inspector debugger devtools https network nsurlsession okhttp logger console" }, { @@ -143540,11 +145568,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 90, - "weekDownloads": 71, + "downloads": 30, + "weekDownloads": 10, "size": 65733, "latestRelease": "0.2.0", "latestReleaseDate": "2025-09-17T18:09:46.842Z" @@ -143554,7 +145583,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.324, + "popularity": -0.714, "topicSearchString": "react react-native video video-player media media-player youtube youtube-player yt player streaming custom-player playback web-video iframe" }, { @@ -143582,7 +145611,7 @@ "forks": 18, "issues": 0, "subscribers": 3, - "stars": 443, + "stars": 455, "dependencies": 1 }, "name": "@react-buoy/core", @@ -143593,11 +145622,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1262, - "weekDownloads": 122, + "downloads": 1459, + "weekDownloads": 719, "size": 459232, "latestRelease": "0.1.14", "latestReleaseDate": "2025-10-16T03:19:40.240Z" @@ -143608,7 +145638,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.082, + "popularity": 0.419, "topicSearchString": "" }, { @@ -143636,7 +145666,7 @@ "forks": 18, "issues": 0, "subscribers": 3, - "stars": 443, + "stars": 455, "dependencies": 1 }, "name": "@react-buoy/shared-ui", @@ -143647,11 +145677,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1809, - "weekDownloads": 182, + "downloads": 2064, + "weekDownloads": 1159, "size": 3692478, "latestRelease": "0.1.14", "latestReleaseDate": "2025-10-16T03:19:33.659Z" @@ -143662,7 +145693,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.086, + "popularity": 0.478, "topicSearchString": "" }, { @@ -143690,7 +145721,7 @@ "forks": 18, "issues": 0, "subscribers": 3, - "stars": 443, + "stars": 455, "dependencies": 1 }, "name": "@react-buoy/env", @@ -143701,11 +145732,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1034, - "weekDownloads": 117, + "downloads": 1181, + "weekDownloads": 714, "size": 217488, "latestRelease": "0.1.14", "latestReleaseDate": "2025-10-16T03:19:46.232Z" @@ -143716,7 +145748,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.096, + "popularity": 0.516, "topicSearchString": "" }, { @@ -143744,7 +145776,7 @@ "forks": 18, "issues": 0, "subscribers": 3, - "stars": 443, + "stars": 455, "dependencies": 2 }, "name": "@react-buoy/network", @@ -143755,11 +145787,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1265, - "weekDownloads": 125, + "downloads": 1433, + "weekDownloads": 808, "size": 545905, "latestRelease": "0.1.14", "latestReleaseDate": "2025-10-16T03:19:51.848Z" @@ -143770,7 +145803,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.084, + "popularity": 0.48, "topicSearchString": "" }, { @@ -143798,7 +145831,7 @@ "forks": 18, "issues": 0, "subscribers": 3, - "stars": 443, + "stars": 455, "dependencies": 1 }, "name": "@react-buoy/react-query", @@ -143809,11 +145842,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1372, - "weekDownloads": 137, + "downloads": 1421, + "weekDownloads": 889, "size": 1193496, "latestRelease": "0.1.14", "latestReleaseDate": "2025-10-16T03:20:04.284Z" @@ -143824,7 +145858,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.085, + "popularity": 0.532, "topicSearchString": "" }, { @@ -143852,7 +145886,7 @@ "forks": 18, "issues": 0, "subscribers": 3, - "stars": 443, + "stars": 455, "dependencies": 2 }, "name": "@react-buoy/storage", @@ -143863,11 +145897,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1140, - "weekDownloads": 125, + "downloads": 1279, + "weekDownloads": 821, "size": 1387434, "latestRelease": "0.1.14", "latestReleaseDate": "2025-10-16T03:19:58.473Z" @@ -143878,7 +145913,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.093, + "popularity": 0.547, "topicSearchString": "" }, { @@ -143905,7 +145940,7 @@ "forks": 10, "issues": 8, "subscribers": 2, - "stars": 408, + "stars": 419, "dependencies": 0 }, "name": "react-native-nitro-fetch-monorepo", @@ -143935,12 +145970,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-fetch", "npm": { - "downloads": 510, - "weekDownloads": 235, + "downloads": 417, + "weekDownloads": 146, "size": 218496, "latestRelease": "0.1.3", "latestReleaseDate": "2025-09-19T18:08:46.394Z" @@ -143951,7 +145987,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.358, + "popularity": -0.452, "topicSearchString": "cronet fast fetch http http2 network nitro prefetch react react-native" }, { @@ -143979,7 +146015,7 @@ "forks": 3, "issues": 5, "subscribers": 2, - "stars": 156, + "stars": 158, "dependencies": 0 }, "name": "react-native-nitro-text", @@ -144002,12 +146038,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-nitro-text", "npm": { - "downloads": 731, - "weekDownloads": 282, + "downloads": 752, + "weekDownloads": 538, "size": 340211, "latestRelease": "1.0.3", "latestReleaseDate": "2025-09-22T11:02:51.970Z" @@ -144017,7 +146054,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.422, + "popularity": -0.139, "topicSearchString": "react-native nitro-text" }, { @@ -144077,11 +146114,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-native-storage", "npm": { - "downloads": 393, + "downloads": 407, "weekDownloads": 0, "size": 20468, "latestRelease": "0.1.3", @@ -144158,11 +146196,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-unarchive", "npm": { - "downloads": 180, + "downloads": 198, "weekDownloads": 0, "size": 81878, "latestRelease": "1.1.0", @@ -144200,7 +146239,7 @@ "forks": 1, "issues": 0, "subscribers": 0, - "stars": 3, + "stars": 4, "dependencies": 1 }, "name": "react-native-ultrastore", @@ -144237,11 +146276,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ultrastore", "npm": { - "downloads": 78, + "downloads": 79, "weekDownloads": 0, "size": 101840, "latestRelease": "1.0.0", @@ -144279,7 +146319,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 3, + "stars": 4, "dependencies": 0 }, "name": "@pushpendersingh/react-native-otp-verify", @@ -144309,10 +146349,11 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 270, + "downloads": 277, "weekDownloads": 0, "size": 54421, "latestRelease": "1.2.0", @@ -144351,7 +146392,7 @@ "forks": 1, "issues": 0, "subscribers": 2, - "stars": 20, + "stars": 21, "dependencies": 0 }, "name": "react-native-restart-newarch", @@ -144379,12 +146420,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-restart-newarch", "npm": { - "downloads": 17948, - "weekDownloads": 2735, + "downloads": 17892, + "weekDownloads": 2945, "size": 21457, "latestRelease": "1.0.82", "latestReleaseDate": "2025-10-05T08:11:23.196Z" @@ -144393,7 +146435,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.12, + "popularity": -0.11, "topicSearchString": "react-native restart restart-newarch newarch android ios native" }, { @@ -144420,7 +146462,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 0, + "stars": 1, "dependencies": 0 }, "name": "react-native-mdm-config", @@ -144445,11 +146487,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-mdm-config", "npm": { - "downloads": 158, + "downloads": 160, "weekDownloads": 0, "size": 14443, "latestRelease": "1.0.1", @@ -144517,10 +146560,11 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 2440, + "downloads": 2487, "weekDownloads": 0, "size": 47981, "latestRelease": "2.1.0", @@ -144588,19 +146632,20 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "expo" }, "npmPkg": "react-native-ssl-manager", "npm": { - "downloads": 96, - "weekDownloads": 14, + "downloads": 92, + "weekDownloads": 8, "size": 77333, "latestRelease": "1.0.2", "latestReleaseDate": "2025-09-03T10:25:11.212Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.623, + "popularity": -0.674, "topicSearchString": "react-native ios android expo bun ssl-pinning security certificate-pinning" }, { @@ -144673,10 +146718,11 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "nitro" }, "npm": { - "downloads": 134, + "downloads": 135, "weekDownloads": 0, "size": 81039, "latestRelease": "1.0.0", @@ -144714,7 +146760,7 @@ "forks": 1, "issues": 1, "subscribers": 1, - "stars": 16, + "stars": 17, "dependencies": 0 }, "name": "@coolsoftwaretyler/cool-pdf", @@ -144742,10 +146788,11 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 914, + "downloads": 919, "weekDownloads": 0, "size": 115770, "latestRelease": "0.1.10", @@ -144780,10 +146827,10 @@ "updatedAt": "2025-10-16T14:12:42Z", "createdAt": "2025-06-03T15:21:45Z", "pushedAt": "2025-10-16T14:12:42Z", - "forks": 41, + "forks": 42, "issues": 0, - "subscribers": 11, - "stars": 879, + "subscribers": 12, + "stars": 927, "dependencies": 0 }, "name": "heroui-native", @@ -144814,12 +146861,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "heroui-native", "npm": { - "downloads": 3976, - "weekDownloads": 622, + "downloads": 4245, + "weekDownloads": 676, "size": 2438149, "latestRelease": "1.0.0-alpha.15", "latestReleaseDate": "2025-10-15T13:21:12.194Z" @@ -144831,7 +146879,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.133, + "popularity": 0.135, "topicSearchString": "react-native ios android hero-ui hero-ui-native library nativewind design-system expo heroui ui-components" }, { @@ -144849,9 +146897,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-16T19:05:04Z", + "updatedAt": "2025-10-19T13:42:33Z", "createdAt": "2025-03-30T00:54:38Z", - "pushedAt": "2025-10-16T19:05:04Z", + "pushedAt": "2025-10-19T13:42:33Z", "forks": 0, "issues": 0, "subscribers": 1, @@ -144887,12 +146935,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-google-places-textinput", "npm": { - "downloads": 13565, - "weekDownloads": 2516, + "downloads": 13154, + "weekDownloads": 2584, "size": 90864, "latestRelease": "0.8.0", "latestReleaseDate": "2025-07-09T20:49:38.314Z" @@ -144902,7 +146951,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.092, + "popularity": -0.083, "topicSearchString": "react-native ios android autocomplete autocompletion geocode google google-api places places-api react textinput" }, { @@ -144928,7 +146977,7 @@ "forks": 2, "issues": 0, "subscribers": 1, - "stars": 25, + "stars": 28, "dependencies": 0 }, "name": "@danielsaraldi/react-native-blur-view", @@ -144956,11 +147005,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 1094, - "weekDownloads": 153, + "downloads": 1110, + "weekDownloads": 228, "size": 53895, "latestRelease": "0.8.0", "latestReleaseDate": "2025-10-08T12:24:16.887Z" @@ -144969,7 +147019,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.119, + "popularity": 0.175, "topicSearchString": "react-native ios android blur blur-view blurview react" }, { @@ -145020,12 +147070,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-shimmer-text", "npm": { - "downloads": 1862, - "weekDownloads": 74, + "downloads": 2025, + "weekDownloads": 29, "size": 85212, "latestRelease": "0.1.4", "latestReleaseDate": "2025-09-14T19:25:07.660Z" @@ -145034,7 +147085,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.034, + "popularity": 0.012, "topicSearchString": "react-native expo shimmer text ios android web" }, { @@ -145094,11 +147145,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 193, - "weekDownloads": 15, + "downloads": 216, + "weekDownloads": 27, "size": 392687, "latestRelease": "1.0.2", "latestReleaseDate": "2025-08-11T08:52:05.979Z" @@ -145108,7 +147160,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.933, + "popularity": -0.892, "topicSearchString": "react-native expo otp-autofill avasotpautofill expo-modules otp-verification android autofill" }, { @@ -145133,7 +147185,7 @@ "forks": 34, "issues": 1, "subscribers": 13, - "stars": 4317, + "stars": 4316, "dependencies": 2 }, "name": "react-native-appwrite", @@ -145157,11 +147209,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 19861, - "weekDownloads": 4500, + "downloads": 19012, + "weekDownloads": 4380, "size": 2442926, "latestRelease": "0.17.1", "latestReleaseDate": "2025-10-09T11:07:37.670Z" @@ -145173,7 +147226,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.193, + "popularity": 0.196, "topicSearchString": "appwrite baas javascript react-native typescript" }, { @@ -145237,12 +147290,13 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, - "moduleType": "turbo" + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-deepgram", "npm": { - "downloads": 462, - "weekDownloads": 1, + "downloads": 554, + "weekDownloads": 3, "size": 1298016, "latestRelease": "1.0.4", "latestReleaseDate": "2025-10-08T02:43:02.099Z" @@ -145252,7 +147306,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.998, + "popularity": -0.995, "topicSearchString": "react-native ios android deepgram speech-to-text text-intelligence typescript speech transcription voice-recognition audio-processing real-time-transcription expo mobile-ai voice-to-text stt nlp sentiment-analysis speech-recognition" }, { @@ -145303,11 +147357,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 320, - "weekDownloads": 12, + "downloads": 343, + "weekDownloads": 15, "size": 709633, "latestRelease": "1.0.0-beta.24", "latestReleaseDate": "2025-10-07T17:45:58.356Z" @@ -145317,7 +147372,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.968, + "popularity": -0.963, "topicSearchString": "react-native ios android component-library reusable-components nayan-ui" }, { @@ -145367,11 +147422,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 945, - "weekDownloads": 39, + "downloads": 1362, + "weekDownloads": 111, "size": 628571, "latestRelease": "0.0.205", "latestReleaseDate": "2025-10-12T12:39:56.786Z" @@ -145381,7 +147437,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.965, + "popularity": -0.181, "topicSearchString": "react-native form-builder form-generator model-based-design form forms" }, { @@ -145436,11 +147492,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "nitro" }, "npmPkg": "react-native-play-age-range-declaration", "npm": { - "downloads": 144, + "downloads": 147, "weekDownloads": 0, "size": 27207, "latestRelease": "1.1.5", @@ -145519,11 +147576,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "heart-switch-react-native", "npm": { - "downloads": 1468, + "downloads": 1508, "weekDownloads": 0, "size": 51452, "latestRelease": "0.18.5", @@ -145586,11 +147644,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-apns-kit", "npm": { - "downloads": 220, + "downloads": 229, "weekDownloads": 0, "size": 21956, "latestRelease": "1.0.7", @@ -145608,7 +147667,6 @@ "examples": [ "https://github.com/Gautham495/react-native-app-attest/tree/main/example" ], - "android": false, "ios": true, "newArchitecture": true, "github": { @@ -145653,11 +147711,12 @@ "newArchitecture": true, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-app-attest", "npm": { - "downloads": 491, + "downloads": 509, "weekDownloads": 0, "size": 23717, "latestRelease": "1.0.6", @@ -145715,12 +147774,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npmPkg": "react-native-google-code-scanner-android", "npm": { - "downloads": 585, - "weekDownloads": 34, + "downloads": 594, + "weekDownloads": 39, "size": 42099, "latestRelease": "1.2.4", "latestReleaseDate": "2025-10-12T11:43:50.492Z" @@ -145730,7 +147790,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.95, + "popularity": -0.944, "topicSearchString": "react-native ios android" }, { @@ -145759,7 +147819,7 @@ "forks": 2, "issues": 0, "subscribers": 2, - "stars": 9, + "stars": 12, "dependencies": 0 }, "name": "react-native-google-maps-plus", @@ -145787,11 +147847,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": true, "moduleType": "nitro" }, "npmPkg": "react-native-google-maps-plus", "npm": { - "downloads": 2344, + "downloads": 2604, "weekDownloads": 0, "size": 1091213, "latestRelease": "1.6.0", @@ -145854,11 +147915,12 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "expo" }, "npmPkg": "expo-video-thumbref", "npm": { - "downloads": 81, + "downloads": 85, "weekDownloads": 0, "size": 42441, "latestRelease": "9.3.0", @@ -145892,13 +147954,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-16T11:56:08Z", + "updatedAt": "2025-10-16T19:29:25Z", "createdAt": "2025-07-22T08:58:08Z", - "pushedAt": "2025-10-16T11:56:08Z", + "pushedAt": "2025-10-16T19:29:25Z", "forks": 3, "issues": 0, "subscribers": 2, - "stars": 42, + "stars": 43, "dependencies": 0 }, "name": "react-native-ble-nitro", @@ -145928,12 +147990,13 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, - "moduleType": "expo" + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-ble-nitro", "npm": { - "downloads": 627, - "weekDownloads": 17, + "downloads": 715, + "weekDownloads": 16, "size": 551531, "latestRelease": "1.8.0", "latestReleaseDate": "2025-10-16T11:47:15.510Z" @@ -145943,12 +148006,11 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.727, + "popularity": -0.731, "topicSearchString": "react-native bluetooth ble bluetooth-low-energy nitro-modules expo ios android performance nitro" }, { "githubUrl": "https://github.com/FFGlobal/expo-onboarding", - "npmPkg": "expo-onboarding", "web": true, "expoGo": true, "fireos": true, @@ -145964,9 +148026,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-19T22:02:26Z", + "updatedAt": "2025-10-17T00:39:26Z", "createdAt": "2025-07-19T22:03:00Z", - "pushedAt": "2025-07-19T22:02:26Z", + "pushedAt": "2025-10-17T00:39:26Z", "forks": 0, "issues": 0, "subscribers": 0, @@ -145995,25 +148057,27 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, + "npmPkg": "expo-onboarding", "npm": { - "downloads": 8, + "downloads": 264, "weekDownloads": 3, - "size": 84759, - "latestRelease": "1.0.1", - "latestReleaseDate": "2025-07-19T21:52:27.067Z" + "size": 85181, + "latestRelease": "1.1.2", + "latestReleaseDate": "2025-10-17T00:39:01.934Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.4, + "popularity": -0.99, "topicSearchString": "react-native expo onboarding onboarding-screen onboard" }, { "githubUrl": "https://github.com/Unistyles-OSS/uniwind/tree/main/packages/uniwind", - "npmPkg": "uniwind", "examples": [ "https://github.com/Unistyles-OSS/uniwind/tree/main/apps/expo-router", "https://github.com/Unistyles-OSS/uniwind/tree/main/apps/expo-example", @@ -146035,13 +148099,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-15T05:25:59Z", + "updatedAt": "2025-10-18T12:53:12Z", "createdAt": "2025-07-29T08:10:42Z", - "pushedAt": "2025-10-15T05:25:59Z", + "pushedAt": "2025-10-18T12:53:12Z", "forks": 4, "issues": 0, - "subscribers": 3, - "stars": 319, + "subscribers": 4, + "stars": 340, "dependencies": 4 }, "name": "uniwind", @@ -146069,11 +148133,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, + "npmPkg": "uniwind", "npm": { - "downloads": 2640, - "weekDownloads": 380, + "downloads": 2804, + "weekDownloads": 229, "size": 485063, "latestRelease": "1.0.0-beta.8", "latestReleaseDate": "2025-10-14T07:04:55.330Z" @@ -146084,7 +148150,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.122, + "popularity": 0.069, "topicSearchString": "unistyles unistyles react-native react native tailwind tailwindcss theme style" }, { @@ -146107,11 +148173,11 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-16T07:43:20Z", + "updatedAt": "2025-10-17T03:09:28Z", "createdAt": "2024-08-05T15:00:47Z", - "pushedAt": "2025-10-16T07:43:20Z", + "pushedAt": "2025-10-17T03:09:28Z", "forks": 4, - "issues": 4, + "issues": 2, "subscribers": 4, "stars": 15, "dependencies": 1 @@ -146144,21 +148210,22 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": true, + "configPlugin": false, "moduleType": "turbo" }, "npm": { - "downloads": 576, - "weekDownloads": 77, - "size": 152966, - "latestRelease": "0.5.0", - "latestReleaseDate": "2025-10-14T06:57:40.054Z" + "downloads": 673, + "weekDownloads": 67, + "size": 200893, + "latestRelease": "0.6.0", + "latestReleaseDate": "2025-10-17T03:09:28.008Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.886, + "popularity": -0.915, "topicSearchString": "react-native ios android web lottie dotlottie player animation lottie-android lottie-ios lottie-react-native" }, { @@ -146188,13 +148255,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T17:50:46Z", + "updatedAt": "2025-10-17T10:53:34Z", "createdAt": "2022-04-20T07:39:55Z", - "pushedAt": "2025-10-16T17:50:46Z", + "pushedAt": "2025-10-17T10:53:34Z", "forks": 14, "issues": 8, "subscribers": 4, - "stars": 418, + "stars": 420, "dependencies": 1 }, "name": "@legendapp/motion", @@ -146223,14 +148290,15 @@ "newArchitecture": false, "isArchived": false, "hasNativeCode": false, + "configPlugin": false, "moduleType": "expo" }, "npm": { - "downloads": 256645, - "weekDownloads": 47918, - "size": 241590, - "latestRelease": "2.5.1", - "latestReleaseDate": "2025-10-16T17:50:31.500Z" + "downloads": 251327, + "weekDownloads": 49111, + "size": 241489, + "latestRelease": "2.5.3", + "latestReleaseDate": "2025-10-17T10:53:32.378Z" }, "score": 57, "matchingScoreModifiers": [ @@ -146238,32 +148306,298 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.166, "topicSearchString": "react native react-native animations transitions framer motion framer-motion" + }, + { + "githubUrl": "https://github.com/bluesky-social/atproto/tree/main/packages/oauth/oauth-client-expo", + "npmPkg": "@atproto/oauth-client-expo", + "ios": true, + "android": true, + "web": true, + "github": { + "urls": { + "repo": "https://github.com/bluesky-social/atproto", + "homepage": "https://github.com/bluesky-social/atproto/tree/main/packages/oauth/oauth-client-expo#readme" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": true, + "hasTopics": true, + "updatedAt": "2025-10-06T17:13:28Z", + "createdAt": "2021-12-17T20:06:47Z", + "pushedAt": "2025-10-06T17:13:28Z", + "forks": 755, + "issues": 461, + "subscribers": 108, + "stars": 8860, + "dependencies": 9 + }, + "name": "@atproto/oauth-client-expo", + "fullName": "bluesky-social/atproto", + "isPrivate": false, + "description": "ATPROTO OAuth client for Expo applications", + "topics": [ + "atproto", + "oauth", + "client", + "react-native", + "expo" + ], + "license": { + "name": "MIT License", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz", + "key": "mit", + "spdxId": "MIT" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" + }, + "npm": { + "downloads": 95, + "weekDownloads": 0, + "size": 96611, + "latestRelease": "0.0.1", + "latestReleaseDate": "2025-10-06T17:19:50.546Z" + }, + "score": 86, + "matchingScoreModifiers": [ + "Very popular", + "Popular", + "Known", + "Lots of open issues", + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": -1, + "topicSearchString": "atproto oauth client react-native expo" + }, + { + "githubUrl": "https://github.com/rit3zh/expo-ios-visual-blur", + "examples": [ + "https://github.com/rit3zh/expo-ios-visual-blur/tree/main/example" + ], + "ios": true, + "github": { + "urls": { + "repo": "https://github.com/rit3zh/expo-ios-visual-blur", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-08-09T18:25:47Z", + "createdAt": "2025-08-09T13:47:34Z", + "pushedAt": "2025-08-09T18:25:47Z", + "forks": 1, + "issues": 0, + "subscribers": 2, + "stars": 86, + "dependencies": 0 + }, + "name": "expo-ios-visual-blur", + "fullName": "rit3zh/expo-ios-visual-blur", + "isPrivate": false, + "description": "⚠️ Recommended not to use in production! 🎨 Native iOS progressive blur for React Native (Expo) — smooth, customizable SwiftUI blur effects with directional gradients and easy integration. 🍎✨", + "topics": [ + "react-native", + "expo", + "expo-ios-visual-blur", + "expoiosvisualblur" + ], + "license": { + "name": "MIT License", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz", + "key": "mit", + "spdxId": "MIT" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" + }, + "npmPkg": "expo-ios-visual-blur", + "npm": { + "downloads": 301, + "weekDownloads": 34, + "size": 1129748, + "latestRelease": "0.1.0", + "latestReleaseDate": "2025-08-09T13:48:49.691Z" + }, + "score": 43, + "matchingScoreModifiers": [ + "Not supporting New Architecture" + ], + "popularity": -0.653, + "topicSearchString": "react-native expo expo-ios-visual-blur expoiosvisualblur" + }, + { + "githubUrl": "https://github.com/callstackincubator/react-native-harness/tree/main/packages/react-native-harness", + "android": true, + "ios": true, + "github": { + "urls": { + "repo": "https://github.com/callstackincubator/react-native-harness", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": false, + "updatedAt": "2025-10-16T12:14:20Z", + "createdAt": "2025-06-17T07:41:33Z", + "pushedAt": "2025-10-16T12:14:20Z", + "forks": 1, + "issues": 0, + "subscribers": 0, + "stars": 125, + "dependencies": 5 + }, + "name": "react-native-harness", + "fullName": "callstackincubator/react-native-harness", + "isPrivate": false, + "topics": [], + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false + }, + "npmPkg": "react-native-harness", + "npm": { + "downloads": 1248, + "weekDownloads": 176, + "size": 43808, + "latestRelease": "1.0.0-alpha.15", + "latestReleaseDate": "2025-10-15T14:22:47.626Z" + }, + "score": 49, + "matchingScoreModifiers": [ + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": 0.12, + "topicSearchString": "" + }, + { + "githubUrl": "https://github.com/whidrubeld/react-native-reanimated-modal", + "examples": [ + "https://github.com/whidrubeld/react-native-reanimated-modal/tree/main/example" + ], + "android": true, + "ios": true, + "expoGo": true, + "github": { + "urls": { + "repo": "https://github.com/whidrubeld/react-native-reanimated-modal", + "homepage": "https://whidrubeld.github.io/react-native-reanimated-modal/" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-16T20:32:10Z", + "createdAt": "2025-07-27T21:31:09Z", + "pushedAt": "2025-10-16T20:32:10Z", + "forks": 0, + "issues": 1, + "subscribers": 0, + "stars": 12, + "dependencies": 0 + }, + "name": "react-native-reanimated-modal", + "fullName": "whidrubeld/react-native-reanimated-modal", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "React Native modal library with animations and gesture support", + "topics": [ + "react-native", + "ios", + "android", + "modal", + "popup", + "overlay", + "reanimated", + "gesture-handler", + "animation", + "swipe", + "fade", + "slide", + "typescript", + "performant", + "lightweight", + "javascript", + "gesture" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false + }, + "npmPkg": "react-native-reanimated-modal", + "npm": { + "downloads": 452, + "weekDownloads": 59, + "size": 112138, + "latestRelease": "1.2.3", + "latestReleaseDate": "2025-10-16T20:34:03.590Z" + }, + "score": 49, + "matchingScoreModifiers": [ + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": -0.889, + "topicSearchString": "react-native ios android modal popup overlay reanimated gesture-handler animation swipe fade slide typescript performant lightweight javascript gesture" } ], "topics": { - "react-native": 1805, - "ios": 1001, - "android": 978, + "react-native": 1808, + "ios": 1002, + "android": 979, "react": 599, - "expo": 287, + "expo": 289, "react-component": 272, "component": 199, "native": 175, - "typescript": 137, - "javascript": 93, + "typescript": 138, + "javascript": 94, "web": 91, "mobile": 75, "ui": 74, "hacktoberfest": 66, "image": 58, - "animation": 55, - "reanimated": 55, + "animation": 57, + "reanimated": 56, "picker": 51, "library": 47, "reactnative": 40, - "modal": 38, + "modal": 39, "svg": 34, "video": 31, "reactjs": 31, @@ -146286,8 +148620,8 @@ "react-navigation": 23, "calendar": 23, "input": 23, + "swipe": 22, "redux": 21, - "swipe": 21, "dropdown": 21, "swift": 21, "hooks": 21, @@ -146307,6 +148641,7 @@ "responsive": 17, "carousel": 16, "swiper": 16, + "popup": 16, "textinput": 16, "chart": 16, "scroll": 16, @@ -146317,7 +148652,6 @@ "css": 15, "form": 15, "localization": 15, - "popup": 15, "customizable": 15, "state": 15, "button": 14, @@ -146325,9 +148659,11 @@ "card": 14, "background": 14, "network": 14, + "gesture": 14, "kotlin": 14, "player": 14, "bottom-sheet": 14, + "gesture-handler": 14, "bar": 13, "bootstrap": 13, "java": 13, @@ -146338,7 +148674,6 @@ "storage": 13, "sqlite": 13, "macos": 13, - "gesture-handler": 13, "fast": 13, "grid": 12, "push": 12, @@ -146346,7 +148681,6 @@ "module": 12, "location": 12, "i18n": 12, - "gesture": 12, "upload": 12, "download": 12, "webrtc": 12, @@ -146405,6 +148739,7 @@ "webview": 9, "immutable": 9, "blur": 9, + "oauth": 9, "testing": 9, "database": 9, "qrcode": 9, @@ -146436,7 +148771,6 @@ "markdown": 8, "sms": 8, "screenshot": 8, - "oauth": 8, "navigation-bar": 8, "config": 8, "cli": 8, @@ -146488,6 +148822,7 @@ "shadow": 7, "ui-lib": 7, "state-management": 7, + "lightweight": 7, "turbo-module": 7, "scandit": 7, "custom": 6, @@ -146540,7 +148875,6 @@ "async": 6, "graph": 6, "ui-component": 6, - "lightweight": 6, "vector": 5, "segmented-control": 5, "launchscreen": 5, @@ -146565,6 +148899,7 @@ "tab-bar": 5, "payment": 5, "accordion": 5, + "overlay": 5, "message": 5, "emoji-picker": 5, "header": 5, @@ -146636,6 +148971,7 @@ "image-picker": 4, "lottie": 4, "mapview": 4, + "slide": 4, "flexbox": 4, "responsive-layout": 4, "textfield": 4, @@ -146649,7 +148985,6 @@ "photos": 4, "flip": 4, "styled-components": 4, - "overlay": 4, "country-picker": 4, "parse": 4, "permissions": 4, @@ -146770,7 +149105,7 @@ "side-menu": 3, "mapkit": 3, "directions": 3, - "slide": 3, + "fade": 3, "transition": 3, "progress-view": 3, "modals": 3, @@ -147030,7 +149365,6 @@ "mixpanel-sdk": 2, "pageview": 2, "google-maps-api": 2, - "fade": 2, "orientation-changes": 2, "responsive-design": 2, "universal": 2, @@ -147374,6 +149708,7 @@ "neumorphism": 2, "inner-shadow": 2, "alerts": 2, + "performant": 2, "opencv": 2, "buttons": 2, "loading-indicator": 2, @@ -147512,6 +149847,7 @@ "highlighter": 2, "scaffold": 2, "ajax": 2, + "client": 2, "http-client": 2, "schema": 2, "in-view": 2, @@ -147555,6 +149891,7 @@ "angular": 2, "emitter": 2, "class-variance-authority": 2, + "pressable": 2, "orm": 2, "pg": 2, "mysql": 2, @@ -148789,7 +151126,6 @@ "headphones": 1, "audio-jack": 1, "mpandroidchart": 1, - "performant": 1, "openalpr": 1, "camera-component": 1, "multi-bar": 1, @@ -149714,7 +152050,6 @@ "vuex": 1, "pareto": 1, "xhr": 1, - "client": 1, "reanimated-picker": 1, "reanimated-select": 1, "reanimated-dropdown": 1, @@ -150316,13 +152651,13 @@ "rank": 1, "profile": 1, "dnd": 1, - "pressable": 1, "opacity": 1, "pressability": 1, "typed": 1, "hint": 1, "video-processing": 1, "video-trim": 1, + "touchable": 1, "pressables": 1, "singlestore": 1, "close": 1, @@ -150810,7 +153145,10 @@ "lottie-android": 1, "lottie-ios": 1, "lottie-react-native": 1, - "framer": 1 + "framer": 1, + "atproto": 1, + "expo-ios-visual-blur": 1, + "expoiosvisualblur": 1 }, "topicsList": [ "12-columns", @@ -151103,6 +153441,7 @@ "atlas", "atomic", "atomic-css", + "atproto", "attribution", "attributiondetails", "audience-network", @@ -152063,6 +154402,7 @@ "expo-in-app-updates", "expo-insights", "expo-intent-launcher", + "expo-ios-visual-blur", "expo-irano", "expo-json-utils", "expo-key-event", @@ -152158,6 +154498,7 @@ "expoimagecroptool", "expoinappupdates", "expoinsights", + "expoiosvisualblur", "expokeyevent", "expolibvlcplayer", "expoliquidglass", @@ -154934,6 +157275,7 @@ "touch-gestures", "touch-id", "touch-interaction", + "touchable", "touchid", "tour", "tourguide", From c2569eacb1aac14f80bebdcff95819862c0c838b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20M=C3=BCller?= Date: Mon, 20 Oct 2025 19:03:43 +0200 Subject: [PATCH 3/6] add first Party config plugins to library list --- react-native-libraries.json | 555 ++++++++++++++++++++++++------------ 1 file changed, 370 insertions(+), 185 deletions(-) diff --git a/react-native-libraries.json b/react-native-libraries.json index 28e14ce89..037c10721 100644 --- a/react-native-libraries.json +++ b/react-native-libraries.json @@ -263,7 +263,8 @@ "githubUrl": "https://github.com/Instabug/instabug-reactnative", "ios": true, "android": true, - "web": true + "web": true, + "configPlugin": true }, { "githubUrl": "https://github.com/Purii/react-native-tableview-simple", @@ -326,7 +327,8 @@ { "githubUrl": "https://github.com/vonovak/react-native-add-calendar-event", "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/prscX/react-native-bottom-action-sheet", @@ -435,7 +437,8 @@ "githubUrl": "https://github.com/wonday/react-native-pdf", "ios": true, "android": true, - "windows": true + "windows": true, + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/react-native-pdf" }, { "githubUrl": "https://github.com/toystars/react-native-multiple-select", @@ -571,7 +574,8 @@ "https://github.com/react-native-maps/react-native-maps/tree/master/example", "https://snack.expo.dev/H1zOFxnN-" ], - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/bramus/react-native-maps-directions", @@ -743,7 +747,8 @@ "fireos": true, "visionos": true, "tvos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/react-native-share/react-native-share", @@ -753,7 +758,8 @@ ], "ios": true, "android": true, - "fireos": true + "fireos": true, + "configPlugin": true }, { "githubUrl": "https://github.com/aakashns/react-native-dialogs", @@ -778,7 +784,8 @@ "ios": true, "android": true, "newArchitecture": true, - "newArchitectureNote": "The old architecture is not supported since version 12.x" + "newArchitectureNote": "The old architecture is not supported since version 12.x", + "configPlugin": true }, { "githubUrl": "https://github.com/chirag04/react-native-mail", @@ -1514,13 +1521,15 @@ { "githubUrl": "https://github.com/callstack/react-native-fbads", "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/BranchMetrics/react-native-branch-deep-linking-attribution", "ios": true, "android": true, - "npmPkg": "react-native-branch" + "npmPkg": "react-native-branch", + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/react-native-branch" }, { "githubUrl": "https://github.com/xxsnakerxx/react-native-social-auth", @@ -1567,7 +1576,8 @@ "githubUrl": "https://github.com/yonahforst/react-native-permissions", "ios": true, "android": true, - "windows": true + "windows": true, + "configPlugin": true }, { "githubUrl": "https://github.com/gre/react-native-view-shot", @@ -1635,7 +1645,8 @@ ], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/lrettig/react-native-stripe", @@ -2042,7 +2053,8 @@ "githubUrl": "https://github.com/Polidea/react-native-ble-plx", "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/mfrachet/rn-placeholder", @@ -2080,7 +2092,8 @@ ], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/analytics", @@ -2096,14 +2109,16 @@ "ios": true, "tvos": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/app-distribution", "npmPkg": "@react-native-firebase/app-distribution", "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/app", @@ -2111,7 +2126,8 @@ "ios": true, "tvos": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/auth", @@ -2119,7 +2135,8 @@ "ios": true, "tvos": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/crashlytics", @@ -2127,7 +2144,8 @@ "ios": true, "tvos": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/database", @@ -2167,7 +2185,8 @@ "ios": true, "tvos": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/ml", @@ -2183,7 +2202,8 @@ "ios": true, "tvos": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/remote-config", @@ -2274,7 +2294,8 @@ "alternatives": ["@batch.com/react-native-plugin"], "ios": true, "android": true, - "unmaintained": true + "unmaintained": true, + "configPlugin": true }, { "githubUrl": "https://github.com/SoftZen/react-native-bouncy-drawer", @@ -2442,7 +2463,8 @@ "https://raw.githubusercontent.com/JimmyDaddy/react-native-image-marker/master/assets/alphicononly.png", "https://raw.githubusercontent.com/JimmyDaddy/react-native-image-marker/master/assets/alphabgonly.png", "https://raw.githubusercontent.com/JimmyDaddy/react-native-image-marker/master/assets/textswihoutbg.png" - ] + ], + "configPlugin": true }, { "githubUrl": "https://github.com/CompanyCam/react-native-walkthrough-tooltip", @@ -2616,7 +2638,8 @@ "ios": true, "tvos": true, "expoGo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-application", @@ -2635,7 +2658,8 @@ "web": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-av", @@ -2651,14 +2675,16 @@ "tvos": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-background-fetch", "examples": ["https://docs.expo.dev/versions/latest/sdk/background-fetch/#usage"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-battery", @@ -2688,7 +2714,8 @@ "android": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-calendar", @@ -2696,7 +2723,8 @@ "ios": true, "android": true, "expoGo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-camera", @@ -2709,7 +2737,8 @@ "web": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-cellular", @@ -2717,7 +2746,8 @@ "android": true, "web": true, "expoGo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-constants", @@ -2734,7 +2764,8 @@ "ios": true, "android": true, "expoGo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-crypto", @@ -2765,7 +2796,8 @@ "web": true, "expoGo": true, "newArchitecture": true, - "fireos": true + "fireos": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-file-system", @@ -2775,7 +2807,8 @@ "tvos": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-font", @@ -2786,7 +2819,8 @@ "tvos": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-gl", @@ -2824,7 +2858,8 @@ "web": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-intent-launcher", @@ -2861,7 +2896,8 @@ "web": true, "expoGo": true, "newArchitecture": true, - "fireos": true + "fireos": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-localization", @@ -2871,7 +2907,8 @@ "tvos": true, "expoGo": true, "newArchitecture": true, - "fireos": true + "fireos": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-location", @@ -2881,7 +2918,8 @@ "web": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-mail-composer", @@ -2889,7 +2927,8 @@ "android": true, "web": true, "expoGo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-media-library", @@ -2899,7 +2938,8 @@ "tvos": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-network", @@ -2916,7 +2956,8 @@ "ios": true, "android": true, "expoGo": true, - "fireos": true + "fireos": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo-pixi", @@ -2949,7 +2990,8 @@ "tvos": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-sensors", @@ -2966,7 +3008,8 @@ "web": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-sms", @@ -2995,7 +3038,8 @@ "android": true, "tvos": true, "expoGo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-store-review", @@ -3012,7 +3056,8 @@ "ios": true, "android": true, "tvos": true, - "expoGo": true + "expoGo": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo-three", @@ -3039,7 +3084,8 @@ "web": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/jest-expo", @@ -3285,7 +3331,8 @@ "examples": ["https://github.com/transistorsoft/rn-background-geolocation-demo"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/nidorx/react-native-ui-blueprint", @@ -3353,7 +3400,8 @@ "githubUrl": "https://github.com/react-native-voice/voice", "ios": true, "android": true, - "npmPkg": "@react-native-voice/voice" + "npmPkg": "@react-native-voice/voice", + "configPlugin": true }, { "githubUrl": "https://github.com/tienph6m/react-native-animated-spinkit", @@ -3420,7 +3468,8 @@ "web": true, "windows": true, "fireos": true, - "macos": true + "macos": true, + "configPlugin": true }, { "githubUrl": "https://github.com/react-native-datetimepicker/datetimepicker", @@ -3438,7 +3487,8 @@ "expoGo": true, "windows": true, "visionos": true, - "fireos": true + "fireos": true, + "configPlugin": true }, { "githubUrl": "https://github.com/microsoft/react-native-dualscreen/tree/master/dualscreeninfo", @@ -3468,7 +3518,8 @@ "android": true, "tvos": true, "expoGo": true, - "fireos": true + "fireos": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-updates", @@ -3476,7 +3527,8 @@ "android": true, "tvos": true, "expoGo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/react-native-appearance", @@ -3510,7 +3562,8 @@ "web": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-sharing", @@ -3713,7 +3766,8 @@ { "githubUrl": "https://github.com/blackuy/react-native-twilio-video-webrtc", "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/react-native-webrtc/react-native-callkeep", @@ -3723,12 +3777,14 @@ "images": [ "https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/master/docs/pictures/call-kit.png", "https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/master/docs/pictures/connection-service.jpg" - ] + ], + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/react-native-callkeep" }, { "githubUrl": "https://github.com/react-native-webrtc/react-native-webrtc", "ios": true, - "android": true + "android": true, + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/react-native-webrtc" }, { "githubUrl": "https://github.com/react-native-webrtc/react-native-incall-manager", @@ -3746,7 +3802,8 @@ "https://raw.githubusercontent.com/zoontek/react-native-bootsplash/master/docs/demo.gif" ], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/jk-gan/redux-flipper", @@ -3929,7 +3986,8 @@ ], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/mientjan/react-native-markdown-renderer", @@ -4044,7 +4102,8 @@ "ios": true, "android": true, "npmPkg": "@react-native-google-signin/google-signin", - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/khalisafkari/react-native-kvideo", @@ -4515,7 +4574,8 @@ { "githubUrl": "https://github.com/jordanbyron/react-native-quick-actions", "ios": true, - "android": true + "android": true, + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/react-native-quick-actions" }, { "githubUrl": "https://github.com/jemise111/react-native-swipe-list-view", @@ -4573,7 +4633,8 @@ "githubUrl": "https://github.com/tschoffelen/react-native-map-link", "ios": true, "android": true, - "expoGo": true + "expoGo": true, + "configPlugin": true }, { "githubUrl": "https://github.com/n4kz/react-native-material-dropdown", @@ -4815,7 +4876,8 @@ "ios": true, "android": true, "expoGo": true, - "fireos": true + "fireos": true, + "configPlugin": true }, { "githubUrl": "https://github.com/solinor/react-native-bluetooth-status", @@ -4831,7 +4893,8 @@ { "githubUrl": "https://github.com/StasDoskalenko/react-native-google-fit", "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/marcshilling/react-native-idle-timer", @@ -4912,7 +4975,8 @@ "android": true, "web": true, "examples": ["https://github.com/stashenergy/react-native-msal/tree/master/example"], - "unmaintained": true + "unmaintained": true, + "configPlugin": true }, { "githubUrl": "https://github.com/netguru/sticky-parallax-header", @@ -5232,7 +5296,8 @@ "examples": ["https://github.com/auth0-samples/auth0-react-native-sample/tree/master/00-Login"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/avishayil/react-native-restart", @@ -5327,7 +5392,8 @@ ], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/Gil2015/react-native-table-component", @@ -5370,7 +5436,8 @@ "ios": true, "android": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/nandorojo/react-navigation-heavy-screen", @@ -5503,7 +5570,8 @@ "https://raw.githubusercontent.com/rnmapbox/maps/main/assets/maps-examples-data-driven-symbols-960-2e2061a6b8127ef305c1b6c159f8dc65.webp" ], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/venits/react-native-map-clustering", @@ -5516,7 +5584,8 @@ "githubUrl": "https://github.com/revtel/react-native-nfc-manager", "examples": ["https://github.com/revtel/react-native-nfc-rewriter"], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/mtford90/react-native-watch-connectivity", @@ -5711,7 +5780,8 @@ { "githubUrl": "https://github.com/Gustash/react-native-siri-shortcut", "examples": ["https://github.com/Gustash/react-native-siri-shortcut/tree/master/example"], - "ios": true + "ios": true, + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/react-native-siri-shortcut" }, { "githubUrl": "https://github.com/Gustash/react-native-image-keyboard", @@ -6132,7 +6202,8 @@ "githubUrl": "https://github.com/hyochan/react-native-nitro-sound", "examples": ["https://github.com/hyochan/react-native-nitro-sound/tree/main/example"], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/enesozturk/rn-swipeable-panel", @@ -6291,7 +6362,8 @@ "ios": true, "android": true, "expoGo": true, - "dev": true + "dev": true, + "configPlugin": true }, { "githubUrl": "https://github.com/dstaley/react-native-bootstrap-icons", @@ -6524,7 +6596,8 @@ "android": true, "fireos": true, "newArchitecture": true, - "newArchitectureNote": "Currently supported through the compatibility layer for legacy view components." + "newArchitectureNote": "Currently supported through the compatibility layer for legacy view components.", + "configPlugin": true }, { "githubUrl": "https://github.com/dabakovich/react-native-controlled-mentions", @@ -6685,7 +6758,8 @@ "githubUrl": "https://github.com/thebergamo/react-native-fbsdk-next", "android": true, "ios": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/nandorojo/expo-next-react-navigation", @@ -6870,7 +6944,8 @@ "android": true, "expoGo": true, "windows": true, - "fireos": true + "fireos": true, + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/react-native-blob-util" }, { "githubUrl": "https://github.com/guhungry/react-native-photo-manipulator", @@ -6893,7 +6968,8 @@ "examples": ["https://github.com/xmartlabs/react-native-line/tree/main/example"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/bk52/react-native-weather-chart", @@ -6916,7 +6992,8 @@ "ios": true, "android": true, "expoGo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/swaplet/react-native-swipe-cards-deck", @@ -7211,7 +7288,8 @@ "https://raw.githubusercontent.com/viromedia/viro/master/code-samples/js/ARPosterDemo/viro_black_panther_marker_demo.gif" ], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/IjzerenHein/react-native-bundle-visualizer", @@ -7404,7 +7482,8 @@ "https://raw.githubusercontent.com/Giphy/giphy-react-native-sdk/main/docs/assets/example_app.gif" ], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/SrBrahma/react-native-shadow-2", @@ -7479,7 +7558,8 @@ "githubUrl": "https://github.com/DataDog/dd-sdk-reactnative/tree/develop/packages/core", "npmPkg": "@datadog/mobile-react-native", "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/SrBrahma/pagescrollview", @@ -7549,7 +7629,8 @@ "https://github.com/numandev1/react-native-compressor/tree/main/exampleExpo" ], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/garganurag893/react-native-phone-number-input", @@ -7815,7 +7896,8 @@ "githubUrl": "https://github.com/flexible-agency/react-native-email-link", "ios": true, "android": true, - "expoGo": true + "expoGo": true, + "configPlugin": true }, { "githubUrl": "https://github.com/hoaphantn7604/react-native-element-dropdown", @@ -7908,7 +7990,8 @@ "githubUrl": "https://github.com/zoontek/react-native-edge-to-edge", "examples": ["https://github.com/zoontek/react-native-edge-to-edge/tree/main/example"], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/henrhie/react-native-sha", @@ -8031,7 +8114,8 @@ }, { "githubUrl": "https://github.com/agencyenterprise/react-native-health", - "ios": true + "ios": true, + "configPlugin": true }, { "githubUrl": "https://github.com/nomi9995/react-native-interactable-reanimated", @@ -8085,7 +8169,8 @@ "npmPkg": "@beyondidentity/bi-sdk-react-native", "examples": ["https://github.com/gobeyondidentity/bi-sdk-react-native/tree/main/example"], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/xulihang/vision-camera-dynamsoft-barcode-reader", @@ -8404,7 +8489,8 @@ "https://github.com/ammarahm-ed/react-native-admob-native-ads/tree/master/example" ], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/margelo/react-native-graph", @@ -8559,7 +8645,8 @@ }, { "githubUrl": "https://github.com/bndkt/react-native-app-clip", - "expoGo": true + "expoGo": true, + "configPlugin": true }, { "githubUrl": "https://github.com/ivanmoskalev/react-native-compressed-jsbundle", @@ -8754,7 +8841,8 @@ { "githubUrl": "https://github.com/barthap/expo-music-picker", "examples": ["https://github.com/barthap/expo-music-picker/tree/main/example"], - "expoGo": true + "expoGo": true, + "configPlugin": true }, { "githubUrl": "https://github.com/OvalMoney/react-native-fitness", @@ -8777,7 +8865,8 @@ "https://user-images.githubusercontent.com/26162804/160306955-af9c5dd6-5cdf-4e2c-8770-c734a594985d.gif" ], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/thakurballary/react-native-btr", @@ -8846,7 +8935,8 @@ "dev": true, "fireos": true, "newArchitecture": false, - "newArchitectureNote": "Consider using Maestro instead to migrate to the New Architecture today." + "newArchitectureNote": "Consider using Maestro instead to migrate to the New Architecture today.", + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/detox" }, { "githubUrl": "https://github.com/dev-family/react-native-wallet-manager", @@ -8916,7 +9006,8 @@ }, { "githubUrl": "https://github.com/XHMM/react-native-cloud-store", - "ios": true + "ios": true, + "configPlugin": true }, { "githubUrl": "https://github.com/mateoguzmana/react-native-clocks", @@ -8976,7 +9067,8 @@ "tvos": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/omdxp/react-native-help-create", @@ -9311,7 +9403,8 @@ "tvos": true, "expoGo": true, "fireos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/ArunGovil/react-native-flatboard/tree/main/release", @@ -9392,7 +9485,8 @@ "npmPkg": "@kingstinct/react-native-healthkit", "examples": ["https://github.com/kingstinct/react-native-healthkit/tree/master/apps/example"], "ios": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/Kingstinct/react-native-hotkeys", @@ -9422,7 +9516,8 @@ "examples": ["https://github.com/serenity-kit/react-native-libsodium/tree/main/example"], "ios": true, "android": true, - "web": true + "web": true, + "configPlugin": true }, { "githubUrl": "https://github.com/Karthik-B-06/react-native-segmented-control", @@ -9547,12 +9642,14 @@ "githubUrl": "https://github.com/sparkfabrik/sparkfabrik-react-native-idfa-aaid", "npmPkg": "@sparkfabrik/react-native-idfa-aaid", "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/matinzd/react-native-health-connect", "examples": ["https://github.com/matinzd/react-native-health-connect/tree/main/example"], - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/Malaa-tech/react-native-simple-line-chart", @@ -9839,7 +9936,8 @@ "npmPkg": "@vonovak/react-native-theme-control", "examples": ["https://github.com/vonovak/react-native-theme-control/tree/main/example"], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/movio/react-native-rsa-signer", @@ -9880,7 +9978,8 @@ "githubUrl": "https://github.com/numandev1/react-native-keys", "examples": ["https://github.com/numandev1/react-native-keys/tree/master/example"], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/Sharcoux/slider", @@ -9922,7 +10021,8 @@ "githubUrl": "https://github.com/jakex7/react-native-localization-settings", "examples": ["https://github.com/jakex7/react-native-localization-settings/tree/main/example"], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/rnw-community/rnw-community/tree/master/packages/react-native-payments", @@ -10132,7 +10232,8 @@ "ios": true, "android": true, "newArchitecture": true, - "newArchitectureNote": "Supported from v10 release using the interop layer." + "newArchitectureNote": "Supported from v10 release using the interop layer.", + "configPlugin": true }, { "githubUrl": "https://github.com/3DJakob/react-tinder-card", @@ -10353,7 +10454,8 @@ "githubUrl": "https://github.com/mrousavy/react-native-fast-tflite", "examples": ["https://github.com/mrousavy/react-native-fast-tflite/tree/main/example"], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/margelo/react-native-worklets-core", @@ -10410,7 +10512,8 @@ "npmPkg": "@appandflow/expo-camera-characteristics", "examples": ["https://github.com/AppAndFlow/expo-camera-characteristics/tree/main/example"], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/PedroBern/react-native-collapsible-tab-view", @@ -10465,7 +10568,8 @@ "githubUrl": "https://github.com/azesmway/react-native-unity", "npmPkg": "@azesmway/react-native-unity", "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/nandorojo/zeego/tree/master/packages/zeego", @@ -10578,7 +10682,8 @@ "githubUrl": "https://github.com/outsung/expo-dynamic-app-icon", "examples": ["https://github.com/outsung/expo-dynamic-app-icon/tree/main/example"], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/hirbod/expo-video-metadata", @@ -10744,7 +10849,8 @@ "ios": true, "android": true, "web": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/Malaa-tech/expo-squircle-view", @@ -10793,7 +10899,8 @@ "ios": true, "android": true, "dev": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/ShivamRawat0l/react-native-loader-collection", @@ -11186,7 +11293,8 @@ "ios": true, "android": true, "newArchitecture": true, - "newArchitectureNote": "Use v1.0.0 or higher for new architecture support" + "newArchitectureNote": "Use v1.0.0 or higher for new architecture support", + "configPlugin": true }, { "githubUrl": "https://github.com/vokhuyetOz/react-native-messy", @@ -11253,7 +11361,8 @@ "https://github.com/gladiuscode/react-native-orientation-director/tree/main/example" ], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/breeffy/react-native-monorepo/tree/main/packages/pickers", @@ -11342,7 +11451,8 @@ "android": true, "tvos": true, "expoGo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-insights", @@ -11364,7 +11474,8 @@ "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-navigation-bar", "android": true, "expoGo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-symbols", @@ -11497,7 +11608,8 @@ "githubUrl": "https://github.com/BatchLabs/Batch-React-Native-Plugin", "npmPkg": "@batch.com/react-native-plugin", "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/@expo/fingerprint", @@ -11663,14 +11775,16 @@ "examples": ["https://github.com/EvanBacon/expo-quick-actions/tree/main/example"], "android": true, "ios": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/obytes/app-icon-badge", "examples": ["https://github.com/obytes/app-icon-badge/tree/master/demo"], "android": true, "ios": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/achorein/expo-share-intent", @@ -11681,7 +11795,8 @@ ], "android": true, "ios": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/watanabeyu/react-native-store-version", @@ -11778,7 +11893,8 @@ "examples": ["https://github.com/wwdrew/expo-spotify-sdk/tree/main/example"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/wwdrew/expo-android-shared-preferences", @@ -11792,7 +11908,8 @@ "npmPkg": "@wwdrew/expo-android-account-manager", "examples": ["https://github.com/wwdrew/expo-android-account-manager/tree/main/example"], "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/ajakka/react-native-here-explore", @@ -11922,7 +12039,8 @@ ], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/rnheroes/react-native-toastable", @@ -12134,7 +12252,8 @@ "https://images.ctfassets.net/xny2w179f4ki/7kCxx0mYf5S5p1oNqqGSo2/f5126ee7c940c243a3cb90424da4b646/customers-omni-product-1.webp?&q=90&w=2560" ], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/f0wu5u/calendar-kit", @@ -12156,7 +12275,8 @@ "examples": ["https://github.com/huextrat/react-native-rate-app/tree/main/example"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/mehuljetani/react-native-typing-animated-text", @@ -12206,7 +12326,8 @@ "examples": ["https://github.com/huextrat/react-native-screenshot-aware/tree/main/example"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/dominicstop/react-native-ios-visual-effect-view", @@ -12368,7 +12489,8 @@ "ios": true, "android": true, "web": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/dcavalcante/react-native-sprites", @@ -12395,7 +12517,8 @@ "ios": true, "android": true, "visionos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/AlirezaHadjar/react-native-fast-confetti", @@ -12567,7 +12690,8 @@ "android": true, "tvos": true, "expoGo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-build-properties", @@ -12577,14 +12701,16 @@ "tvos": true, "expoGo": true, "newArchitecture": true, - "fireos": true + "fireos": true, + "configPlugin": true }, { "githubUrl": "https://github.com/pchalupa/expo-alternate-app-icons", "examples": ["https://github.com/pchalupa/expo-alternate-app-icons/tree/main/example"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/aravind3566/react-native-get-app-list", @@ -12634,7 +12760,8 @@ "ios": true, "android": true, "expoGo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/pnthach95/react-native-root-view-background", @@ -12652,7 +12779,8 @@ "images": [ "https://raw.githubusercontent.com/EdgarJMesquita/expo-pip/refs/heads/main/docs/assets/demo.gif" ], - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/tamagui/tamagui/tree/master/code/ui/tamagui", @@ -12925,7 +13053,8 @@ "examples": ["https://github.com/jobpaardekooper/react-native-localize-date/tree/main/example"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/JUHUU-Labs/sdk-ts", @@ -13234,14 +13363,16 @@ { "githubUrl": "https://github.com/MaxAst/expo-share-extension", "examples": ["https://github.com/MaxAst/expo-share-extension/tree/main/example"], - "ios": true + "ios": true, + "configPlugin": true }, { "githubUrl": "https://github.com/EvanBacon/expo-apple-colors", "npmPkg": "@bacons/apple-colors", "ios": true, "android": true, - "web": true + "web": true, + "configPlugin": true }, { "githubUrl": "https://github.com/azimgd/shadowlist", @@ -13358,7 +13489,8 @@ ], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/saulamsal/react-native-sheet-transitions", @@ -13520,7 +13652,8 @@ "android": true, "web": true, "tvos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/samitha9125/react-native-timezone", @@ -13584,7 +13717,8 @@ "githubUrl": "https://github.com/didomi/react-native", "npmPkg": "@didomi/react-native", "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/liveakshay/expo-spellchecker", @@ -13701,7 +13835,8 @@ "ios": true, "android": true, "expo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/f-23/react-native-passkey", @@ -13733,7 +13868,8 @@ "web": true, "tvos": true, "expoGo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/gronxb/hot-updater/tree/main/packages/react-native", @@ -13741,7 +13877,8 @@ "images": ["https://raw.githubusercontent.com/gronxb/hot-updater/refs/heads/main/demo.gif"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/yunusyavuz16/react-native-trendy", @@ -13759,7 +13896,8 @@ "githubUrl": "https://github.com/matinzd/expo-health-connect", "examples": ["https://github.com/matinzd/expo-health-connect/tree/main/example"], "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/suhaotian/xior", @@ -13875,7 +14013,8 @@ { "githubUrl": "https://github.com/Lg0gs/react-native-tiktok", "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/otago-dev/otago", @@ -13905,7 +14044,8 @@ "examples": ["https://github.com/gitn00b1337/expo-widgets/tree/main/example"], "ios": true, "android": true, - "web": true + "web": true, + "configPlugin": true }, { "githubUrl": "https://github.com/statelyai/xstate/tree/main/packages/core", @@ -14015,14 +14155,16 @@ "android": true, "tvos": true, "web": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-maps", "examples": ["https://docs.expo.dev/versions/latest/sdk/maps/#usage"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/AakashThakur23102000/useRealmStorage-dexterverse", @@ -14216,7 +14358,8 @@ ], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/saadqbal/react-native-notification-sounds", @@ -14245,7 +14388,8 @@ ], "ios": true, "android": true, - "tvos": true + "tvos": true, + "configPlugin": true }, { "githubUrl": "https://github.com/callstack/react-native-brownfield", @@ -14306,14 +14450,16 @@ "examples": ["https://github.com/dcangulo/react-native-render-lynx/tree/main/example"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/JuanSeBestia/react-native-wifi-reborn", "examples": ["https://github.com/JuanSeBestia/react-native-wifi-reborn/tree/master/example"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/HelpkitHQ/helpkit-help-center-react-native", @@ -14336,7 +14482,8 @@ "examples": ["https://github.com/pioner92/react-native-auto-skeleton/tree/main/example"], "android": true, "ios": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/IvanIhnatsiuk/react-native-advanced-input-mask/tree/main/package", @@ -14366,7 +14513,8 @@ "npmPkg": "@corasan/image-compressor", "examples": ["https://github.com/corasan/image-compressor/tree/main/example"], "android": true, - "ios": true + "ios": true, + "configPlugin": true }, { "githubUrl": "https://github.com/ronickg/react-native-nitro-bip39/tree/main/packages/react-native-nitro-bip39", @@ -14420,14 +14568,16 @@ "npmPkg": "@config-plugins/react-native-blob-util", "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/expo/config-plugins/tree/main/packages/react-native-pdf", "npmPkg": "@config-plugins/react-native-pdf", "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/brix/crypto-js", @@ -14475,7 +14625,8 @@ "examples": ["https://github.com/pioner92/rn-fade-wrapper/tree/main/example"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/tschoffelen/react-native-check-version", @@ -14701,7 +14852,8 @@ "ios": true, "android": true, "tvos": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/software-mansion-labs/react-native-webgpu-worklets", @@ -14728,7 +14880,8 @@ ], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/stallion-tech/react-native-stallion", @@ -14740,7 +14893,8 @@ "githubUrl": "https://github.com/razorRun/react-native-vlc-media-player", "examples": ["https://github.com/razorRun/react-native-vlc-media-player-test"], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/urbanairship/react-native-airship", @@ -14754,7 +14908,8 @@ "npmPkg": "@prisma/react-native", "examples": ["https://github.com/prisma/react-native-prisma/tree/main/example"], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/s77rt/react-native-date-picker", @@ -14877,7 +15032,8 @@ { "githubUrl": "https://github.com/alanjhughes/expo-shazamkit", "examples": ["https://github.com/alanjhughes/expo-shazamkit/tree/main/example"], - "ios": true + "ios": true, + "configPlugin": true }, { "githubUrl": "https://github.com/deepktp/react-native-vikalp-ratings", @@ -15466,7 +15622,8 @@ ], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/JairajJangle/fast-is-equal", @@ -15530,7 +15687,8 @@ "examples": ["https://github.com/hyochan/expo-iap/tree/main/example"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/developit/mitt", @@ -15664,7 +15822,8 @@ "ios": true, "android": true, "expoGo": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/MortalKastor/expo-resolve-url", @@ -15702,7 +15861,8 @@ "https://github.com/software-mansion/react-native-whip-whep/tree/main/examples/react-native/WhipWhepDemo" ], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/software-mansion/react-native-audio-api/tree/main/packages/react-native-audio-api", @@ -15710,7 +15870,8 @@ "https://github.com/software-mansion/react-native-audio-api/tree/main/apps/fabric-example" ], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/teamairship/react-native-public-ip", @@ -15803,7 +15964,8 @@ ], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/sbaiahmed1/react-native-blur", @@ -15967,7 +16129,8 @@ "examples": ["https://github.com/superwall/expo-superwall/tree/main/example"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/SolankiYogesh/rn-turbo-location-enabler", @@ -15989,7 +16152,8 @@ "examples": ["https://github.com/Iterable/iterable-expo-plugin/tree/main/example"], "ios": true, "android": true, - "newArchitecture": false + "newArchitecture": false, + "configPlugin": true }, { "githubUrl": "https://github.com/Soomgo-Mobile/react-native-code-push", @@ -15999,7 +16163,8 @@ ], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/moyasar/moyasar-react-native", @@ -16013,7 +16178,8 @@ "examples": ["https://github.com/cornejobarraza/expo-libvlc-player/tree/master/example"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/saseungmin/react-native-gesture-image-viewer", @@ -16130,7 +16296,8 @@ "ios": true, "android": true, "examples": ["https://github.com/ihwf/expo-native-alipay/tree/master/example"], - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/maheshmuttintidev/react-native-android-phone-number-hint", @@ -16147,7 +16314,8 @@ "https://github.com/linhvovan29546/react-native-full-screen-notification-incoming-call/tree/master/example", "https://github.com/linhvovan29546/react-native-full-screen-notification-incoming-call/tree/master/expo-example" ], - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/eds2002/react-native-screen-transitions/tree/main/packages/react-native-screen-transitions", @@ -16397,7 +16565,8 @@ "githubUrl": "https://github.com/OneSignal/onesignal-expo-plugin", "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/antosmamanktr/react-native-input-suggestion", @@ -16412,7 +16581,8 @@ ], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/braze-inc/braze-expo-plugin/tree/main/plugin", @@ -16420,7 +16590,8 @@ "examples": ["https://github.com/braze-inc/braze-expo-plugin/tree/main/example"], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/Glazzes/react-native-zoom-toolkit", @@ -16443,7 +16614,8 @@ ], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/unofficialmohit/rn-snappy-toast", @@ -16668,7 +16840,8 @@ "githubUrl": "https://github.com/riderodd/react-native-vosk", "examples": ["https://github.com/riderodd/react-native-vosk/tree/main/example"], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/stripe/stripe-identity-react-native", @@ -16701,7 +16874,8 @@ "https://github.com/fordat/expo-roomplan/tree/main/example" ], "ios": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/donni106/matomo-tracker-react-native", @@ -16849,7 +17023,8 @@ "githubUrl": "https://github.com/software-mansion-labs/expo-live-activity", "examples": ["https://github.com/software-mansion-labs/expo-live-activity/tree/main/example"], "ios": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/software-mansion-labs/react-native-rag", @@ -16862,7 +17037,8 @@ "githubUrl": "https://github.com/mybigday/llama.rn", "examples": ["https://github.com/mybigday/llama.rn/tree/main/example"], "ios": true, - "android": true + "android": true, + "configPlugin": true }, { "githubUrl": "https://github.com/iymra-org/rn-toptabs", @@ -16963,14 +17139,16 @@ ], "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/zoontek/react-native-navigation-bar", "npmPkg": "@zoontek/react-native-navigation-bar", "examples": ["https://github.com/zoontek/react-native-navigation-bar/tree/main/example"], "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/satya164/react-native-animated-observer", @@ -17027,7 +17205,8 @@ "githubUrl": "https://github.com/sbaiahmed1/react-native-google-auth", "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/omarsdev/react-native-contacts", @@ -17058,14 +17237,16 @@ "githubUrl": "https://github.com/huextrat/expo-core-spotlight", "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/Survicate/survicate-react-native-sdk", "npmPkg": "@survicate/react-native-survicate", "ios": true, "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/purrseus/react-native-xenon", @@ -17210,7 +17391,8 @@ ], "android": true, "ios": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/huytdps13400/react-native-sms-retriever-nitro-module", @@ -17219,7 +17401,8 @@ "https://github.com/huytdps13400/react-native-sms-retriever-nitro-module/tree/main/example" ], "android": true, - "newArchitecture": true + "newArchitecture": true, + "configPlugin": true }, { "githubUrl": "https://github.com/coolsoftwaretyler/cool-pdf", @@ -17270,7 +17453,8 @@ { "githubUrl": "https://github.com/itsRares/react-native-deepgram", "android": true, - "ios": true + "ios": true, + "configPlugin": true }, { "githubUrl": "https://github.com/ursnj/nayan-ui/tree/main/packages/react-native", @@ -17331,7 +17515,8 @@ "ios": true, "android": true, "newArchitecture": "new-arch-only", - "expoGo": true + "expoGo": true, + "configPlugin": true }, { "githubUrl": "https://github.com/MisterMunchkin/expo-video-thumbref", From 3043263c734d1a16e85e83bbd051a62d9b748ade Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20M=C3=BCller?= Date: Mon, 20 Oct 2025 21:35:46 +0200 Subject: [PATCH 4/6] update data to include config plugin 3rd party packages --- assets/data.json | 13839 +++++++++++++++++++++++---------------------- 1 file changed, 7018 insertions(+), 6821 deletions(-) diff --git a/assets/data.json b/assets/data.json index a140e0e4d..67b53fdb2 100644 --- a/assets/data.json +++ b/assets/data.json @@ -65,8 +65,8 @@ }, "npmPkg": "react-native-logs", "npm": { - "downloads": 252263, - "weekDownloads": 46937, + "downloads": 245879, + "weekDownloads": 49468, "size": 169609, "latestRelease": "5.5.0", "latestReleaseDate": "2025-09-07T07:05:37.951Z" @@ -76,7 +76,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.171, "topicSearchString": "log logs logger react-native expo error console colors debug file custom levels namespace debugging ios android logging" }, { @@ -141,8 +141,8 @@ "unmaintained": true, "npmPkg": "react-native-gl-image-filters", "npm": { - "downloads": 721, - "weekDownloads": 114, + "downloads": 722, + "weekDownloads": 111, "size": 96162, "latestRelease": "0.5.0", "latestReleaseDate": "2021-08-15T17:42:26.052Z" @@ -153,7 +153,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.365, + "popularity": -1.369, "topicSearchString": "react-native gl-react gl-react-native image-filters gl-react-expo gl-react-dom expo gl opengl react" }, { @@ -209,8 +209,8 @@ "configPlugin": false }, "npm": { - "downloads": 2068, - "weekDownloads": 495, + "downloads": 2021, + "weekDownloads": 549, "size": 1353429, "latestRelease": "2.2.2", "latestReleaseDate": "2025-05-20T06:35:59.074Z" @@ -221,7 +221,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.204, + "popularity": 0.231, "topicSearchString": "react-native unicons icons iconscout vector vector-icons" }, { @@ -287,8 +287,8 @@ "configPlugin": false }, "npm": { - "downloads": 5430, - "weekDownloads": 1193, + "downloads": 5244, + "weekDownloads": 1322, "size": 229897, "latestRelease": "3.4.0", "latestReleaseDate": "2025-09-08T11:49:40.645Z" @@ -297,7 +297,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.187, + "popularity": 0.214, "topicSearchString": "react-native image image-editor imageeditor photo photo-editor photoeditor photoeditorsdk photoeditor-sdk sdk ios android photo-editing image-editing image-manipulation" }, { @@ -361,8 +361,8 @@ "configPlugin": false }, "npm": { - "downloads": 2691, - "weekDownloads": 568, + "downloads": 2646, + "weekDownloads": 615, "size": 243217, "latestRelease": "3.4.0", "latestReleaseDate": "2025-09-08T11:49:42.691Z" @@ -372,7 +372,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.179, + "popularity": 0.198, "topicSearchString": "react-native video video-editor videoeditor videoeditorsdk videoeditor-sdk sdk ios android video-editing video-manipulation crop filter" }, { @@ -435,8 +435,8 @@ }, "npmPkg": "react-native-image-crop-picker", "npm": { - "downloads": 578665, - "weekDownloads": 113189, + "downloads": 560347, + "weekDownloads": 112863, "size": 2764375, "latestRelease": "0.51.0", "latestReleaseDate": "2025-08-08T15:21:19.746Z" @@ -449,7 +449,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.166, + "popularity": 0.171, "topicSearchString": "react native react-native image picker crop cropping multiple camera video ios android recording" }, { @@ -506,8 +506,8 @@ "unmaintained": true, "npmPkg": "react-native-resegmented-control", "npm": { - "downloads": 160, - "weekDownloads": 53, + "downloads": 158, + "weekDownloads": 56, "size": 35854, "latestRelease": "2.4.0", "latestReleaseDate": "2020-07-14T19:44:02.409Z" @@ -517,7 +517,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.214, + "popularity": -1.197, "topicSearchString": "react-native segmented control resegmented uisegmentedcontrol segmentedcontrolios segmented-control" }, { @@ -570,8 +570,8 @@ }, "npmPkg": "react-native-scales", "npm": { - "downloads": 82, - "weekDownloads": 54, + "downloads": 83, + "weekDownloads": 55, "size": 7115, "latestRelease": "1.0.2", "latestReleaseDate": "2025-02-26T07:58:05.056Z" @@ -581,7 +581,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.432, + "popularity": -0.421, "topicSearchString": "khtwah step react-native dimensions" }, { @@ -642,8 +642,8 @@ }, "npmPkg": "react-native-redux", "npm": { - "downloads": 321, - "weekDownloads": 33, + "downloads": 304, + "weekDownloads": 20, "size": 18557, "latestRelease": "1.0.12", "latestReleaseDate": "2023-02-16T10:33:58.211Z" @@ -653,7 +653,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.912, + "popularity": -0.944, "topicSearchString": "khtwah reactnative redux react-redux redux-persist react react-native react-hooks reactjs redux-thunk redux-store redux-actions" }, { @@ -703,7 +703,7 @@ }, "unmaintained": true, "npm": { - "downloads": 57, + "downloads": 76, "weekDownloads": 0, "size": 51594, "latestRelease": "1.1.3", @@ -771,7 +771,7 @@ "npmPkg": "react-native-toastboard", "npm": { "downloads": 213, - "weekDownloads": 13, + "weekDownloads": 10, "size": 38621, "latestRelease": "2.0.4", "latestReleaseDate": "2025-01-02T15:49:14.715Z" @@ -781,7 +781,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.698, + "popularity": -0.71, "topicSearchString": "native react react-native toast toastboard toaster notifications" }, { @@ -835,8 +835,8 @@ "configPlugin": false }, "npm": { - "downloads": 83441, - "weekDownloads": 20299, + "downloads": 78833, + "weekDownloads": 18729, "size": 166882, "latestRelease": "8.6.2", "latestReleaseDate": "2025-10-16T11:52:21.513Z" @@ -847,7 +847,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.207, + "popularity": 0.202, "topicSearchString": "" }, { @@ -904,8 +904,8 @@ "configPlugin": false }, "npm": { - "downloads": 104948, - "weekDownloads": 21227, + "downloads": 102817, + "weekDownloads": 23465, "size": 45804, "latestRelease": "8.6.2", "latestReleaseDate": "2025-10-16T11:52:23.324Z" @@ -917,7 +917,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.194, "topicSearchString": "" }, { @@ -976,8 +976,8 @@ "unmaintained": true, "npmPkg": "react-native-units", "npm": { - "downloads": 47, - "weekDownloads": 21, + "downloads": 45, + "weekDownloads": 18, "size": 3931, "latestRelease": "1.0.0", "latestReleaseDate": "2019-03-26T17:18:13.986Z" @@ -987,7 +987,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.118, + "popularity": -1.14, "topicSearchString": "react-native units pixels grid scale javascript ios css responsive" }, { @@ -1047,8 +1047,8 @@ "unmaintained": true, "npmPkg": "react-native-shake-event", "npm": { - "downloads": 67, - "weekDownloads": 6, + "downloads": 66, + "weekDownloads": 5, "latestRelease": "4.0.1", "latestReleaseDate": "2017-08-10T07:19:18.918Z" }, @@ -1057,7 +1057,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.67, + "popularity": -1.683, "topicSearchString": "android ios native react react-component react-native component shake shake-event shake-event-android shake-event-ios" }, { @@ -1082,7 +1082,7 @@ "forks": 1055, "issues": 364, "subscribers": 59, - "stars": 5664, + "stars": 5665, "dependencies": 0 }, "name": "react-native-splash-screen", @@ -1117,8 +1117,8 @@ "unmaintained": true, "npmPkg": "react-native-splash-screen", "npm": { - "downloads": 480678, - "weekDownloads": 91850, + "downloads": 468249, + "weekDownloads": 93473, "size": 40002, "latestRelease": "3.3.0", "latestReleaseDate": "2021-12-07T05:32:39.596Z" @@ -1132,7 +1132,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.588, + "popularity": -0.58, "topicSearchString": "react-native component splash-screen splashscreen splash launch-screen launchscreen android ios launchimage" }, { @@ -1194,8 +1194,8 @@ }, "npmPkg": "pinar", "npm": { - "downloads": 14213, - "weekDownloads": 2675, + "downloads": 13870, + "weekDownloads": 3386, "size": 76897, "latestRelease": "0.12.2", "latestReleaseDate": "2023-04-24T20:59:43.911Z" @@ -1206,7 +1206,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.208, "topicSearchString": "react react-component react-native reactnative ios android carousel carousel-component slider swiper scrollview typescript a11y" }, { @@ -1265,8 +1265,8 @@ "unmaintained": true, "npmPkg": "react-native-google-photos", "npm": { - "downloads": 77, - "weekDownloads": 3, + "downloads": 75, + "weekDownloads": 0, "size": 10211, "latestRelease": "3.0.5", "latestReleaseDate": "2019-11-15T17:03:58.769Z" @@ -1276,7 +1276,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.717, + "popularity": -1, "topicSearchString": "react-native video mp4upload google-photos downloader ios android blogger cloudvideo" }, { @@ -1332,8 +1332,8 @@ "unmaintained": true, "npmPkg": "react-native-reader", "npm": { - "downloads": 1032, - "weekDownloads": 20, + "downloads": 1029, + "weekDownloads": 21, "size": 19192, "latestRelease": "0.9.4", "latestReleaseDate": "2023-06-24T16:11:48.956Z" @@ -1400,8 +1400,8 @@ }, "npmPkg": "react-native-columns", "npm": { - "downloads": 23, - "weekDownloads": 6, + "downloads": 22, + "weekDownloads": 4, "size": 92673, "latestRelease": "1.0.6", "latestReleaseDate": "2018-11-30T03:18:07.921Z" @@ -1411,7 +1411,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.51, + "popularity": -1.59, "topicSearchString": "android column columns ios react-native component resize" }, { @@ -1466,8 +1466,8 @@ }, "npmPkg": "react-native-svg-transformer", "npm": { - "downloads": 2700816, - "weekDownloads": 518493, + "downloads": 2625426, + "weekDownloads": 533557, "size": 15412, "latestRelease": "1.5.1", "latestReleaseDate": "2025-05-02T17:07:28.039Z" @@ -1479,7 +1479,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.173, "topicSearchString": "react-native svg loader transformer" }, { @@ -1532,8 +1532,8 @@ "unmaintained": true, "npmPkg": "react-native-svg-asset-plugin", "npm": { - "downloads": 216101, - "weekDownloads": 51534, + "downloads": 206783, + "weekDownloads": 49511, "size": 19377, "latestRelease": "0.5.0", "latestReleaseDate": "2020-07-26T07:45:30.838Z" @@ -1544,7 +1544,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.547, + "popularity": -0.546, "topicSearchString": "react-native svg" }, { @@ -1606,7 +1606,7 @@ }, "npmPkg": "react-native-apple-ads-attribution", "npm": { - "downloads": 16, + "downloads": 17, "weekDownloads": 1, "size": 13910, "latestRelease": "1.0.2", @@ -1617,7 +1617,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.683, + "popularity": -1.7, "topicSearchString": "react-native react-component react-components react native ios component apple search ads attribution api iad attributiondetails" }, { @@ -1676,8 +1676,8 @@ "unmaintained": true, "npmPkg": "react-native-formawesome", "npm": { - "downloads": 587, - "weekDownloads": 5, + "downloads": 586, + "weekDownloads": 3, "size": 54240, "latestRelease": "1.0.1", "latestReleaseDate": "2019-06-13T14:02:07.321Z" @@ -1687,7 +1687,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.743, + "popularity": -1.746, "topicSearchString": "ui native react react-native validation class-validator validate.js form react-formawesome-core" }, { @@ -1748,8 +1748,8 @@ }, "npmPkg": "rn-secure-storage", "npm": { - "downloads": 11317, - "weekDownloads": 2286, + "downloads": 10894, + "weekDownloads": 2219, "size": 69030, "latestRelease": "3.0.1", "latestReleaseDate": "2024-01-29T13:14:41.158Z" @@ -1760,7 +1760,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.173, "topicSearchString": "react-native ios android keychain-service keystore-service device-security keystore keychain secure-preferences token react-token multiple-values multiple-keys" }, { @@ -1809,8 +1809,8 @@ "unmaintained": true, "npmPkg": "react-native-sideswipe", "npm": { - "downloads": 2367, - "weekDownloads": 456, + "downloads": 2263, + "weekDownloads": 442, "size": 200099, "latestRelease": "1.5.0", "latestReleaseDate": "2019-05-28T19:13:26.464Z" @@ -1822,7 +1822,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.584, "topicSearchString": "" }, { @@ -1872,7 +1872,7 @@ "unmaintained": true, "npmPkg": "react-native-navybits-date-time-picker", "npm": { - "downloads": 177, + "downloads": 176, "weekDownloads": 5, "size": 30605899, "latestRelease": "1.2.3", @@ -1942,8 +1942,8 @@ "unmaintained": true, "npmPkg": "react-native-image-cache-wrapper", "npm": { - "downloads": 398, - "weekDownloads": 126, + "downloads": 376, + "weekDownloads": 119, "size": 17966, "latestRelease": "1.0.7", "latestReleaseDate": "2020-03-31T15:20:41.398Z" @@ -1953,7 +1953,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.229, + "popularity": -1.23, "topicSearchString": "cache cached-image image-cache image imagebackground react-component react-native android ios" }, { @@ -2014,8 +2014,8 @@ "unmaintained": true, "npmPkg": "react-native-super-ellipse-mask", "npm": { - "downloads": 185, - "weekDownloads": 42, + "downloads": 183, + "weekDownloads": 41, "size": 43811, "latestRelease": "1.0.7", "latestReleaseDate": "2018-04-22T09:43:06.204Z" @@ -2025,7 +2025,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.305, + "popularity": -1.309, "topicSearchString": "react-native squircle smooth rounded superellipse curvature continuity mask view apple smooth-corners corners rounded-corners" }, { @@ -2077,8 +2077,8 @@ "unmaintained": true, "npmPkg": "react-native-file-selector", "npm": { - "downloads": 211, - "weekDownloads": 35, + "downloads": 204, + "weekDownloads": 28, "size": 413172, "latestRelease": "1.0.2", "latestReleaseDate": "2021-07-01T12:14:55.396Z" @@ -2089,7 +2089,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.357, + "popularity": -1.383, "topicSearchString": "react-native andriod ios" }, { @@ -2142,7 +2142,7 @@ "npmPkg": "react-native-material-shadows", "npm": { "downloads": 8, - "weekDownloads": 0, + "weekDownloads": 1, "size": 15135, "latestRelease": "0.0.2", "latestReleaseDate": "2018-02-11T08:30:23.168Z" @@ -2152,7 +2152,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -1.3, "topicSearchString": "react-native android ios" }, { @@ -2205,8 +2205,8 @@ }, "npmPkg": "react-native-about-libraries", "npm": { - "downloads": 832, - "weekDownloads": 126, + "downloads": 814, + "weekDownloads": 151, "size": 216599, "latestRelease": "0.0.6", "latestReleaseDate": "2018-06-29T10:48:39.013Z" @@ -2216,7 +2216,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.371, + "popularity": -1.342, "topicSearchString": "react-native android ios" }, { @@ -2268,8 +2268,8 @@ }, "npmPkg": "react-native-siri-wave-view", "npm": { - "downloads": 6147, - "weekDownloads": 1779, + "downloads": 6161, + "weekDownloads": 1897, "size": 4527536, "latestRelease": "0.0.9", "latestReleaseDate": "2018-06-29T06:21:04.636Z" @@ -2280,7 +2280,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.504, + "popularity": -0.488, "topicSearchString": "react-native android ios" }, { @@ -2332,8 +2332,8 @@ "unmaintained": true, "npmPkg": "react-native-lock-screen", "npm": { - "downloads": 176, - "weekDownloads": 12, + "downloads": 175, + "weekDownloads": 24, "size": 3765017, "latestRelease": "1.0.2", "latestReleaseDate": "2021-06-22T08:07:50.181Z" @@ -2343,7 +2343,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.441, + "popularity": -1.383, "topicSearchString": "react-native android ios" }, { @@ -2396,7 +2396,7 @@ "npmPkg": "react-native-styled-dialogs", "npm": { "downloads": 134, - "weekDownloads": 25, + "weekDownloads": 28, "size": 3845476, "latestRelease": "1.0.2", "latestReleaseDate": "2021-07-05T13:30:27.002Z" @@ -2406,7 +2406,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.339, + "popularity": -1.319, "topicSearchString": "react-native android ios" }, { @@ -2522,8 +2522,8 @@ "unmaintained": true, "npmPkg": "react-native-chip-view", "npm": { - "downloads": 2695, - "weekDownloads": 233, + "downloads": 2634, + "weekDownloads": 211, "size": 1756711, "latestRelease": "0.0.12", "latestReleaseDate": "2019-05-18T15:03:50.189Z" @@ -2533,7 +2533,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.676, + "popularity": -0.682, "topicSearchString": "react-native android ios" }, { @@ -2541,6 +2541,7 @@ "ios": true, "android": true, "web": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/Instabug/Instabug-React-Native", @@ -2593,8 +2594,8 @@ }, "npmPkg": "instabug-reactnative", "npm": { - "downloads": 67463, - "weekDownloads": 12551, + "downloads": 65668, + "weekDownloads": 13177, "size": 2951899, "latestRelease": "16.0.3", "latestReleaseDate": "2025-09-11T13:21:04.948Z" @@ -2604,7 +2605,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.171, "topicSearchString": "react-native instabug debugging errors exceptions logging reporting feedback bug-reporting bug-reporter sdk" }, { @@ -2671,8 +2672,8 @@ }, "npmPkg": "react-native-tableview-simple", "npm": { - "downloads": 10820, - "weekDownloads": 1463, + "downloads": 10584, + "weekDownloads": 1429, "size": 234587, "latestRelease": "4.4.1", "latestReleaseDate": "2024-06-10T16:25:13.373Z" @@ -2740,8 +2741,8 @@ }, "npmPkg": "react-native-localizable", "npm": { - "downloads": 24, - "weekDownloads": 8, + "downloads": 23, + "weekDownloads": 4, "size": 113603, "latestRelease": "1.0.1", "latestReleaseDate": "2018-02-16T00:33:30.706Z" @@ -2751,7 +2752,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.43, + "popularity": -1.59, "topicSearchString": "react-native react-component localizable ios android localization native javascript" }, { @@ -2807,8 +2808,8 @@ }, "npmPkg": "react-native-fbsdk", "npm": { - "downloads": 11416, - "weekDownloads": 2124, + "downloads": 10963, + "weekDownloads": 2111, "size": 634846, "latestRelease": "3.0.0", "latestReleaseDate": "2020-11-23T21:21:09.075Z" @@ -2823,7 +2824,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.586, "topicSearchString": "react react-native react-component ios android facebook core" }, { @@ -2875,8 +2876,8 @@ }, "npmPkg": "react-native-simple-toast", "npm": { - "downloads": 98436, - "weekDownloads": 18254, + "downloads": 97432, + "weekDownloads": 19202, "size": 53770, "latestRelease": "3.3.2", "latestReleaseDate": "2025-01-03T13:07:29.587Z" @@ -2887,7 +2888,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.168, "topicSearchString": "react-native ios android" }, { @@ -2946,8 +2947,8 @@ }, "npmPkg": "react-navigation-header-buttons", "npm": { - "downloads": 23551, - "weekDownloads": 2961, + "downloads": 23303, + "weekDownloads": 3395, "size": 303649, "latestRelease": "13.0.0", "latestReleaseDate": "2024-11-24T18:14:52.213Z" @@ -2959,7 +2960,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.107, + "popularity": 0.124, "topicSearchString": "react-native ios android react-navigation hacktoberfest" }, { @@ -3023,8 +3024,8 @@ "unmaintained": true, "npmPkg": "react-native-d3multiline-chart", "npm": { - "downloads": 427, - "weekDownloads": 33, + "downloads": 432, + "weekDownloads": 31, "size": 2113779, "latestRelease": "1.0.19", "latestReleaseDate": "2019-09-12T16:15:01.163Z" @@ -3034,7 +3035,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.434, + "popularity": -1.439, "topicSearchString": "animated multiline drawing line scatterpoint charts d3.js d3v4 android ios svg multiline-graph line-graph scatterpoint-graph d3js" }, { @@ -3096,8 +3097,8 @@ "unmaintained": true, "npmPkg": "react-native-bottom-toolbar", "npm": { - "downloads": 591, - "weekDownloads": 77, + "downloads": 582, + "weekDownloads": 87, "size": 10721, "latestRelease": "4.3.0", "latestReleaseDate": "2019-12-02T08:11:56.698Z" @@ -3107,7 +3108,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.389, + "popularity": -1.372, "topicSearchString": "react native ios toolbar bottom bar tabs react-native menubar menu tabbar android" }, { @@ -3161,8 +3162,8 @@ "unmaintained": true, "npmPkg": "react-navigation-props-mapper", "npm": { - "downloads": 9968, - "weekDownloads": 1945, + "downloads": 9701, + "weekDownloads": 2063, "size": 37367, "latestRelease": "3.1.0", "latestReleaseDate": "2022-02-17T18:06:27.540Z" @@ -3173,13 +3174,14 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.569, "topicSearchString": "react-native ios android" }, { "githubUrl": "https://github.com/vonovak/react-native-add-calendar-event", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/vonovak/react-native-add-calendar-event", @@ -3229,8 +3231,8 @@ }, "npmPkg": "react-native-add-calendar-event", "npm": { - "downloads": 77013, - "weekDownloads": 14412, + "downloads": 75142, + "weekDownloads": 15643, "size": 120131, "latestRelease": "5.0.0", "latestReleaseDate": "2024-01-01T16:42:27.071Z" @@ -3241,7 +3243,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.177, "topicSearchString": "react-native calendar event events android ios hacktoberfest" }, { @@ -3294,7 +3296,7 @@ "npmPkg": "react-native-bottom-action-sheet", "npm": { "downloads": 274, - "weekDownloads": 32, + "weekDownloads": 29, "size": 78722, "latestRelease": "2.0.2", "latestReleaseDate": "2021-06-29T11:25:23.245Z" @@ -3305,7 +3307,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, + "popularity": -1.409, "topicSearchString": "react-native android ios" }, { @@ -3335,10 +3337,10 @@ "updatedAt": "2025-07-17T16:09:37Z", "createdAt": "2016-10-19T05:56:53Z", "pushedAt": "2025-07-17T16:09:37Z", - "forks": 2141, + "forks": 2142, "issues": 265, "subscribers": 121, - "stars": 14041, + "stars": 14045, "dependencies": 3 }, "name": "react-native-paper", @@ -3371,8 +3373,8 @@ }, "npmPkg": "react-native-paper", "npm": { - "downloads": 1328688, - "weekDownloads": 249739, + "downloads": 1303283, + "weekDownloads": 254477, "size": 3763187, "latestRelease": "5.14.5", "latestReleaseDate": "2025-05-20T11:10:03.881Z" @@ -3385,7 +3387,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.166, "topicSearchString": "android ios react-native component-library ui-kit material-design bootstrap hacktoberfest" }, { @@ -3437,8 +3439,8 @@ "unmaintained": true, "npmPkg": "react-native-popover-menu", "npm": { - "downloads": 761, - "weekDownloads": 68, + "downloads": 751, + "weekDownloads": 67, "size": 86063, "latestRelease": "2.0.2", "latestReleaseDate": "2021-06-28T12:56:27.446Z" @@ -3506,8 +3508,8 @@ "unmaintained": true, "npmPkg": "react-native-face-pile", "npm": { - "downloads": 135, - "weekDownloads": 8, + "downloads": 136, + "weekDownloads": 11, "latestRelease": "1.9.0", "latestReleaseDate": "2018-01-18T04:29:19.267Z" }, @@ -3516,7 +3518,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.448, + "popularity": -1.431, "topicSearchString": "facepile face-pile react-native avatar-group avatar-list circle-avatar-list faces" }, { @@ -3570,7 +3572,7 @@ }, "npmPkg": "react-native-asyncstorage", "npm": { - "downloads": 7, + "downloads": 8, "weekDownloads": 3, "latestRelease": "1.0.0", "latestReleaseDate": "2017-08-27T15:33:07.306Z" @@ -3633,7 +3635,7 @@ "npmPkg": "react-native-shine-button", "npm": { "downloads": 48, - "weekDownloads": 3, + "weekDownloads": 2, "size": 3259769, "latestRelease": "2.0.0", "latestReleaseDate": "2020-02-21T11:20:22.684Z" @@ -3644,7 +3646,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.445, + "popularity": -1.464, "topicSearchString": "react-native android ios" }, { @@ -3696,8 +3698,8 @@ }, "npmPkg": "react-native-iconic", "npm": { - "downloads": 31, - "weekDownloads": 0, + "downloads": 32, + "weekDownloads": 2, "size": 116528, "latestRelease": "0.0.9", "latestReleaseDate": "2018-06-29T06:01:14.840Z" @@ -3708,7 +3710,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -1.443, "topicSearchString": "react-native android ios" }, { @@ -3758,8 +3760,8 @@ "unmaintained": true, "npmPkg": "react-native-download-button", "npm": { - "downloads": 44, - "weekDownloads": 12, + "downloads": 38, + "weekDownloads": 5, "size": 63658, "latestRelease": "1.0.0", "latestReleaseDate": "2019-10-02T13:05:28.563Z" @@ -3769,7 +3771,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.26, + "popularity": -1.375, "topicSearchString": "react-native" }, { @@ -3821,8 +3823,8 @@ "unmaintained": true, "npmPkg": "react-native-spruce", "npm": { - "downloads": 1131, - "weekDownloads": 85, + "downloads": 1134, + "weekDownloads": 118, "size": 14010875, "latestRelease": "0.0.6", "latestReleaseDate": "2018-05-21T09:28:22.758Z" @@ -3833,7 +3835,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.686, + "popularity": -0.661, "topicSearchString": "react-native android ios" }, { @@ -3897,8 +3899,8 @@ "unmaintained": true, "npmPkg": "react-reactive-form", "npm": { - "downloads": 9547, - "weekDownloads": 1202, + "downloads": 9992, + "weekDownloads": 1351, "size": 536377, "latestRelease": "2.0.1", "latestReleaseDate": "2022-12-06T20:46:28.841Z" @@ -3909,7 +3911,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.643, + "popularity": -0.635, "topicSearchString": "forms form reactive reactive-form form-generator form-builder android ios observer subscription react react-native form-controls" }, { @@ -3969,8 +3971,8 @@ }, "npmPkg": "react-native-typography", "npm": { - "downloads": 41303, - "weekDownloads": 8003, + "downloads": 39925, + "weekDownloads": 8246, "size": 103797, "latestRelease": "1.4.1", "latestReleaseDate": "2019-06-16T15:47:42.349Z" @@ -3982,7 +3984,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.176, "topicSearchString": "react-native react typography style styles typeface font typography-themes ios android" }, { @@ -4038,7 +4040,7 @@ "npmPkg": "react-native-buttonex", "npm": { "downloads": 291, - "weekDownloads": 1, + "weekDownloads": 0, "size": 440712, "latestRelease": "2.0.8", "latestReleaseDate": "2018-05-22T08:05:32.773Z" @@ -4048,7 +4050,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.747, + "popularity": -1, "topicSearchString": "button react-native ios android expo" }, { @@ -4102,8 +4104,8 @@ "unmaintained": true, "npmPkg": "react-native-mirror", "npm": { - "downloads": 142, - "weekDownloads": 5, + "downloads": 143, + "weekDownloads": 4, "latestRelease": "0.0.21", "latestReleaseDate": "2017-10-29T13:40:18.202Z" }, @@ -4112,7 +4114,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.72, + "popularity": -1.726, "topicSearchString": "react react-native mirror javascript" }, { @@ -4173,8 +4175,8 @@ "unmaintained": true, "npmPkg": "react-native-viewpager-carousel", "npm": { - "downloads": 740, - "weekDownloads": 106, + "downloads": 738, + "weekDownloads": 102, "size": 1132409, "latestRelease": "0.3.2", "latestReleaseDate": "2019-01-27T22:19:55.062Z" @@ -4184,7 +4186,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.378, + "popularity": -1.382, "topicSearchString": "react react-native viewpager carousel rondell android ios tabbar pager-component swipe swipeview" }, { @@ -4241,8 +4243,8 @@ "unmaintained": true, "npmPkg": "react-native-event-listeners", "npm": { - "downloads": 88637, - "weekDownloads": 17165, + "downloads": 86260, + "weekDownloads": 17916, "size": 17345, "latestRelease": "1.0.7", "latestReleaseDate": "2020-01-14T15:52:40.290Z" @@ -4253,7 +4255,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, + "popularity": -0.573, "topicSearchString": "react react-native event-listeners listeners events event-listener" }, { @@ -4306,8 +4308,8 @@ "unmaintained": true, "npmPkg": "react-native-signature-capture", "npm": { - "downloads": 48559, - "weekDownloads": 10690, + "downloads": 46802, + "weekDownloads": 10651, "size": 220600982, "latestRelease": "0.4.12", "latestReleaseDate": "2021-06-08T02:54:24.738Z" @@ -4320,7 +4322,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.563, + "popularity": -0.557, "topicSearchString": "react-component react-native ios signature" }, { @@ -4328,6 +4330,7 @@ "ios": true, "android": true, "windows": true, + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/react-native-pdf", "github": { "urls": { "repo": "https://github.com/wonday/react-native-pdf", @@ -4379,8 +4382,8 @@ }, "npmPkg": "react-native-pdf", "npm": { - "downloads": 1030645, - "weekDownloads": 199024, + "downloads": 990128, + "weekDownloads": 205870, "size": 288552, "latestRelease": "7.0.3", "latestReleaseDate": "2025-10-16T15:09:02.183Z" @@ -4393,7 +4396,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.177, "topicSearchString": "react-component react-native android ios pdf view viewer java objective-c" }, { @@ -4447,8 +4450,8 @@ "unmaintained": true, "npmPkg": "react-native-multiple-select", "npm": { - "downloads": 21190, - "weekDownloads": 3780, + "downloads": 20813, + "weekDownloads": 3958, "size": 44830, "latestRelease": "0.5.12", "latestReleaseDate": "2022-10-18T23:45:15.060Z" @@ -4461,7 +4464,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, + "popularity": -0.588, "topicSearchString": "reactnative multiselect multi-select react-native" }, { @@ -4519,8 +4522,8 @@ }, "npmPkg": "react-native-orientation-locker", "npm": { - "downloads": 455386, - "weekDownloads": 90084, + "downloads": 439679, + "weekDownloads": 91644, "size": 498704, "latestRelease": "1.7.0", "latestReleaseDate": "2024-04-20T15:16:06.405Z" @@ -4532,7 +4535,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.177, "topicSearchString": "orientation react-native android ios windows screen listener locker" }, { @@ -4595,8 +4598,8 @@ }, "npmPkg": "react-native-onesignal", "npm": { - "downloads": 297467, - "weekDownloads": 58136, + "downloads": 289769, + "weekDownloads": 58173, "size": 364522, "latestRelease": "5.2.13", "latestReleaseDate": "2025-07-01T20:54:57.093Z" @@ -4608,7 +4611,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.171, "topicSearchString": "react-component react-native ios android notifications push apns fcm gcm onesignal push-notifications mobile onesignal-instructions onesignal-notifications" }, { @@ -4668,8 +4671,8 @@ }, "npmPkg": "react-native-linkedin-login", "npm": { - "downloads": 3373, - "weekDownloads": 595, + "downloads": 3488, + "weekDownloads": 650, "latestRelease": "1.44.1", "latestReleaseDate": "2017-05-28T16:09:00.081Z" }, @@ -4678,7 +4681,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.6, + "popularity": -0.591, "topicSearchString": "react react-component react-native native ios android linkedin login sdk linkedin-sdk signin" }, { @@ -4737,8 +4740,8 @@ }, "npmPkg": "react-native-drawer", "npm": { - "downloads": 35160, - "weekDownloads": 5872, + "downloads": 35210, + "weekDownloads": 5927, "size": 33046, "latestRelease": "2.5.1", "latestReleaseDate": "2018-10-02T17:00:34.305Z" @@ -4751,7 +4754,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, + "popularity": -0.607, "topicSearchString": "react react-native react-component drawer side-menu menu ios android material-design" }, { @@ -4780,7 +4783,7 @@ "forks": 1920, "issues": 293, "subscribers": 109, - "stars": 8607, + "stars": 8608, "dependencies": 0 }, "name": "react-native-image-picker", @@ -4811,8 +4814,8 @@ }, "npmPkg": "react-native-image-picker", "npm": { - "downloads": 1198370, - "weekDownloads": 233230, + "downloads": 1166296, + "weekDownloads": 236829, "size": 189165, "latestRelease": "8.2.1", "latestReleaseDate": "2025-05-04T08:25:47.097Z" @@ -4825,7 +4828,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.173, "topicSearchString": "react-native image-picker react native image picker" }, { @@ -4885,8 +4888,8 @@ }, "npmPkg": "react-native-keyboard-spacer", "npm": { - "downloads": 35419, - "weekDownloads": 6555, + "downloads": 35158, + "weekDownloads": 7015, "latestRelease": "0.4.1", "latestReleaseDate": "2017-10-08T07:54:19.900Z" }, @@ -4897,7 +4900,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.58, "topicSearchString": "react-component react-native ios keyboard spacer helper clean-code" }, { @@ -4959,8 +4962,8 @@ }, "npmPkg": "react-native-mixpanel", "npm": { - "downloads": 7630, - "weekDownloads": 1342, + "downloads": 7538, + "weekDownloads": 1314, "size": 125473, "latestRelease": "1.2.5", "latestReleaseDate": "2020-12-01T16:30:32.601Z" @@ -4971,7 +4974,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.6, + "popularity": -0.602, "topicSearchString": "react-native react-component tracking mixpanel mixpanel-sdk android ios-app xcode notifications mixpanel-ios-sdk java mobile-app" }, { @@ -5006,9 +5009,9 @@ "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-13T15:01:58Z", "forks": 4929, - "issues": 851, + "issues": 850, "subscribers": 308, - "stars": 24216, + "stars": 24222, "dependencies": 5 }, "name": "@react-navigation/native", @@ -5035,8 +5038,8 @@ "configPlugin": false }, "npm": { - "downloads": 8327886, - "weekDownloads": 1597265, + "downloads": 8160820, + "weekDownloads": 1627524, "size": 234741, "latestRelease": "7.1.18", "latestReleaseDate": "2025-10-04T21:47:51.238Z" @@ -5050,7 +5053,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.17, "topicSearchString": "react-native react-navigation ios android" }, { @@ -5103,7 +5106,7 @@ }, "npmPkg": "native-navigation", "npm": { - "downloads": 134, + "downloads": 136, "weekDownloads": 0, "latestRelease": "0.2.1", "latestReleaseDate": "2017-04-17T23:03:30.453Z" @@ -5134,11 +5137,11 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-16T08:42:25Z", + "updatedAt": "2025-10-19T20:34:59Z", "createdAt": "2016-03-11T11:22:54Z", - "pushedAt": "2025-09-16T08:42:25Z", - "forks": 2541, - "issues": 257, + "pushedAt": "2025-10-19T20:34:59Z", + "forks": 2540, + "issues": 258, "subscribers": 475, "stars": 13141, "dependencies": 8 @@ -5169,21 +5172,22 @@ }, "npmPkg": "react-native-navigation", "npm": { - "downloads": 226324, - "weekDownloads": 34005, - "size": 4672645, - "latestRelease": "8.3.2", - "latestReleaseDate": "2025-09-16T08:42:23.184Z" + "downloads": 227256, + "weekDownloads": 34559, + "size": 4673216, + "latestRelease": "8.4.0", + "latestReleaseDate": "2025-10-19T20:34:57.071Z" }, - "score": 81, + "score": 86, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.128, + "popularity": 0.129, "topicSearchString": "react-native navigation navigator hacktoberfest" }, { @@ -5209,7 +5213,7 @@ "forks": 158, "issues": 47, "subscribers": 45, - "stars": 2971, + "stars": 2972, "dependencies": 2 }, "name": "gl-react-expo", @@ -5241,8 +5245,8 @@ "unmaintained": true, "npmPkg": "gl-react-expo", "npm": { - "downloads": 2984, - "weekDownloads": 406, + "downloads": 2975, + "weekDownloads": 482, "size": 17343, "latestRelease": "5.2.1", "latestReleaseDate": "2022-05-28T20:16:25.253Z" @@ -5254,7 +5258,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.634, + "popularity": -0.612, "topicSearchString": "gl-react gl opengl react react-native expo react-component" }, { @@ -5313,8 +5317,8 @@ "unmaintained": true, "npmPkg": "react-native-pages", "npm": { - "downloads": 9519, - "weekDownloads": 1834, + "downloads": 9208, + "weekDownloads": 1793, "size": 17057, "latestRelease": "0.9.0", "latestReleaseDate": "2019-10-07T18:38:59.702Z" @@ -5325,7 +5329,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.584, "topicSearchString": "react react-component react-native ios android pageview viewpager pager swiper" }, { @@ -5381,8 +5385,8 @@ "unmaintained": true, "npmPkg": "react-native-page-control", "npm": { - "downloads": 13812, - "weekDownloads": 4334, + "downloads": 12879, + "weekDownloads": 4078, "size": 8234, "latestRelease": "1.1.2", "latestReleaseDate": "2020-02-17T10:31:32.875Z" @@ -5393,7 +5397,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.483, + "popularity": -0.481, "topicSearchString": "react react-native react-component page-control pagecontrol uipagecontrol" }, { @@ -5431,7 +5435,7 @@ "forks": 1747, "issues": 8, "subscribers": 221, - "stars": 17045, + "stars": 17047, "dependencies": 0 }, "name": "lottie-react-native", @@ -5461,8 +5465,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 2499871, - "weekDownloads": 494187, + "downloads": 2428438, + "weekDownloads": 504521, "size": 289361, "latestRelease": "7.3.4", "latestReleaseDate": "2025-09-02T14:36:45.999Z" @@ -5474,7 +5478,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.177, "topicSearchString": "lottie animation react react-native keyframe" }, { @@ -5487,6 +5491,7 @@ "https://snack.expo.dev/H1zOFxnN-" ], "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/react-native-maps/react-native-maps", @@ -5501,10 +5506,10 @@ "updatedAt": "2025-10-14T14:17:09Z", "createdAt": "2015-12-29T19:54:20Z", "pushedAt": "2025-10-14T14:17:09Z", - "forks": 4696, - "issues": 66, + "forks": 4695, + "issues": 67, "subscribers": 212, - "stars": 15746, + "stars": 15750, "dependencies": 1 }, "name": "react-native-maps", @@ -5537,8 +5542,8 @@ }, "npmPkg": "react-native-maps", "npm": { - "downloads": 1864900, - "weekDownloads": 364726, + "downloads": 1827633, + "weekDownloads": 370664, "size": 1879742, "latestRelease": "1.26.17", "latestReleaseDate": "2025-10-14T14:17:16.130Z" @@ -5550,7 +5555,7 @@ "Known", "Recently updated" ], - "popularity": 0.166, + "popularity": 0.172, "topicSearchString": "react react-native react-component map mapview google-maps mapkit maps" }, { @@ -5612,8 +5617,8 @@ "unmaintained": true, "npmPkg": "react-native-maps-directions", "npm": { - "downloads": 58669, - "weekDownloads": 11742, + "downloads": 57594, + "weekDownloads": 11756, "size": 34838, "latestRelease": "1.9.0", "latestReleaseDate": "2022-07-27T21:51:59.432Z" @@ -5625,7 +5630,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.576, "topicSearchString": "react-native component maps directions google-maps ios android google-maps-api mapkit" }, { @@ -5692,8 +5697,8 @@ }, "npmPkg": "react-native-animatable", "npm": { - "downloads": 2018587, - "weekDownloads": 394610, + "downloads": 1965771, + "weekDownloads": 403232, "size": 59839, "latestRelease": "1.4.0", "latestReleaseDate": "2023-10-26T16:45:30.755Z" @@ -5707,7 +5712,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.174, "topicSearchString": "react-native react-component component react mobile ios android ui fade bounce slide animatable transition animation" }, { @@ -5764,8 +5769,8 @@ }, "npmPkg": "react-native-calendario", "npm": { - "downloads": 14628, - "weekDownloads": 2555, + "downloads": 14288, + "weekDownloads": 2531, "size": 185917, "latestRelease": "3.5.2", "latestReleaseDate": "2024-04-16T14:44:17.810Z" @@ -5776,7 +5781,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.151, "topicSearchString": "react-native calendar android ios typescript" }, { @@ -5810,7 +5815,7 @@ "updatedAt": "2025-06-09T09:42:33Z", "createdAt": "2016-11-11T12:17:27Z", "pushedAt": "2025-06-09T09:42:33Z", - "forks": 2877, + "forks": 2878, "issues": 153, "subscribers": 349, "stars": 10119, @@ -5844,8 +5849,8 @@ }, "npmPkg": "react-native-calendars", "npm": { - "downloads": 1057710, - "weekDownloads": 200541, + "downloads": 1031714, + "weekDownloads": 205134, "size": 429994, "latestRelease": "1.1313.0", "latestReleaseDate": "2025-06-24T13:09:10.634Z" @@ -5858,7 +5863,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.169, "topicSearchString": "react-native android ios calendar ui-components hacktoberfest" }, { @@ -5883,9 +5888,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-13T03:02:31Z", + "updatedAt": "2025-10-20T15:51:53Z", "createdAt": "2016-07-09T01:57:59Z", - "pushedAt": "2025-09-13T03:02:31Z", + "pushedAt": "2025-10-20T15:51:53Z", "forks": 120, "issues": 58, "subscribers": 12, @@ -5917,20 +5922,21 @@ "moduleType": "expo" }, "npm": { - "downloads": 7384493, - "weekDownloads": 1436784, + "downloads": 7246649, + "weekDownloads": 1456641, "size": 6013893, "latestRelease": "15.0.2", "latestReleaseDate": "2025-08-28T13:55:49.146Z" }, - "score": 92, + "score": 97, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.171, "topicSearchString": "expo react-native icons icon-pack" }, { @@ -5991,8 +5997,8 @@ "unmaintained": true, "npmPkg": "react-native-responsive-grid", "npm": { - "downloads": 3344, - "weekDownloads": 295, + "downloads": 3276, + "weekDownloads": 351, "size": 97762, "latestRelease": "0.41.993", "latestReleaseDate": "2020-03-18T01:12:40.847Z" @@ -6003,7 +6009,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.675, + "popularity": -0.659, "topicSearchString": "react-native react native flexbox grid responsive responsive-layout layout orientation-changes responsive-design universal" }, { @@ -6063,8 +6069,8 @@ "unmaintained": true, "npmPkg": "react-native-step-indicator", "npm": { - "downloads": 274147, - "weekDownloads": 61624, + "downloads": 263431, + "weekDownloads": 60215, "size": 144083, "latestRelease": "1.0.3", "latestReleaseDate": "2020-06-16T18:30:52.597Z" @@ -6076,7 +6082,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.559, + "popularity": -0.556, "topicSearchString": "react-native ios android react-component step-indicator viewpager scrollview listview step progress-view" }, { @@ -6139,8 +6145,8 @@ "unmaintained": true, "npmPkg": "react-native-modals", "npm": { - "downloads": 7702, - "weekDownloads": 1502, + "downloads": 7520, + "weekDownloads": 1566, "size": 12374985, "latestRelease": "0.22.3", "latestReleaseDate": "2020-12-19T16:05:09.775Z" @@ -6153,7 +6159,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.573, "topicSearchString": "dialog popup react-dialog react-native modals react-component ios android react react-animate component javascript es6" }, { @@ -6219,8 +6225,8 @@ "unmaintained": true, "npmPkg": "react-native-material-textfield", "npm": { - "downloads": 244152, - "weekDownloads": 56169, + "downloads": 233843, + "weekDownloads": 53795, "size": 191081, "latestRelease": "0.16.1", "latestReleaseDate": "2019-10-24T20:53:07.376Z" @@ -6295,8 +6301,8 @@ }, "npmPkg": "react-native-modalbox", "npm": { - "downloads": 54433, - "weekDownloads": 10832, + "downloads": 52705, + "weekDownloads": 11132, "size": 21424, "latestRelease": "2.0.2", "latestReleaseDate": "2020-10-09T23:31:47.038Z" @@ -6309,7 +6315,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.18, "topicSearchString": "react-component react-native ios android modal box modalbox window swipe" }, { @@ -6338,7 +6344,7 @@ "forks": 633, "issues": 72, "subscribers": 38, - "stars": 5628, + "stars": 5630, "dependencies": 1 }, "name": "react-native-modal", @@ -6372,8 +6378,8 @@ }, "npmPkg": "react-native-modal", "npm": { - "downloads": 1721501, - "weekDownloads": 338552, + "downloads": 1651751, + "weekDownloads": 345109, "size": 57712, "latestRelease": "14.0.0-rc.1", "latestReleaseDate": "2025-03-15T03:54:56.538Z" @@ -6386,7 +6392,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.178, "topicSearchString": "react-native react native modal android ios backdrop simple animated animation" }, { @@ -6416,7 +6422,7 @@ "forks": 4617, "issues": 144, "subscribers": 372, - "stars": 25615, + "stars": 25618, "dependencies": 0 }, "name": "rneui", @@ -6448,8 +6454,8 @@ "configPlugin": false }, "npm": { - "downloads": 451, - "weekDownloads": 153, + "downloads": 385, + "weekDownloads": 94, "size": 381, "latestRelease": "1.0.0-stable.0", "latestReleaseDate": "2022-05-05T08:31:29.876Z" @@ -6463,7 +6469,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.461, + "popularity": -0.541, "topicSearchString": "ui-components react-native ios android react ui mobile-app hacktoberfest cross-platform" }, { @@ -6494,9 +6500,9 @@ "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-16T12:44:50Z", "forks": 4929, - "issues": 851, + "issues": 850, "subscribers": 308, - "stars": 24216, + "stars": 24222, "dependencies": 1 }, "name": "react-native-tab-view", @@ -6529,8 +6535,8 @@ }, "npmPkg": "react-native-tab-view", "npm": { - "downloads": 2030419, - "weekDownloads": 397942, + "downloads": 1975799, + "weekDownloads": 407828, "size": 193318, "latestRelease": "4.1.3", "latestReleaseDate": "2025-08-10T16:27:21.845Z" @@ -6544,7 +6550,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.175, "topicSearchString": "component react-component react-native ios android tab swipe scrollable coverflow" }, { @@ -6607,8 +6613,8 @@ "unmaintained": true, "npmPkg": "react-native-circular-slider", "npm": { - "downloads": 1151, - "weekDownloads": 218, + "downloads": 1109, + "weekDownloads": 187, "latestRelease": "1.0.1", "latestReleaseDate": "2017-01-07T08:13:00.443Z" }, @@ -6619,7 +6625,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, + "popularity": -0.606, "topicSearchString": "react react-native slider chart svg bedtime circular circle round time timer react-component clock animation" }, { @@ -6652,7 +6658,7 @@ "forks": 2165, "issues": 346, "subscribers": 96, - "stars": 10518, + "stars": 10520, "dependencies": 2 }, "name": "react-native-snap-carousel", @@ -6706,8 +6712,8 @@ "unmaintained": true, "npmPkg": "react-native-snap-carousel", "npm": { - "downloads": 440701, - "weekDownloads": 93390, + "downloads": 425969, + "weekDownloads": 96261, "size": 191158, "latestRelease": "3.9.1", "latestReleaseDate": "2020-05-27T05:36:20.217Z" @@ -6721,7 +6727,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.57, + "popularity": -0.558, "topicSearchString": "react native carousel slider swiper flatlist scrollview parallax images infinite scroll scrolling items edge snap card cards stack deck tinder android ios snapping component rtl flatlist-based parallax-effect infinite-scroll advanced-effects" }, { @@ -6751,7 +6757,7 @@ "forks": 389, "issues": 41, "subscribers": 32, - "stars": 3043, + "stars": 3045, "dependencies": 1 }, "name": "react-native-modal-datetime-picker", @@ -6784,8 +6790,8 @@ }, "npmPkg": "react-native-modal-datetime-picker", "npm": { - "downloads": 1777818, - "weekDownloads": 353093, + "downloads": 1721560, + "weekDownloads": 356955, "size": 43913, "latestRelease": "18.0.0", "latestReleaseDate": "2024-08-22T15:03:44.414Z" @@ -6798,7 +6804,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.176, "topicSearchString": "react-native react native date time picker android ios modal" }, { @@ -6852,7 +6858,7 @@ }, "npmPkg": "react-native-universal-picker", "npm": { - "downloads": 35, + "downloads": 36, "weekDownloads": 8, "latestRelease": "1.1.0", "latestReleaseDate": "2017-09-11T09:21:41.128Z" @@ -6917,8 +6923,8 @@ }, "npmPkg": "react-native-root-siblings", "npm": { - "downloads": 288370, - "weekDownloads": 57504, + "downloads": 280707, + "weekDownloads": 58480, "size": 28284, "latestRelease": "5.0.1", "latestReleaseDate": "2023-10-06T15:36:20.865Z" @@ -6930,7 +6936,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.177, "topicSearchString": "react-component react-native modal ios android" }, { @@ -6987,8 +6993,8 @@ "unmaintained": true, "npmPkg": "react-native-tcp", "npm": { - "downloads": 18565, - "weekDownloads": 3144, + "downloads": 18013, + "weekDownloads": 3268, "size": 368274, "latestRelease": "4.0.0", "latestReleaseDate": "2020-04-04T19:23:20.484Z" @@ -6999,7 +7005,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.596, "topicSearchString": "react-component reactnative react-native net tcp sockets ios android" }, { @@ -7016,6 +7022,7 @@ "visionos": true, "tvos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/TheWidlarzGroup/react-native-video", @@ -7031,7 +7038,7 @@ "createdAt": "2015-03-31T05:08:38Z", "pushedAt": "2025-10-06T11:32:39Z", "forks": 2660, - "issues": 175, + "issues": 174, "subscribers": 106, "stars": 7559, "dependencies": 0 @@ -7056,8 +7063,8 @@ }, "npmPkg": "react-native-video", "npm": { - "downloads": 1323656, - "weekDownloads": 273526, + "downloads": 1277631, + "weekDownloads": 271994, "size": 917213, "latestRelease": "6.17.0", "latestReleaseDate": "2025-10-06T11:32:36.776Z" @@ -7071,7 +7078,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.181, "topicSearchString": "" }, { @@ -7083,6 +7090,7 @@ "ios": true, "android": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/react-native-share/react-native-share", @@ -7100,7 +7108,7 @@ "forks": 918, "issues": 12, "subscribers": 59, - "stars": 3827, + "stars": 3831, "dependencies": 0 }, "name": "react-native-share", @@ -7134,8 +7142,8 @@ }, "npmPkg": "react-native-share", "npm": { - "downloads": 1564969, - "weekDownloads": 314152, + "downloads": 1519436, + "weekDownloads": 320340, "size": 338218, "latestRelease": "12.2.0", "latestReleaseDate": "2025-08-06T19:20:56.149Z" @@ -7147,7 +7155,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.179, "topicSearchString": "react-native android ios windows bridge react share intent uwp" }, { @@ -7200,8 +7208,8 @@ }, "npmPkg": "react-native-dialogs", "npm": { - "downloads": 9581, - "weekDownloads": 1698, + "downloads": 9129, + "weekDownloads": 1970, "size": 151866, "latestRelease": "1.1.2", "latestReleaseDate": "2023-12-13T09:30:36.724Z" @@ -7212,7 +7220,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.183, "topicSearchString": "react-native android react-component mobile-development cross-platform dialog-box" }, { @@ -7242,7 +7250,7 @@ "forks": 472, "issues": 152, "subscribers": 38, - "stars": 3401, + "stars": 3402, "dependencies": 0 }, "name": "react-native-keychain", @@ -7276,8 +7284,8 @@ }, "npmPkg": "react-native-keychain", "npm": { - "downloads": 1164942, - "weekDownloads": 235313, + "downloads": 1127619, + "weekDownloads": 241724, "size": 230397, "latestRelease": "10.0.0", "latestReleaseDate": "2025-03-23T19:16:49.565Z" @@ -7289,7 +7297,7 @@ "Known", "Lots of open issues" ], - "popularity": 0.172, + "popularity": 0.182, "topicSearchString": "react-native react-component component react mobile ios android keychain keychain-access" }, { @@ -7350,8 +7358,8 @@ }, "npmPkg": "react-native-social-share", "npm": { - "downloads": 1316, - "weekDownloads": 245, + "downloads": 1293, + "weekDownloads": 232, "size": 8319613, "latestRelease": "1.6.5", "latestReleaseDate": "2019-08-28T08:25:10.360Z" @@ -7362,7 +7370,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.597, "topicSearchString": "react twitter facebook slcomposeviewcontroller rctbridgemodule social react-native react-component component mobile ui popup share-popups" }, { @@ -7371,6 +7379,7 @@ "android": true, "newArchitecture": true, "newArchitectureNote": "The old architecture is not supported since version 12.x", + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/innoveit/react-native-ble-manager", @@ -7420,8 +7429,8 @@ }, "npmPkg": "react-native-ble-manager", "npm": { - "downloads": 181605, - "weekDownloads": 37021, + "downloads": 173966, + "weekDownloads": 37892, "size": 440962, "latestRelease": "12.2.2", "latestReleaseDate": "2025-10-03T08:29:02.888Z" @@ -7432,7 +7441,7 @@ "Known", "Recently updated" ], - "popularity": 0.173, + "popularity": 0.185, "topicSearchString": "react-native android ios ble bluetooth low-energy bluetooth-low-energy" }, { @@ -7488,8 +7497,8 @@ "unmaintained": true, "npmPkg": "react-native-mail", "npm": { - "downloads": 45215, - "weekDownloads": 9448, + "downloads": 43021, + "weekDownloads": 8650, "size": 228779, "latestRelease": "6.1.1", "latestReleaseDate": "2021-08-16T15:26:12.910Z" @@ -7501,7 +7510,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.572, + "popularity": -0.579, "topicSearchString": "react react-native react-component ios android email mfmailcomposeviewcontroller" }, { @@ -7556,8 +7565,8 @@ "unmaintained": true, "npmPkg": "react-native-pdf-view", "npm": { - "downloads": 202, - "weekDownloads": 32, + "downloads": 204, + "weekDownloads": 30, "latestRelease": "0.3.2", "latestReleaseDate": "2016-05-19T04:41:42.297Z" }, @@ -7567,7 +7576,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.364, + "popularity": -1.375, "topicSearchString": "react-component react-native android ios pdf view" }, { @@ -7625,7 +7634,7 @@ }, "npmPkg": "react-native-card-io", "npm": { - "downloads": 545, + "downloads": 550, "weekDownloads": 88, "latestRelease": "1.0.5", "latestReleaseDate": "2016-05-16T04:21:45.691Z" @@ -7636,7 +7645,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.363, + "popularity": -1.364, "topicSearchString": "react-component react-native card.io credit card scanner native ios android" }, { @@ -7695,8 +7704,8 @@ }, "npmPkg": "react-native-awesome-card-io", "npm": { - "downloads": 9192, - "weekDownloads": 2387, + "downloads": 8822, + "weekDownloads": 2589, "size": 77005, "latestRelease": "0.9.1", "latestReleaseDate": "2022-04-07T12:53:39.030Z" @@ -7707,7 +7716,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.529, + "popularity": -0.5, "topicSearchString": "react-native react-component card.io credit-card scan android ios react card-scanning card-io" }, { @@ -7769,8 +7778,8 @@ }, "npmPkg": "react-native-google-places", "npm": { - "downloads": 2054, - "weekDownloads": 357, + "downloads": 1995, + "weekDownloads": 377, "size": 1365307, "latestRelease": "3.1.2", "latestReleaseDate": "2019-08-06T14:05:27.539Z" @@ -7782,7 +7791,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": -0.589, "topicSearchString": "react react-native react-component map places google-places google-places-api autocomplete ios android google-place-picker google-place-api google-place-autocomplete" }, { @@ -7836,8 +7845,8 @@ "configPlugin": false }, "npm": { - "downloads": 255, - "weekDownloads": 34, + "downloads": 290, + "weekDownloads": 36, "size": 298312, "latestRelease": "4.3.0", "latestReleaseDate": "2019-01-17T19:19:03.843Z" @@ -7850,7 +7859,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.387, + "popularity": -1.394, "topicSearchString": "react-native navigation expo react" }, { @@ -7907,8 +7916,8 @@ "unmaintained": true, "npmPkg": "react-native-masked-text", "npm": { - "downloads": 227328, - "weekDownloads": 44279, + "downloads": 217332, + "weekDownloads": 45192, "size": 544679, "latestRelease": "1.13.0", "latestReleaseDate": "2019-08-13T21:06:53.772Z" @@ -7921,7 +7930,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.573, "topicSearchString": "mask text textinput react-native custom money input" }, { @@ -7981,8 +7990,8 @@ "unmaintained": true, "npmPkg": "react-native-material-bottom-navigation", "npm": { - "downloads": 696, - "weekDownloads": 105, + "downloads": 679, + "weekDownloads": 108, "size": 75227, "latestRelease": "1.0.5", "latestReleaseDate": "2019-12-10T11:49:15.595Z" @@ -7994,7 +8003,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.371, + "popularity": -1.364, "topicSearchString": "react-native material bottomnavigation bottom-navigation ios android react-component react-navigation component material-design" }, { @@ -8043,8 +8052,8 @@ "unmaintained": true, "npmPkg": "react-native-autogrow-textinput", "npm": { - "downloads": 11517, - "weekDownloads": 2281, + "downloads": 11212, + "weekDownloads": 2608, "size": 157435, "latestRelease": "5.4.0", "latestReleaseDate": "2020-04-23T14:24:34.669Z" @@ -8056,7 +8065,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, + "popularity": -0.552, "topicSearchString": "" }, { @@ -8112,8 +8121,8 @@ "unmaintained": true, "npmPkg": "react-native-camera-roll-picker", "npm": { - "downloads": 3699, - "weekDownloads": 436, + "downloads": 3671, + "weekDownloads": 460, "size": 16379, "latestRelease": "2.0.1", "latestReleaseDate": "2023-03-08T00:48:59.307Z" @@ -8124,7 +8133,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.65, + "popularity": -0.643, "topicSearchString": "cameraroll ios picker react-component react-native component camera-roll" }, { @@ -8180,7 +8189,7 @@ }, "npmPkg": "react-native-conductor", "npm": { - "downloads": 51, + "downloads": 52, "weekDownloads": 1, "latestRelease": "1.0.11", "latestReleaseDate": "2017-04-03T22:57:08.956Z" @@ -8256,8 +8265,8 @@ "unmaintained": true, "npmPkg": "react-native-image-progress", "npm": { - "downloads": 50905, - "weekDownloads": 9188, + "downloads": 49832, + "weekDownloads": 9497, "size": 13081, "latestRelease": "1.2.0", "latestReleaseDate": "2022-01-02T13:25:29.043Z" @@ -8269,7 +8278,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.588, "topicSearchString": "react-native react-component component react mobile ios ui image progress bar progressbar spinner activityindicator loading indicator" }, { @@ -8330,8 +8339,8 @@ }, "npmPkg": "react-native-app-intro", "npm": { - "downloads": 388, - "weekDownloads": 52, + "downloads": 385, + "weekDownloads": 65, "latestRelease": "1.1.5", "latestReleaseDate": "2016-10-12T01:41:43.405Z" }, @@ -8342,7 +8351,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.386, + "popularity": -1.356, "topicSearchString": "swiper producttour app intro ios android react-component react-native parallax introduction" }, { @@ -8406,8 +8415,8 @@ }, "npmPkg": "react-native-lightbox", "npm": { - "downloads": 203179, - "weekDownloads": 42428, + "downloads": 195420, + "weekDownloads": 42582, "size": 14958, "latestRelease": "0.8.1", "latestReleaseDate": "2019-12-15T11:54:05.434Z" @@ -8419,7 +8428,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.572, + "popularity": -0.565, "topicSearchString": "react-native react-component component react mobile ios android ui lightbox gallery image" }, { @@ -8481,8 +8490,8 @@ }, "npmPkg": "react-native-textinput-effects", "npm": { - "downloads": 4095, - "weekDownloads": 789, + "downloads": 4031, + "weekDownloads": 872, "size": 62199, "latestRelease": "0.6.3", "latestReleaseDate": "2022-08-08T19:55:29.844Z" @@ -8494,7 +8503,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.184, "topicSearchString": "react react-component react-native text-input textinput textfield animation animated ios android" }, { @@ -8554,8 +8563,8 @@ "unmaintained": true, "npmPkg": "react-native-sortable-listview", "npm": { - "downloads": 11729, - "weekDownloads": 1225, + "downloads": 11407, + "weekDownloads": 1531, "size": 49743, "latestRelease": "0.2.9", "latestReleaseDate": "2019-07-28T21:38:30.309Z" @@ -8567,7 +8576,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.661, + "popularity": -0.636, "topicSearchString": "react-component ios android react-native drag drop touch listview list sort" }, { @@ -8625,8 +8634,8 @@ }, "npmPkg": "react-native-foldview", "npm": { - "downloads": 72, - "weekDownloads": 15, + "downloads": 71, + "weekDownloads": 14, "size": 21848, "latestRelease": "1.2.1", "latestReleaseDate": "2018-07-28T17:09:51.988Z" @@ -8638,7 +8647,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.313, + "popularity": -1.325, "topicSearchString": "react react-native native ios andorid foldingcell folding cell view" }, { @@ -8703,8 +8712,8 @@ }, "npmPkg": "react-native-progress", "npm": { - "downloads": 892936, - "weekDownloads": 189829, + "downloads": 863750, + "weekDownloads": 189890, "size": 46096, "latestRelease": "5.0.1", "latestReleaseDate": "2023-10-26T14:05:23.613Z" @@ -8718,7 +8727,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.181, + "popularity": 0.187, "topicSearchString": "react-native react-component component react mobile ios ui progress progressindicator circle pie bar progressbar indeterminate spinner animation" }, { @@ -8783,8 +8792,8 @@ "configPlugin": false }, "npm": { - "downloads": 4997, - "weekDownloads": 1087, + "downloads": 4872, + "weekDownloads": 1128, "latestRelease": "1.2.9", "latestReleaseDate": "2017-12-18T02:50:06.405Z" }, @@ -8796,7 +8805,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.565, + "popularity": -0.553, "topicSearchString": "component react-component react-native ios android viewpager pager pageview page tab-navigator scrollable tab navigator tab-bar tab-view" }, { @@ -8854,8 +8863,8 @@ "unmaintained": true, "npmPkg": "react-native-menu", "npm": { - "downloads": 15086, - "weekDownloads": 2774, + "downloads": 14803, + "weekDownloads": 2616, "latestRelease": "0.23.0", "latestReleaseDate": "2017-08-30T03:48:31.295Z" }, @@ -8865,7 +8874,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.6, "topicSearchString": "react-native react menu spinner dropdown react-component ios android" }, { @@ -8925,8 +8934,8 @@ "unmaintained": true, "npmPkg": "react-native-button-component", "npm": { - "downloads": 304, - "weekDownloads": 25, + "downloads": 307, + "weekDownloads": 23, "size": 1663330, "latestRelease": "0.2.28", "latestReleaseDate": "2018-03-18T14:56:56.039Z" @@ -8937,7 +8946,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.43, + "popularity": -1.436, "topicSearchString": "react-button react-native button-component button component react-component ios android react javascript" }, { @@ -8990,7 +8999,7 @@ }, "npmPkg": "react-native-fence-html", "npm": { - "downloads": 42, + "downloads": 43, "weekDownloads": 0, "latestRelease": "1.0.6", "latestReleaseDate": "2016-07-04T18:18:18.953Z" @@ -9060,8 +9069,8 @@ "unmaintained": true, "npmPkg": "react-native-autolink", "npm": { - "downloads": 90718, - "weekDownloads": 15785, + "downloads": 88712, + "weekDownloads": 16851, "size": 41827, "latestRelease": "4.2.0", "latestReleaseDate": "2023-10-07T18:15:27.220Z" @@ -9072,7 +9081,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": -0.589, "topicSearchString": "react-native autolinking autolink linking autolinker links" }, { @@ -9136,8 +9145,8 @@ "unmaintained": true, "npmPkg": "react-native-hyperlink", "npm": { - "downloads": 193431, - "weekDownloads": 35609, + "downloads": 186441, + "weekDownloads": 35766, "size": 54992, "latestRelease": "0.0.22", "latestReleaseDate": "2022-08-22T15:31:49.781Z" @@ -9149,7 +9158,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.587, "topicSearchString": "react react-native text link hyperlink autolink url web fuzzy-links" }, { @@ -9212,8 +9221,8 @@ }, "npmPkg": "react-native-check-box", "npm": { - "downloads": 42283, - "weekDownloads": 8137, + "downloads": 41405, + "weekDownloads": 8313, "size": 12274, "latestRelease": "2.1.7", "latestReleaseDate": "2018-12-13T13:30:40.085Z" @@ -9225,7 +9234,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.579, "topicSearchString": "react-native component checkbox check-box check box react-component ios android checkbox-component" }, { @@ -9338,8 +9347,8 @@ "configPlugin": false }, "npm": { - "downloads": 759, - "weekDownloads": 122, + "downloads": 762, + "weekDownloads": 130, "latestRelease": "0.1.1", "latestReleaseDate": "2017-10-21T12:14:51.256Z" }, @@ -9350,7 +9359,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.363, + "popularity": -1.355, "topicSearchString": "react-native tinder cards swipe" }, { @@ -9408,8 +9417,8 @@ }, "npmPkg": "react-native-circular-progress", "npm": { - "downloads": 329933, - "weekDownloads": 67492, + "downloads": 318583, + "weekDownloads": 67399, "size": 20970, "latestRelease": "1.4.1", "latestReleaseDate": "2024-10-26T09:44:40.355Z" @@ -9421,7 +9430,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.18, "topicSearchString": "react react-native react-component progress chart react-svg fill circle animation" }, { @@ -9478,8 +9487,8 @@ }, "npmPkg": "react-native-side-menu", "npm": { - "downloads": 19829, - "weekDownloads": 3392, + "downloads": 20188, + "weekDownloads": 3293, "latestRelease": "1.1.3", "latestReleaseDate": "2017-09-09T15:20:58.317Z" }, @@ -9490,7 +9499,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, + "popularity": -0.611, "topicSearchString": "react-native react-component ios sidebar component javascript side-menu" }, { @@ -9526,7 +9535,7 @@ "forks": 2133, "issues": 683, "subscribers": 145, - "stars": 10487, + "stars": 10488, "dependencies": 1 }, "name": "react-native-swiper", @@ -9556,8 +9565,8 @@ "unmaintained": true, "npmPkg": "react-native-swiper", "npm": { - "downloads": 265961, - "weekDownloads": 56880, + "downloads": 256177, + "weekDownloads": 56404, "size": 66634, "latestRelease": "1.6.0", "latestReleaseDate": "2020-04-03T07:43:17.379Z" @@ -9571,7 +9580,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.568, + "popularity": -0.563, "topicSearchString": "react-component react-native ios swipe react" }, { @@ -9596,7 +9605,7 @@ "forks": 2004, "issues": 136, "subscribers": 136, - "stars": 6945, + "stars": 6946, "dependencies": 5 }, "name": "react-native-scrollable-tab-view", @@ -9630,8 +9639,8 @@ "unmaintained": true, "npmPkg": "react-native-scrollable-tab-view", "npm": { - "downloads": 24016, - "weekDownloads": 3858, + "downloads": 23702, + "weekDownloads": 4240, "size": 86113, "latestRelease": "1.0.0", "latestReleaseDate": "2019-10-28T12:34:28.571Z" @@ -9645,7 +9654,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.613, + "popularity": -0.598, "topicSearchString": "component react-component react-native ios tab scrollable tabs swipe animated" }, { @@ -9694,8 +9703,8 @@ "unmaintained": true, "npmPkg": "react-native-router-flux", "npm": { - "downloads": 11575, - "weekDownloads": 1497, + "downloads": 11393, + "weekDownloads": 1827, "size": 1452326, "latestRelease": "4.3.1", "latestReleaseDate": "2021-03-26T08:20:25.578Z" @@ -9709,7 +9718,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.64, + "popularity": -0.614, "topicSearchString": "" }, { @@ -9743,7 +9752,7 @@ "forks": 2330, "issues": 283, "subscribers": 264, - "stars": 20347, + "stars": 20348, "dependencies": 35 }, "name": "native-base", @@ -9780,8 +9789,8 @@ "configPlugin": false }, "npm": { - "downloads": 257519, - "weekDownloads": 46234, + "downloads": 247241, + "weekDownloads": 46743, "size": 8633762, "latestRelease": "3.4.28", "latestReleaseDate": "2023-03-06T08:06:31.155Z" @@ -9795,7 +9804,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.161, "topicSearchString": "android ios react native react-native native-modules react-component navbar packager nativebase ui-components native-platforms nextjs hacktoberfest" }, { @@ -9844,7 +9853,7 @@ }, "npmPkg": "react-native-switcher", "npm": { - "downloads": 10, + "downloads": 11, "weekDownloads": 0, "latestRelease": "0.1.0", "latestReleaseDate": "2015-09-22T21:55:28.603Z" @@ -9914,8 +9923,8 @@ }, "npmPkg": "react-native-swipeout", "npm": { - "downloads": 120050, - "weekDownloads": 24567, + "downloads": 115353, + "weekDownloads": 25006, "size": 114014, "latestRelease": "2.3.6", "latestReleaseDate": "2018-08-10T03:35:40.754Z" @@ -9928,7 +9937,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.576, + "popularity": -0.566, "topicSearchString": "react-native react-component ios swipeout button swipe ui" }, { @@ -9983,8 +9992,8 @@ "unmaintained": true, "npmPkg": "react-native-looped-carousel", "npm": { - "downloads": 1229, - "weekDownloads": 365, + "downloads": 1163, + "weekDownloads": 334, "size": 23338, "latestRelease": "0.1.13", "latestReleaseDate": "2018-05-23T21:31:36.346Z" @@ -9996,7 +10005,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.497, + "popularity": -0.505, "topicSearchString": "react native react-native carousel looped" }, { @@ -10055,8 +10064,8 @@ }, "unmaintained": true, "npm": { - "downloads": 1234, - "weekDownloads": 200, + "downloads": 1210, + "weekDownloads": 207, "size": 209287, "latestRelease": "3.1.1", "latestReleaseDate": "2018-04-24T09:57:31.034Z" @@ -10068,7 +10077,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, + "popularity": -0.604, "topicSearchString": "react-native ios android react-component react button" }, { @@ -10120,8 +10129,8 @@ "unmaintained": true, "npmPkg": "react-native-datepicker", "npm": { - "downloads": 39697, - "weekDownloads": 7735, + "downloads": 38730, + "weekDownloads": 7714, "size": 47241, "latestRelease": "1.7.2", "latestReleaseDate": "2018-04-22T11:27:28.819Z" @@ -10134,7 +10143,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.581, "topicSearchString": "react-native datepicker" }, { @@ -10194,8 +10203,8 @@ }, "npmPkg": "react-native-google-places-autocomplete", "npm": { - "downloads": 449860, - "weekDownloads": 86402, + "downloads": 442365, + "weekDownloads": 89509, "size": 85271, "latestRelease": "2.5.7", "latestReleaseDate": "2024-10-04T06:06:40.473Z" @@ -10208,7 +10217,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.172, "topicSearchString": "autocomplete google places react-component react-native ios android" }, { @@ -10266,8 +10275,8 @@ }, "npmPkg": "react-native-slider", "npm": { - "downloads": 45994, - "weekDownloads": 9174, + "downloads": 43726, + "weekDownloads": 8681, "latestRelease": "0.11.0", "latestReleaseDate": "2017-08-04T09:50:42.334Z" }, @@ -10279,7 +10288,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.581, "topicSearchString": "react-component react-native ios android slider" }, { @@ -10338,8 +10347,8 @@ }, "npmPkg": "react-native-credit-card-input", "npm": { - "downloads": 16162, - "weekDownloads": 2799, + "downloads": 15692, + "weekDownloads": 2785, "size": 804827, "latestRelease": "1.0.0", "latestReleaseDate": "2024-07-19T07:24:54.952Z" @@ -10350,7 +10359,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.151, "topicSearchString": "react-native ios android component payment credit-card" }, { @@ -10412,8 +10421,8 @@ }, "npmPkg": "react-native-photo-browser", "npm": { - "downloads": 399, - "weekDownloads": 58, + "downloads": 392, + "weekDownloads": 54, "size": 146594, "latestRelease": "0.7.0", "latestReleaseDate": "2020-06-04T10:37:02.012Z" @@ -10425,7 +10434,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.375, + "popularity": -1.383, "topicSearchString": "react react-component react-native photo-browser image-gallery media-gallery ios android photos" }, { @@ -10486,8 +10495,8 @@ }, "npmPkg": "react-native-pathjs-charts", "npm": { - "downloads": 470, - "weekDownloads": 66, + "downloads": 469, + "weekDownloads": 58, "size": 813630, "latestRelease": "0.0.34", "latestReleaseDate": "2018-02-19T01:42:02.629Z" @@ -10499,7 +10508,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.38, + "popularity": -1.395, "topicSearchString": "react-native svg paths-js react-pathjs-chart ios android charts graphs cross-platform radar-graphs bar-graphs" }, { @@ -10526,7 +10535,7 @@ "forks": 90, "issues": 88, "subscribers": 26, - "stars": 1060, + "stars": 1062, "dependencies": 5 }, "name": "victory-native", @@ -10548,8 +10557,8 @@ "configPlugin": false }, "npm": { - "downloads": 773541, - "weekDownloads": 147710, + "downloads": 751966, + "weekDownloads": 153538, "size": 415415, "latestRelease": "41.20.1", "latestReleaseDate": "2025-09-08T16:26:03.438Z" @@ -10561,7 +10570,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.174, "topicSearchString": "" }, { @@ -10621,8 +10630,8 @@ "unmaintained": true, "npmPkg": "react-native-action-button", "npm": { - "downloads": 19555, - "weekDownloads": 2880, + "downloads": 19066, + "weekDownloads": 3024, "size": 364481, "latestRelease": "2.8.5", "latestReleaseDate": "2018-08-29T12:38:27.449Z" @@ -10635,7 +10644,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.625, + "popularity": -0.615, "topicSearchString": "react-native action-button float-button multi-action-button fab actionbutton component" }, { @@ -10691,8 +10700,8 @@ "unmaintained": true, "npmPkg": "react-native-gifted-form", "npm": { - "downloads": 532, - "weekDownloads": 57, + "downloads": 512, + "weekDownloads": 42, "latestRelease": "0.1.1", "latestReleaseDate": "2017-11-15T23:34:21.066Z" }, @@ -10703,7 +10712,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.409, + "popularity": -1.43, "topicSearchString": "form react-native react react-component ios android" }, { @@ -10763,8 +10772,8 @@ }, "npmPkg": "react-native-dropdownalert", "npm": { - "downloads": 49387, - "weekDownloads": 8445, + "downloads": 48412, + "weekDownloads": 9061, "size": 37781, "latestRelease": "5.2.0", "latestReleaseDate": "2025-07-12T14:33:43.362Z" @@ -10775,7 +10784,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.145, + "popularity": 0.159, "topicSearchString": "react-native ios android dropdown alert dismiss error info warn success notification" }, { @@ -10827,8 +10836,8 @@ "unmaintained": true, "npmPkg": "react-native-read-more-text", "npm": { - "downloads": 17500, - "weekDownloads": 3294, + "downloads": 16959, + "weekDownloads": 3301, "size": 5171, "latestRelease": "1.1.2", "latestReleaseDate": "2020-02-05T12:30:33.064Z" @@ -10839,7 +10848,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.585, "topicSearchString": "" }, { @@ -10867,7 +10876,7 @@ "forks": 251, "issues": 43, "subscribers": 16, - "stars": 1535, + "stars": 1537, "dependencies": 0 }, "name": "react-native-popup-menu", @@ -10896,8 +10905,8 @@ }, "npmPkg": "react-native-popup-menu", "npm": { - "downloads": 199937, - "weekDownloads": 39581, + "downloads": 193099, + "weekDownloads": 38945, "size": 446216, "latestRelease": "0.18.0", "latestReleaseDate": "2025-06-07T22:45:48.028Z" @@ -10908,7 +10917,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.171, "topicSearchString": "popup-menu animation react-native android ios" }, { @@ -10969,8 +10978,8 @@ "unmaintained": true, "npmPkg": "react-native-calendar-strip", "npm": { - "downloads": 29702, - "weekDownloads": 5347, + "downloads": 28845, + "weekDownloads": 5441, "size": 116646, "latestRelease": "2.2.6", "latestReleaseDate": "2022-05-11T23:12:59.391Z" @@ -10983,7 +10992,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.59, "topicSearchString": "rn calendar calendar-strip native react react-native strip javascript" }, { @@ -11043,8 +11052,8 @@ "unmaintained": true, "npmPkg": "react-native-loader", "npm": { - "downloads": 1710, - "weekDownloads": 410, + "downloads": 1615, + "weekDownloads": 378, "size": 12138, "latestRelease": "1.3.1", "latestReleaseDate": "2020-08-21T04:22:58.114Z" @@ -11055,7 +11064,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.546, + "popularity": -0.551, "topicSearchString": "react react-native react-component waiting loading spinner react-art animated-spinners android ios" }, { @@ -11112,8 +11121,8 @@ "unmaintained": true, "npmPkg": "react-native-simple-modal", "npm": { - "downloads": 1266, - "weekDownloads": 189, + "downloads": 1207, + "weekDownloads": 167, "size": 11011, "latestRelease": "9.0.1", "latestReleaseDate": "2018-06-09T11:37:11.050Z" @@ -11124,7 +11133,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.623, + "popularity": -0.632, "topicSearchString": "modal react-native dialog react-component ios android component" }, { @@ -11187,8 +11196,8 @@ "unmaintained": true, "npmPkg": "react-native-sortable-list", "npm": { - "downloads": 11612, - "weekDownloads": 3722, + "downloads": 10593, + "weekDownloads": 3259, "size": 34345, "latestRelease": "0.0.25", "latestReleaseDate": "2022-04-08T18:36:21.645Z" @@ -11201,7 +11210,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.478, + "popularity": -0.488, "topicSearchString": "react-native ios react-component react component android listview scrollview scrollview-component" }, { @@ -11257,8 +11266,8 @@ "unmaintained": true, "npmPkg": "react-native-percentage-circle", "npm": { - "downloads": 316, - "weekDownloads": 40, + "downloads": 317, + "weekDownloads": 42, "size": 9057, "latestRelease": "1.0.7", "latestReleaseDate": "2018-05-03T05:39:55.301Z" @@ -11269,7 +11278,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.392, + "popularity": -1.386, "topicSearchString": "percentage circle progress bar react-native percent" }, { @@ -11326,8 +11335,8 @@ "unmaintained": true, "npmPkg": "react-native-image-header-scroll-view", "npm": { - "downloads": 4585, - "weekDownloads": 1132, + "downloads": 4317, + "weekDownloads": 1008, "size": 10207203, "latestRelease": "1.0.0", "latestReleaseDate": "2020-11-19T18:42:56.296Z" @@ -11339,7 +11348,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.54, + "popularity": -0.551, "topicSearchString": "react-native scrollview animation navbar react-component ios android" }, { @@ -11391,8 +11400,8 @@ }, "npmPkg": "react-native-fade-in-image", "npm": { - "downloads": 261453, - "weekDownloads": 60212, + "downloads": 249107, + "weekDownloads": 57731, "size": 5238, "latestRelease": "1.6.1", "latestReleaseDate": "2021-06-07T19:11:06.288Z" @@ -11403,7 +11412,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.554, + "popularity": -0.553, "topicSearchString": "" }, { @@ -11462,8 +11471,8 @@ "unmaintained": true, "npmPkg": "react-native-flip-card", "npm": { - "downloads": 34475, - "weekDownloads": 6154, + "downloads": 33165, + "weekDownloads": 6405, "size": 14146, "latestRelease": "3.5.7", "latestReleaseDate": "2023-02-13T14:43:53.130Z" @@ -11474,7 +11483,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, + "popularity": -0.586, "topicSearchString": "react-component react-native ios android card flip react card-component animation" }, { @@ -11531,8 +11540,8 @@ }, "npmPkg": "react-native-fcm", "npm": { - "downloads": 961, - "weekDownloads": 57, + "downloads": 959, + "weekDownloads": 59, "size": 174616, "latestRelease": "16.2.4", "latestReleaseDate": "2018-11-04T01:41:40.202Z" @@ -11545,7 +11554,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.45, + "popularity": -1.448, "topicSearchString": "react-native ios android fcm firebase cloud-messaging notifications local-notifications" }, { @@ -11605,8 +11614,8 @@ "unmaintained": true, "npmPkg": "react-native-easy-toast", "npm": { - "downloads": 26455, - "weekDownloads": 4875, + "downloads": 25743, + "weekDownloads": 4889, "size": 17091, "latestRelease": "2.3.0", "latestReleaseDate": "2022-11-18T11:39:30.760Z" @@ -11618,7 +11627,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.589, "topicSearchString": "react-native component toast toast-ios alert react-component navigator ios android react-toast" }, { @@ -11677,8 +11686,8 @@ "unmaintained": true, "npmPkg": "react-native-mentions", "npm": { - "downloads": 903, - "weekDownloads": 190, + "downloads": 881, + "weekDownloads": 185, "latestRelease": "1.1.4", "latestReleaseDate": "2018-01-09T17:19:40.466Z" }, @@ -11744,7 +11753,7 @@ "npmPkg": "react-native-carousel-control", "npm": { "downloads": 323, - "weekDownloads": 67, + "weekDownloads": 77, "latestRelease": "2.0.1", "latestReleaseDate": "2017-10-31T12:56:59.163Z" }, @@ -11754,7 +11763,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.324, + "popularity": -1.297, "topicSearchString": "react native carousel ios android" }, { @@ -11810,8 +11819,8 @@ "unmaintained": true, "npmPkg": "react-native-settings-list", "npm": { - "downloads": 7662, - "weekDownloads": 1844, + "downloads": 7068, + "weekDownloads": 1614, "latestRelease": "1.8.0", "latestReleaseDate": "2017-11-04T02:36:51.653Z" }, @@ -11821,7 +11830,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.545, + "popularity": -0.556, "topicSearchString": "react-native react-component ios android settings-list settings" }, { @@ -11876,8 +11885,8 @@ "unmaintained": true, "npmPkg": "react-native-clean-form", "npm": { - "downloads": 149, - "weekDownloads": 26, + "downloads": 145, + "weekDownloads": 19, "latestRelease": "0.5.0", "latestReleaseDate": "2018-01-03T15:59:24.835Z" }, @@ -11887,7 +11896,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.351, + "popularity": -1.388, "topicSearchString": "react-native redux-form immutable.js styled-components redux" }, { @@ -11943,8 +11952,8 @@ }, "npmPkg": "react-native-accordion", "npm": { - "downloads": 278, - "weekDownloads": 101, + "downloads": 271, + "weekDownloads": 103, "latestRelease": "1.0.1", "latestReleaseDate": "2016-07-27T03:33:50.723Z" }, @@ -11954,7 +11963,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.189, + "popularity": -1.173, "topicSearchString": "react-native react native accordion react-component component" }, { @@ -12011,8 +12020,8 @@ }, "npmPkg": "react-native-viewpager", "npm": { - "downloads": 1710, - "weekDownloads": 340, + "downloads": 1658, + "weekDownloads": 300, "latestRelease": "0.2.13", "latestReleaseDate": "2016-10-27T05:25:25.971Z" }, @@ -12024,7 +12033,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.581, + "popularity": -0.596, "topicSearchString": "component react-component react-native ios android viewpager pager" }, { @@ -12076,8 +12085,8 @@ }, "npmPkg": "react-native-dropdown", "npm": { - "downloads": 1413, - "weekDownloads": 230, + "downloads": 1374, + "weekDownloads": 249, "latestRelease": "0.0.6", "latestReleaseDate": "2015-12-10T19:39:19.305Z" }, @@ -12088,7 +12097,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.611, + "popularity": -0.596, "topicSearchString": "react-component react-native" }, { @@ -12143,8 +12152,8 @@ }, "npmPkg": "react-native-chooser", "npm": { - "downloads": 1201, - "weekDownloads": 16, + "downloads": 1205, + "weekDownloads": 24, "latestRelease": "1.7.0", "latestReleaseDate": "2017-11-29T07:51:25.707Z" }, @@ -12154,7 +12163,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.739, + "popularity": -0.733, "topicSearchString": "react-native chooser select picker select-tag" }, { @@ -12211,8 +12220,8 @@ "configPlugin": false }, "npm": { - "downloads": 85273, - "weekDownloads": 16575, + "downloads": 81562, + "weekDownloads": 16605, "size": 119993, "latestRelease": "8.0.5", "latestReleaseDate": "2024-07-26T14:49:48.954Z" @@ -12225,7 +12234,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.173, "topicSearchString": "calendar picker date day calendar-picker-component component calendarpicker calendar-picker" }, { @@ -12287,8 +12296,8 @@ }, "npmPkg": "react-native-autocomplete-input", "npm": { - "downloads": 55588, - "weekDownloads": 10684, + "downloads": 53392, + "weekDownloads": 11104, "size": 10285, "latestRelease": "5.5.6", "latestReleaseDate": "2025-01-24T22:10:43.637Z" @@ -12300,7 +12309,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.177, "topicSearchString": "react-native ios input android autocomplete" }, { @@ -12354,8 +12363,8 @@ "unmaintained": true, "npmPkg": "react-native-tabs", "npm": { - "downloads": 8530, - "weekDownloads": 1491, + "downloads": 8244, + "weekDownloads": 1528, "latestRelease": "1.0.9", "latestReleaseDate": "2016-07-07T11:40:18.108Z" }, @@ -12366,7 +12375,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, + "popularity": -0.592, "topicSearchString": "react-native react-components tabbar tabs" }, { @@ -12418,8 +12427,8 @@ "unmaintained": true, "npmPkg": "react-native-easy-grid", "npm": { - "downloads": 52787, - "weekDownloads": 9367, + "downloads": 50762, + "weekDownloads": 9724, "size": 89860, "latestRelease": "0.2.2", "latestReleaseDate": "2019-08-12T04:06:26.368Z" @@ -12431,7 +12440,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.587, "topicSearchString": "" }, { @@ -12491,8 +12500,8 @@ }, "npmPkg": "react-native-radio-buttons", "npm": { - "downloads": 3139, - "weekDownloads": 584, + "downloads": 3000, + "weekDownloads": 544, "latestRelease": "1.0.0", "latestReleaseDate": "2017-07-19T09:15:22.306Z" }, @@ -12502,7 +12511,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.596, "topicSearchString": "react-component react-native ios radio-buttons radio segmentedcontrols segmented-controls" }, { @@ -12560,8 +12569,8 @@ "unmaintained": true, "npmPkg": "react-native-gesture-password", "npm": { - "downloads": 350, - "weekDownloads": 40, + "downloads": 346, + "weekDownloads": 35, "size": 72437, "latestRelease": "0.4.0", "latestReleaseDate": "2019-12-12T02:58:46.394Z" @@ -12572,7 +12581,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.402, + "popularity": -1.414, "topicSearchString": "react-component react-native ios android gesture-password javascript interval react" }, { @@ -12621,8 +12630,8 @@ }, "npmPkg": "react-native-calendar", "npm": { - "downloads": 4345, - "weekDownloads": 457, + "downloads": 4251, + "weekDownloads": 443, "latestRelease": "0.13.1", "latestReleaseDate": "2017-10-12T12:32:01.436Z" }, @@ -12689,8 +12698,8 @@ "unmaintained": true, "npmPkg": "react-native-simple-store", "npm": { - "downloads": 2238, - "weekDownloads": 269, + "downloads": 2241, + "weekDownloads": 268, "size": 288592, "latestRelease": "2.0.2", "latestReleaseDate": "2019-09-23T17:31:18.959Z" @@ -12775,8 +12784,8 @@ "unmaintained": true, "npmPkg": "react-native-loading-spinner-overlay", "npm": { - "downloads": 62404, - "weekDownloads": 12352, + "downloads": 60433, + "weekDownloads": 12302, "size": 19209, "latestRelease": "3.0.1", "latestReleaseDate": "2022-07-28T15:28:53.957Z" @@ -12788,7 +12797,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, + "popularity": -0.577, "topicSearchString": "activity android bar full indicator ios loading modal native pop-up popup progress react react-native screen spinner view overlay portal progress-bar" }, { @@ -12846,8 +12855,8 @@ }, "npmPkg": "react-native-parallax-scroll-view", "npm": { - "downloads": 7869, - "weekDownloads": 1735, + "downloads": 7526, + "weekDownloads": 1707, "size": 21543, "latestRelease": "0.21.3", "latestReleaseDate": "2018-06-20T11:28:46.845Z" @@ -12860,7 +12869,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.187, + "popularity": 0.193, "topicSearchString": "react-native react parallax scrollable scrollview sticky react-component ios android" }, { @@ -12912,8 +12921,8 @@ }, "npmPkg": "react-native-tabbar", "npm": { - "downloads": 1874, - "weekDownloads": 21, + "downloads": 1872, + "weekDownloads": 20, "latestRelease": "1.0.0", "latestReleaseDate": "2016-08-01T01:12:24.079Z" }, @@ -12923,7 +12932,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.74, + "popularity": -0.741, "topicSearchString": "react-native tabbar" }, { @@ -12981,8 +12990,8 @@ }, "npmPkg": "react-native-message-bar", "npm": { - "downloads": 2597, - "weekDownloads": 391, + "downloads": 2499, + "weekDownloads": 417, "size": 35762, "latestRelease": "2.1.0", "latestReleaseDate": "2021-01-31T00:22:24.152Z" @@ -12993,7 +13002,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.622, + "popularity": -0.608, "topicSearchString": "react-native react native message bar alert notification status" }, { @@ -13050,7 +13059,7 @@ "unmaintained": true, "npmPkg": "react-native-floating-label-text-input", "npm": { - "downloads": 244, + "downloads": 253, "weekDownloads": 14, "latestRelease": "0.1.5", "latestReleaseDate": "2017-07-30T06:43:00.346Z" @@ -13061,7 +13070,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.451, + "popularity": -1.453, "topicSearchString": "react-native react-component ios animated floating text-input text-field" }, { @@ -13120,8 +13129,8 @@ }, "npmPkg": "react-native-progress-hud", "npm": { - "downloads": 148, - "weekDownloads": 38, + "downloads": 147, + "weekDownloads": 36, "latestRelease": "1.0.4", "latestReleaseDate": "2016-04-20T14:10:06.888Z" }, @@ -13131,7 +13140,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.276, + "popularity": -1.288, "topicSearchString": "react native progress hud popup spinner loader loading react-component" }, { @@ -13187,8 +13196,8 @@ }, "npmPkg": "react-native-country-picker-modal", "npm": { - "downloads": 293700, - "weekDownloads": 58108, + "downloads": 286880, + "weekDownloads": 58985, "size": 267693, "latestRelease": "2.0.0", "latestReleaseDate": "2020-07-30T07:06:27.893Z" @@ -13199,7 +13208,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.175, "topicSearchString": "react-native components country-picker country flag countries modal" }, { @@ -13255,8 +13264,8 @@ "unmaintained": true, "npmPkg": "react-native-awesome-button", "npm": { - "downloads": 47, - "weekDownloads": 4, + "downloads": 48, + "weekDownloads": 5, "latestRelease": "1.8.2", "latestReleaseDate": "2017-02-23T14:53:37.886Z" }, @@ -13266,7 +13275,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.427, + "popularity": -1.409, "topicSearchString": "react react-native react-component button awesome-button react-ui" }, { @@ -13321,8 +13330,8 @@ "unmaintained": true, "npmPkg": "react-native-svg-uri", "npm": { - "downloads": 22937, - "weekDownloads": 4770, + "downloads": 21991, + "weekDownloads": 4634, "latestRelease": "1.2.3", "latestReleaseDate": "2017-11-16T12:38:43.338Z" }, @@ -13334,7 +13343,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.573, + "popularity": -0.571, "topicSearchString": "react-native svg url uri http" }, { @@ -13399,8 +13408,8 @@ }, "npmPkg": "react-native-deck-swiper", "npm": { - "downloads": 35226, - "weekDownloads": 6933, + "downloads": 35018, + "weekDownloads": 7243, "size": 2319587, "latestRelease": "2.0.19", "latestReleaseDate": "2025-08-12T13:43:12.328Z" @@ -13410,7 +13419,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.176, "topicSearchString": "react-native component tinder cards card swipe swiper deck animation" }, { @@ -13470,7 +13479,7 @@ }, "npmPkg": "react-native-webbrowser", "npm": { - "downloads": 32, + "downloads": 33, "weekDownloads": 1, "latestRelease": "0.0.6", "latestReleaseDate": "2016-03-18T22:23:40.161Z" @@ -13538,8 +13547,8 @@ }, "npmPkg": "react-native-circular-action-menu", "npm": { - "downloads": 378, - "weekDownloads": 77, + "downloads": 380, + "weekDownloads": 75, "size": 351734, "latestRelease": "0.5.0", "latestReleaseDate": "2018-03-24T23:04:00.557Z" @@ -13550,7 +13559,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.325, + "popularity": -1.331, "topicSearchString": "react-native action-button float-button multi-action-button circular-menu arc-menu satellite-menu" }, { @@ -13677,8 +13686,8 @@ "unmaintained": true, "npmPkg": "react-native-segmented-control-tab", "npm": { - "downloads": 207430, - "weekDownloads": 23518, + "downloads": 206777, + "weekDownloads": 30059, "size": 31987, "latestRelease": "4.0.0", "latestReleaseDate": "2021-08-26T20:19:00.819Z" @@ -13690,7 +13699,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.654, + "popularity": -0.626, "topicSearchString": "react-native custom component segmentedcontrolios segmentedcontroltab ios android controlled-segmentedcontroltab" }, { @@ -13743,8 +13752,8 @@ }, "npmPkg": "react-native-atoz-list", "npm": { - "downloads": 4096, - "weekDownloads": 536, + "downloads": 4066, + "weekDownloads": 535, "size": 287850, "latestRelease": "1.0.5", "latestReleaseDate": "2020-02-25T13:41:46.935Z" @@ -13755,7 +13764,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.639, + "popularity": -0.638, "topicSearchString": "selectlist alphabetlist contactlist" }, { @@ -13809,8 +13818,8 @@ "configPlugin": false }, "npm": { - "downloads": 1932, - "weekDownloads": 475, + "downloads": 1847, + "weekDownloads": 455, "size": 5962, "latestRelease": "2.0.0", "latestReleaseDate": "2018-06-26T21:17:47.807Z" @@ -13821,7 +13830,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.541, + "popularity": -0.54, "topicSearchString": "react-native responsive image pixel-ratio" }, { @@ -13873,7 +13882,7 @@ "configPlugin": false }, "npm": { - "downloads": 44, + "downloads": 48, "weekDownloads": 3, "latestRelease": "4.0.0", "latestReleaseDate": "2018-01-31T18:01:53.054Z" @@ -13883,7 +13892,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.69, + "popularity": -1.695, "topicSearchString": "react-native link" }, { @@ -13938,8 +13947,8 @@ }, "npmPkg": "react-native-emoji-picker", "npm": { - "downloads": 623, - "weekDownloads": 159, + "downloads": 589, + "weekDownloads": 146, "latestRelease": "0.2.2", "latestReleaseDate": "2016-08-01T13:28:52.091Z" }, @@ -13948,7 +13957,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.282, + "popularity": -1.288, "topicSearchString": "react-native react-component ios emoji emoji-picker" }, { @@ -14002,8 +14011,8 @@ "configPlugin": false }, "npm": { - "downloads": 41, - "weekDownloads": 4, + "downloads": 52, + "weekDownloads": 3, "latestRelease": "1.1.1", "latestReleaseDate": "2016-09-09T09:54:37.059Z" }, @@ -14012,7 +14021,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.411, + "popularity": -1.45, "topicSearchString": "react-native smart badge component" }, { @@ -14068,8 +14077,8 @@ }, "npmPkg": "tcomb-form-native", "npm": { - "downloads": 13409, - "weekDownloads": 1710, + "downloads": 13164, + "weekDownloads": 2009, "size": 189906, "latestRelease": "0.6.20", "latestReleaseDate": "2018-10-11T09:07:58.706Z" @@ -14082,7 +14091,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.642, + "popularity": -0.62, "topicSearchString": "tcomb form forms react react-native react-component" }, { @@ -14136,8 +14145,8 @@ }, "npmPkg": "react-native-infinite-scroll-view", "npm": { - "downloads": 41583, - "weekDownloads": 8153, + "downloads": 39765, + "weekDownloads": 7699, "size": 55756, "latestRelease": "0.4.5", "latestReleaseDate": "2018-08-28T21:38:16.977Z" @@ -14148,7 +14157,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.583, + "popularity": -0.585, "topicSearchString": "react-native infinite pagination scroll-view" }, { @@ -14201,8 +14210,8 @@ "unmaintained": true, "npmPkg": "react-native-invertible-scroll-view", "npm": { - "downloads": 4846, - "weekDownloads": 841, + "downloads": 4747, + "weekDownloads": 916, "size": 13028, "latestRelease": "2.0.0", "latestReleaseDate": "2019-07-23T18:56:21.467Z" @@ -14213,7 +14222,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": -0.586, "topicSearchString": "react-native invertible scroll-view" }, { @@ -14268,8 +14277,8 @@ }, "npmPkg": "react-native-root-modal", "npm": { - "downloads": 2096, - "weekDownloads": 499, + "downloads": 1936, + "weekDownloads": 453, "size": 7122, "latestRelease": "5.0.1", "latestReleaseDate": "2021-03-03T08:00:41.624Z" @@ -14280,7 +14289,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.202, + "popularity": 0.199, "topicSearchString": "react-component react-native ios android modal popover" }, { @@ -14334,8 +14343,8 @@ }, "npmPkg": "react-native-emoji", "npm": { - "downloads": 9688, - "weekDownloads": 1656, + "downloads": 9395, + "weekDownloads": 1686, "size": 3197, "latestRelease": "1.8.0", "latestReleaseDate": "2019-06-05T17:35:14.441Z" @@ -14346,7 +14355,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, + "popularity": -0.597, "topicSearchString": "react-native emoji react-component ios" }, { @@ -14371,7 +14380,7 @@ "forks": 123, "issues": 40, "subscribers": 5, - "stars": 417, + "stars": 418, "dependencies": 3 }, "name": "react-native-simple-markdown", @@ -14406,8 +14415,8 @@ "unmaintained": true, "npmPkg": "react-native-simple-markdown", "npm": { - "downloads": 5066, - "weekDownloads": 899, + "downloads": 4876, + "weekDownloads": 827, "latestRelease": "1.1.0", "latestReleaseDate": "2018-01-18T08:07:20.100Z" }, @@ -14417,7 +14426,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.606, "topicSearchString": "react-native native markdown md parse parser ios android react library" }, { @@ -14474,8 +14483,8 @@ "unmaintained": true, "npmPkg": "react-native-statusbar-alert", "npm": { - "downloads": 1373, - "weekDownloads": 331, + "downloads": 1249, + "weekDownloads": 241, "latestRelease": "0.4.0", "latestReleaseDate": "2017-10-16T07:14:37.134Z" }, @@ -14485,7 +14494,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.545, + "popularity": -0.585, "topicSearchString": "react-native status-bar alert banner ios android statusbar" }, { @@ -14542,8 +14551,8 @@ "unmaintained": true, "npmPkg": "react-native-text", "npm": { - "downloads": 2628, - "weekDownloads": 394, + "downloads": 2604, + "weekDownloads": 403, "size": 19122, "latestRelease": "1.2.2", "latestReleaseDate": "2021-05-11T06:51:59.171Z" @@ -14554,7 +14563,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.622, + "popularity": -0.618, "topicSearchString": "react-native scaled ios android text react" }, { @@ -14617,8 +14626,8 @@ "unmaintained": true, "npmPkg": "react-native-immutable-list-view", "npm": { - "downloads": 776, - "weekDownloads": 119, + "downloads": 752, + "weekDownloads": 137, "size": 129212, "latestRelease": "2.0.0", "latestReleaseDate": "2019-10-19T01:55:35.246Z" @@ -14629,7 +14638,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.369, + "popularity": -1.344, "topicSearchString": "react listview datasource pure immutable list map set react-native immutablejs component flatlist virtualizedlist" }, { @@ -14690,8 +14699,8 @@ "unmaintained": true, "npmPkg": "react-native-search-header", "npm": { - "downloads": 392, - "weekDownloads": 39, + "downloads": 375, + "weekDownloads": 26, "size": 1669279, "latestRelease": "0.3.5", "latestReleaseDate": "2019-09-09T22:28:24.157Z" @@ -14702,7 +14711,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.415, + "popularity": -1.441, "topicSearchString": "search-header react-native android ios search header mobile material-design component ui uikit" }, { @@ -14758,7 +14767,7 @@ "unmaintained": true, "npmPkg": "react-native-device-monitor", "npm": { - "downloads": 12, + "downloads": 14, "weekDownloads": 0, "latestRelease": "2.0.0", "latestReleaseDate": "2017-10-25T16:05:41.345Z" @@ -14775,6 +14784,7 @@ "githubUrl": "https://github.com/callstack/react-native-fbads", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/callstack/react-native-fbads", @@ -14824,8 +14834,8 @@ "unmaintained": true, "npmPkg": "react-native-fbads", "npm": { - "downloads": 1927, - "weekDownloads": 342, + "downloads": 2763, + "weekDownloads": 325, "size": 212607, "latestRelease": "7.1.1", "latestReleaseDate": "2023-08-17T07:58:18.332Z" @@ -14836,7 +14846,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.65, "topicSearchString": "react-native facebook audience-network native-ads facebook-sdk javascript" }, { @@ -14844,6 +14854,7 @@ "ios": true, "android": true, "npmPkg": "react-native-branch", + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/react-native-branch", "github": { "urls": { "repo": "https://github.com/BranchMetrics/react-native-branch-deep-linking-attribution", @@ -14899,8 +14910,8 @@ "configPlugin": false }, "npm": { - "downloads": 474616, - "weekDownloads": 99144, + "downloads": 458163, + "weekDownloads": 99565, "size": 240896, "latestRelease": "6.8.0", "latestReleaseDate": "2025-07-22T16:41:27.839Z" @@ -14911,7 +14922,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.185, "topicSearchString": "react-native react-component ios android branch metrics deeplink deep link attribution universal-links app-links analytics react deep-linking" }, { @@ -14968,8 +14979,8 @@ "unmaintained": true, "npmPkg": "react-native-social-auth", "npm": { - "downloads": 407, - "weekDownloads": 49, + "downloads": 404, + "weekDownloads": 68, "latestRelease": "2.0.0", "latestReleaseDate": "2017-08-02T16:40:41.429Z" }, @@ -14978,7 +14989,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.397, + "popularity": -1.357, "topicSearchString": "react-native module auth ios android facebook twitter native" }, { @@ -15037,8 +15048,8 @@ }, "npmPkg": "react-native-keep-awake", "npm": { - "downloads": 150224, - "weekDownloads": 34922, + "downloads": 142340, + "weekDownloads": 32146, "size": 26051, "latestRelease": "4.0.0", "latestReleaseDate": "2018-10-28T22:11:26.129Z" @@ -15050,7 +15061,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.552, + "popularity": -0.558, "topicSearchString": "react-native ios android awake screen lock sleep" }, { @@ -15116,8 +15127,8 @@ "unmaintained": true, "npmPkg": "react-native-send-intent", "npm": { - "downloads": 33530, - "weekDownloads": 7006, + "downloads": 31882, + "weekDownloads": 7031, "size": 59468, "latestRelease": "1.3.0", "latestReleaseDate": "2021-09-28T12:20:30.889Z" @@ -15128,7 +15139,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.572, + "popularity": -0.563, "topicSearchString": "react react-native react-component intent email send sent share text phone sms call calls dial number maps android" }, { @@ -15180,8 +15191,8 @@ "unmaintained": true, "npmPkg": "react-native-android-statusbar", "npm": { - "downloads": 53, - "weekDownloads": 3, + "downloads": 52, + "weekDownloads": 1, "latestRelease": "0.1.3", "latestReleaseDate": "2016-08-16T14:49:49.829Z" }, @@ -15190,7 +15201,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.45, + "popularity": -1.483, "topicSearchString": "react-component react-native android" }, { @@ -15245,8 +15256,8 @@ "unmaintained": true, "npmPkg": "react-native-smart-splash-screen", "npm": { - "downloads": 472, - "weekDownloads": 23, + "downloads": 470, + "weekDownloads": 21, "latestRelease": "2.3.5", "latestReleaseDate": "2017-08-17T11:33:32.341Z" }, @@ -15256,7 +15267,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.459, + "popularity": -1.462, "topicSearchString": "react-native smart splash screen splashscreen component" }, { @@ -15316,8 +15327,8 @@ "unmaintained": true, "npmPkg": "rn-splash-screen", "npm": { - "downloads": 118, - "weekDownloads": 10, + "downloads": 116, + "weekDownloads": 8, "latestRelease": "5.2.0", "latestReleaseDate": "2017-09-12T00:03:14.833Z" }, @@ -15327,7 +15338,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.426, + "popularity": -1.441, "topicSearchString": "react-native react-component ios android splashscreen splash launchui show hide mobile splash-screen" }, { @@ -15382,8 +15393,8 @@ "unmaintained": true, "npmPkg": "react-native-effects-view", "npm": { - "downloads": 74, - "weekDownloads": 28, + "downloads": 68, + "weekDownloads": 23, "latestRelease": "0.4.0", "latestReleaseDate": "2016-09-02T19:00:55.877Z" }, @@ -15393,7 +15404,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.171, + "popularity": -1.212, "topicSearchString": "react react-native react-component ios blur uiview view" }, { @@ -15447,8 +15458,8 @@ "unmaintained": true, "npmPkg": "react-native-location", "npm": { - "downloads": 14896, - "weekDownloads": 2674, + "downloads": 14454, + "weekDownloads": 2588, "size": 583629, "latestRelease": "2.5.0", "latestReleaseDate": "2019-08-10T21:59:20.669Z" @@ -15460,7 +15471,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.598, "topicSearchString": "react-native react-component ios android location" }, { @@ -15468,6 +15479,7 @@ "ios": true, "android": true, "windows": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/zoontek/react-native-permissions", @@ -15485,7 +15497,7 @@ "forks": 766, "issues": 9, "subscribers": 34, - "stars": 4280, + "stars": 4281, "dependencies": 0 }, "name": "react-native-permissions", @@ -15516,8 +15528,8 @@ }, "npmPkg": "react-native-permissions", "npm": { - "downloads": 2152913, - "weekDownloads": 428145, + "downloads": 2088028, + "weekDownloads": 435220, "size": 427050, "latestRelease": "5.4.2", "latestReleaseDate": "2025-07-22T17:24:24.646Z" @@ -15529,7 +15541,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.177, "topicSearchString": "react-native windows permission authorization react permissions" }, { @@ -15588,22 +15600,21 @@ }, "npmPkg": "react-native-view-shot", "npm": { - "downloads": 1239906, - "weekDownloads": 248349, + "downloads": 1207924, + "weekDownloads": 250170, "size": 1721726, "latestRelease": "4.0.3", "latestReleaseDate": "2024-12-06T21:21:10.380Z" }, - "score": 70, + "score": 46, "matchingScoreModifiers": [ - "Very popular", "Popular", "Known", "Lots of open issues", "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.176, "topicSearchString": "react-native screenshot viewshot view-snapshot snapshot rasterize capture" }, { @@ -15667,8 +15678,8 @@ "unmaintained": true, "npmPkg": "react-native-safari-view", "npm": { - "downloads": 35812, - "weekDownloads": 6476, + "downloads": 34810, + "weekDownloads": 6511, "latestRelease": "2.1.0", "latestReleaseDate": "2017-10-02T15:25:24.353Z" }, @@ -15678,7 +15689,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.591, "topicSearchString": "react-native react native webview web view safari safariview react-component component apple safari-view-controller" }, { @@ -15733,8 +15744,8 @@ "unmaintained": true, "npmPkg": "react-native-oauth", "npm": { - "downloads": 8753, - "weekDownloads": 590, + "downloads": 8728, + "weekDownloads": 604, "size": 54105060, "latestRelease": "2.1.18", "latestReleaseDate": "2018-07-29T21:51:17.724Z" @@ -15747,7 +15758,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.693, + "popularity": -0.691, "topicSearchString": "react react-native firestack firebase oauth twitter" }, { @@ -15804,8 +15815,8 @@ }, "npmPkg": "react-native-motion-manager", "npm": { - "downloads": 285, - "weekDownloads": 7, + "downloads": 286, + "weekDownloads": 5, "latestRelease": "0.0.7", "latestReleaseDate": "2017-09-27T12:17:54.830Z" }, @@ -15815,7 +15826,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.479, + "popularity": -1.485, "topicSearchString": "react-component react-native ios cmmotionmanager motionmanager gyroscope accelerometer magnetometer" }, { @@ -15874,8 +15885,8 @@ "unmaintained": true, "npmPkg": "rn-apple-healthkit", "npm": { - "downloads": 1070, - "weekDownloads": 194, + "downloads": 1092, + "weekDownloads": 224, "size": 259249, "latestRelease": "0.8.0", "latestReleaseDate": "2020-01-21T15:34:44.210Z" @@ -15887,7 +15898,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, + "popularity": -0.575, "topicSearchString": "apple health-kit healthkit reactnative react-native react native ios" }, { @@ -15912,7 +15923,7 @@ "createdAt": "2015-10-16T06:35:30Z", "pushedAt": "2025-09-03T23:41:51Z", "forks": 562, - "issues": 5, + "issues": 6, "subscribers": 26, "stars": 1679, "dependencies": 0 @@ -15948,8 +15959,8 @@ }, "npmPkg": "react-native-contacts", "npm": { - "downloads": 235356, - "weekDownloads": 47390, + "downloads": 226939, + "weekDownloads": 47350, "size": 305189, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-03T23:44:18.566Z" @@ -15960,7 +15971,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.177, "topicSearchString": "react-native react react-component addressbook contacts ios android component phone mobile" }, { @@ -16012,8 +16023,8 @@ "unmaintained": true, "npmPkg": "react-native-background-job", "npm": { - "downloads": 2927, - "weekDownloads": 592, + "downloads": 2871, + "weekDownloads": 578, "size": 118071, "latestRelease": "2.3.1", "latestReleaseDate": "2019-08-02T14:35:33.022Z" @@ -16025,7 +16036,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.578, + "popularity": -0.579, "topicSearchString": "react-native background-job scheduled-jobs background-jobs" }, { @@ -16079,8 +16090,8 @@ }, "npmPkg": "react-native-geocoder", "npm": { - "downloads": 13142, - "weekDownloads": 2009, + "downloads": 13008, + "weekDownloads": 2125, "latestRelease": "0.5.0", "latestReleaseDate": "2017-10-11T13:10:35.420Z" }, @@ -16090,7 +16101,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.62, + "popularity": -0.611, "topicSearchString": "react-component react-native geocoding ios android" }, { @@ -16143,7 +16154,7 @@ "npmPkg": "react-native-orientation-listener", "npm": { "downloads": 88, - "weekDownloads": 2, + "weekDownloads": 5, "latestRelease": "0.0.4", "latestReleaseDate": "2016-03-07T01:32:49.989Z" }, @@ -16153,7 +16164,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.48, + "popularity": -1.45, "topicSearchString": "react-native orientation device-orientation" }, { @@ -16211,7 +16222,7 @@ }, "npmPkg": "react-native-device-display", "npm": { - "downloads": 61, + "downloads": 62, "weekDownloads": 2, "latestRelease": "1.0.4", "latestReleaseDate": "2015-07-24T12:53:31.048Z" @@ -16232,6 +16243,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/transistorsoft/react-native-background-fetch", @@ -16249,7 +16261,7 @@ "forks": 190, "issues": 0, "subscribers": 21, - "stars": 1583, + "stars": 1584, "dependencies": 0 }, "name": "react-native-background-fetch", @@ -16278,8 +16290,8 @@ }, "npmPkg": "react-native-background-fetch", "npm": { - "downloads": 227296, - "weekDownloads": 41141, + "downloads": 220218, + "weekDownloads": 41339, "size": 2021445, "latestRelease": "4.2.8", "latestReleaseDate": "2025-05-02T13:36:50.699Z" @@ -16290,7 +16302,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.16, "topicSearchString": "react-native react-component ios background fetch" }, { @@ -16347,8 +16359,8 @@ }, "npmPkg": "react-native-stripe", "npm": { - "downloads": 155, - "weekDownloads": 10, + "downloads": 153, + "weekDownloads": 7, "latestRelease": "1.2.2", "latestReleaseDate": "2017-05-01T12:37:02.644Z" }, @@ -16357,7 +16369,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.444, + "popularity": -1.461, "topicSearchString": "android ios login native react react-component react-native sdk stripe" }, { @@ -16415,7 +16427,7 @@ "npmPkg": "react-native-speech", "npm": { "downloads": 113, - "weekDownloads": 19, + "weekDownloads": 20, "latestRelease": "0.1.2", "latestReleaseDate": "2016-01-09T20:44:09.432Z" }, @@ -16425,7 +16437,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.354, + "popularity": -1.346, "topicSearchString": "react-native react native siri speech speak speech-to-text react-component component" }, { @@ -16474,8 +16486,8 @@ }, "npmPkg": "react-native-wordpress-editor", "npm": { - "downloads": 8760, - "weekDownloads": 1895, + "downloads": 8875, + "weekDownloads": 1973, "latestRelease": "2.0.1", "latestReleaseDate": "2016-11-20T16:50:28.964Z" }, @@ -16487,7 +16499,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.566, + "popularity": -0.561, "topicSearchString": "" }, { @@ -16539,8 +16551,8 @@ "unmaintained": true, "npmPkg": "react-native-search-bar", "npm": { - "downloads": 2549, - "weekDownloads": 430, + "downloads": 2536, + "weekDownloads": 484, "size": 59417, "latestRelease": "3.5.1", "latestReleaseDate": "2019-10-20T12:37:56.570Z" @@ -16552,7 +16564,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.588, "topicSearchString": "search-bar react-component react-native ios" }, { @@ -16680,8 +16692,8 @@ }, "npmPkg": "react-native-directed-scrollview", "npm": { - "downloads": 108, - "weekDownloads": 7, + "downloads": 107, + "weekDownloads": 5, "size": 48332, "latestRelease": "2.0.0", "latestReleaseDate": "2018-12-15T21:28:09.576Z" @@ -16692,7 +16704,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.444, + "popularity": -1.46, "topicSearchString": "react-component react-native ios android scrollview horizontal vertical direction native scroll react javascript reactnative" }, { @@ -16753,8 +16765,8 @@ }, "npmPkg": "react-native-keyboard-input", "npm": { - "downloads": 2965, - "weekDownloads": 332, + "downloads": 2937, + "weekDownloads": 438, "size": 566469, "latestRelease": "6.0.2", "latestReleaseDate": "2020-07-05T14:34:55.296Z" @@ -16766,7 +16778,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.655, + "popularity": -0.623, "topicSearchString": "react-native react react-component custom-input input ios android keyboard-input keyboard keyboard-component inputaccessoryview" }, { @@ -16819,8 +16831,8 @@ }, "npmPkg": "react-native-privacy-snapshot", "npm": { - "downloads": 499, - "weekDownloads": 87, + "downloads": 491, + "weekDownloads": 91, "latestRelease": "1.0.0", "latestReleaseDate": "2015-10-07T04:29:45.840Z" }, @@ -16830,7 +16842,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.351, + "popularity": -1.342, "topicSearchString": "react-native react-component privacy snapshot secure" }, { @@ -16885,8 +16897,8 @@ "unmaintained": true, "npmPkg": "react-native-android-sms-listener", "npm": { - "downloads": 1313, - "weekDownloads": 291, + "downloads": 1316, + "weekDownloads": 293, "size": 12426, "latestRelease": "0.8.0", "latestReleaseDate": "2020-09-09T12:29:22.306Z" @@ -16897,7 +16909,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.561, + "popularity": -0.56, "topicSearchString": "react native react-native android sms listener sms-listener" }, { @@ -16955,8 +16967,8 @@ "unmaintained": true, "npmPkg": "react-native-network-info", "npm": { - "downloads": 62429, - "weekDownloads": 11920, + "downloads": 60034, + "weekDownloads": 12381, "size": 76749, "latestRelease": "5.2.1", "latestReleaseDate": "2019-09-30T21:50:41.952Z" @@ -16967,7 +16979,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.588, + "popularity": -0.575, "topicSearchString": "react-component react-native ios network lan android-library ios-lib android networking" }, { @@ -17015,8 +17027,8 @@ "unmaintained": true, "npmPkg": "rn-nodeify", "npm": { - "downloads": 69652, - "weekDownloads": 12751, + "downloads": 68010, + "weekDownloads": 13228, "size": 44267, "latestRelease": "10.3.0", "latestReleaseDate": "2021-04-19T16:37:11.401Z" @@ -17027,7 +17039,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.585, "topicSearchString": "" }, { @@ -17078,8 +17090,8 @@ "unmaintained": true, "npmPkg": "react-native-extra-dimensions-android", "npm": { - "downloads": 19137, - "weekDownloads": 4958, + "downloads": 18369, + "weekDownloads": 5071, "size": 1238433, "latestRelease": "1.2.5", "latestReleaseDate": "2019-04-02T23:28:46.770Z" @@ -17090,7 +17102,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.53, + "popularity": -0.515, "topicSearchString": "react-native react android" }, { @@ -17148,8 +17160,8 @@ }, "npmPkg": "react-native-proximity", "npm": { - "downloads": 148, - "weekDownloads": 22, + "downloads": 142, + "weekDownloads": 16, "latestRelease": "3.0.0", "latestReleaseDate": "2017-12-15T09:33:50.122Z" }, @@ -17159,7 +17171,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.371, + "popularity": -1.403, "topicSearchString": "react-native react native proximity proximity-sensor sensor iphone ios android" }, { @@ -17223,8 +17235,8 @@ "unmaintained": true, "npmPkg": "react-native-calendar-events", "npm": { - "downloads": 100442, - "weekDownloads": 20548, + "downloads": 96649, + "weekDownloads": 19766, "size": 156428, "latestRelease": "2.2.0", "latestReleaseDate": "2021-01-08T10:28:24.288Z" @@ -17294,8 +17306,8 @@ "unmaintained": true, "npmPkg": "react-native-photo-view", "npm": { - "downloads": 3407, - "weekDownloads": 614, + "downloads": 3500, + "weekDownloads": 627, "latestRelease": "1.5.2", "latestReleaseDate": "2017-09-27T18:09:07.508Z" }, @@ -17307,7 +17319,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.598, "topicSearchString": "react-native react-component ios android gallery lightbox pinch pinch-to-zoom mobile" }, { @@ -17365,8 +17377,8 @@ "unmaintained": true, "npmPkg": "react-native-material-kit", "npm": { - "downloads": 3509, - "weekDownloads": 136, + "downloads": 3501, + "weekDownloads": 146, "size": 221221, "latestRelease": "0.6.0-beta.1", "latestReleaseDate": "2020-02-18T09:02:17.970Z" @@ -17380,7 +17392,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.717, + "popularity": -0.715, "topicSearchString": "react native react-component react-native component ios android material-design materialkit" }, { @@ -17436,8 +17448,8 @@ }, "npmPkg": "react-native-i18n", "npm": { - "downloads": 264728, - "weekDownloads": 61475, + "downloads": 254638, + "weekDownloads": 58522, "size": 291743, "latestRelease": "2.0.15", "latestReleaseDate": "2018-07-18T21:11:32.687Z" @@ -17449,7 +17461,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.553, + "popularity": -0.555, "topicSearchString": "react-native react-component ios i18n" }, { @@ -17500,8 +17512,8 @@ }, "npmPkg": "react-native-image-zoom", "npm": { - "downloads": 667, - "weekDownloads": 151, + "downloads": 655, + "weekDownloads": 146, "latestRelease": "0.32.0", "latestReleaseDate": "2016-10-06T16:04:53.787Z" }, @@ -17511,7 +17523,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.306, + "popularity": -1.31, "topicSearchString": "react-native android react-component" }, { @@ -17564,8 +17576,8 @@ "unmaintained": true, "npmPkg": "react-native-tooltip", "npm": { - "downloads": 2314, - "weekDownloads": 660, + "downloads": 2179, + "weekDownloads": 574, "size": 52763, "latestRelease": "5.2.0", "latestReleaseDate": "2018-02-08T16:32:39.485Z" @@ -17576,7 +17588,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.507, + "popularity": -0.526, "topicSearchString": "react react-native react-component ios tooltip" }, { @@ -17633,8 +17645,8 @@ "unmaintained": true, "npmPkg": "react-native-bottom-sheet-behavior", "npm": { - "downloads": 6265, - "weekDownloads": 1820, + "downloads": 6278, + "weekDownloads": 2037, "size": 115151372, "latestRelease": "2.0.0", "latestReleaseDate": "2019-05-29T10:06:17.607Z" @@ -17646,7 +17658,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.503, + "popularity": -0.474, "topicSearchString": "android react-native bottom-sheet-behavior coordinatorlayout bottomsheet bottomsheetbehavior google-maps floatingactionbutton nestedscrollview" }, { @@ -17697,8 +17709,8 @@ }, "npmPkg": "react-native-intercom", "npm": { - "downloads": 7984, - "weekDownloads": 1509, + "downloads": 7736, + "weekDownloads": 1503, "size": 135825, "latestRelease": "21.1.1", "latestReleaseDate": "2021-12-09T00:40:37.727Z" @@ -17710,7 +17722,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, + "popularity": -0.585, "topicSearchString": "" }, { @@ -17769,8 +17781,8 @@ "unmaintained": true, "npmPkg": "react-native-globalize", "npm": { - "downloads": 5305, - "weekDownloads": 719, + "downloads": 5291, + "weekDownloads": 687, "size": 23146620, "latestRelease": "4.5.1", "latestReleaseDate": "2021-01-03T19:34:07.301Z" @@ -17781,7 +17793,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.635, + "popularity": -0.64, "topicSearchString": "react-native internationalization globalization localization i18n l10n currency datetime language" }, { @@ -17835,8 +17847,8 @@ }, "npmPkg": "react-native-storage", "npm": { - "downloads": 51883, - "weekDownloads": 11751, + "downloads": 49810, + "weekDownloads": 11339, "size": 124306, "latestRelease": "1.0.1", "latestReleaseDate": "2019-04-11T15:47:20.329Z" @@ -17908,8 +17920,8 @@ }, "npmPkg": "react-native-extended-stylesheet", "npm": { - "downloads": 45495, - "weekDownloads": 8806, + "downloads": 43908, + "weekDownloads": 8932, "size": 381852, "latestRelease": "0.12.0", "latestReleaseDate": "2019-07-05T17:13:46.237Z" @@ -17921,7 +17933,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.173, "topicSearchString": "react react-native react-component component mobile ios android stylesheets theme theming style styling" }, { @@ -17983,8 +17995,8 @@ }, "npmPkg": "react-native-style-tachyons", "npm": { - "downloads": 3711, - "weekDownloads": 683, + "downloads": 3665, + "weekDownloads": 722, "size": 87713, "latestRelease": "4.2.9", "latestReleaseDate": "2025-02-01T06:48:02.539Z" @@ -17995,7 +18007,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.168, "topicSearchString": "react react-native android ios stylesheet style responsive mobile performance design css typography css-modules" }, { @@ -18056,8 +18068,8 @@ }, "npmPkg": "react-native-google-analytics", "npm": { - "downloads": 771, - "weekDownloads": 150, + "downloads": 730, + "weekDownloads": 152, "latestRelease": "1.3.2", "latestReleaseDate": "2016-05-27T06:49:33.573Z" }, @@ -18067,7 +18079,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.334, + "popularity": -1.322, "topicSearchString": "react native ab test testing analytics metrics events google experiment variant" }, { @@ -18121,8 +18133,8 @@ "unmaintained": true, "npmPkg": "pouchdb-react-native", "npm": { - "downloads": 6565, - "weekDownloads": 326, + "downloads": 6472, + "weekDownloads": 291, "size": 6085, "latestRelease": "6.4.1", "latestReleaseDate": "2018-03-22T17:45:58.701Z" @@ -18133,7 +18145,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.708, + "popularity": -0.712, "topicSearchString": "pouchdb react-native asyncstorage offlinefirst" }, { @@ -18193,7 +18205,7 @@ }, "npmPkg": "react-native-db-models", "npm": { - "downloads": 45, + "downloads": 46, "weekDownloads": 12, "latestRelease": "0.1.3", "latestReleaseDate": "2016-02-14T01:47:16.059Z" @@ -18260,7 +18272,7 @@ "unmaintained": true, "npmPkg": "cairn", "npm": { - "downloads": 65, + "downloads": 68, "weekDownloads": 5, "latestRelease": "0.8.0", "latestReleaseDate": "2017-06-12T17:42:11.291Z" @@ -18270,7 +18282,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.433, + "popularity": -1.438, "topicSearchString": "react react-native css styling styles cairn" }, { @@ -18325,8 +18337,8 @@ "unmaintained": true, "npmPkg": "react-native-slowlog", "npm": { - "downloads": 2869, - "weekDownloads": 441, + "downloads": 2855, + "weekDownloads": 487, "latestRelease": "1.0.2", "latestReleaseDate": "2017-02-08T09:40:22.247Z" }, @@ -18336,7 +18348,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.619, + "popularity": -0.605, "topicSearchString": "performance react-native debugging infrastructure tools" }, { @@ -18392,8 +18404,8 @@ }, "npmPkg": "react-native-console-panel", "npm": { - "downloads": 977, - "weekDownloads": 47, + "downloads": 955, + "weekDownloads": 26, "latestRelease": "0.1.0", "latestReleaseDate": "2016-09-07T02:37:03.251Z" }, @@ -18403,7 +18415,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.459, + "popularity": -1.477, "topicSearchString": "react-component react-native ios android console debug-panel" }, { @@ -18460,8 +18472,8 @@ }, "npmPkg": "react-native-dismiss-keyboard", "npm": { - "downloads": 22277, - "weekDownloads": 2819, + "downloads": 21844, + "weekDownloads": 2981, "latestRelease": "1.0.0", "latestReleaseDate": "2016-05-12T16:56:35.961Z" }, @@ -18470,7 +18482,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.642, + "popularity": -0.634, "topicSearchString": "react-component react react-native ios android keyboard dismiss" }, { @@ -18522,8 +18534,8 @@ }, "npmPkg": "react-native-popup", "npm": { - "downloads": 159, - "weekDownloads": 22, + "downloads": 158, + "weekDownloads": 20, "latestRelease": "0.6.1", "latestReleaseDate": "2016-11-14T06:56:10.980Z" }, @@ -18533,7 +18545,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.381, + "popularity": -1.392, "topicSearchString": "react-native popup" }, { @@ -18593,8 +18605,8 @@ "configPlugin": false }, "npm": { - "downloads": 182759, - "weekDownloads": 35472, + "downloads": 176659, + "weekDownloads": 36145, "size": 93156, "latestRelease": "3.0.11", "latestReleaseDate": "2024-11-25T14:32:14.877Z" @@ -18606,7 +18618,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.174, "topicSearchString": "react-native react android ios images image image-resizer scaling scale resize jpeg" }, { @@ -18663,8 +18675,8 @@ "configPlugin": false }, "npm": { - "downloads": 1545, - "weekDownloads": 189, + "downloads": 1516, + "weekDownloads": 196, "latestRelease": "1.0.7", "latestReleaseDate": "2017-10-16T03:44:01.130Z" }, @@ -18674,7 +18686,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.646, + "popularity": -0.64, "topicSearchString": "react-native react-component ios android toast position remobile mobile" }, { @@ -18730,8 +18742,8 @@ }, "npmPkg": "react-native-lazyload", "npm": { - "downloads": 1087, - "weekDownloads": 357, + "downloads": 1034, + "weekDownloads": 350, "latestRelease": "1.1.0", "latestReleaseDate": "2016-08-26T12:26:38.140Z" }, @@ -18741,7 +18753,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.47, + "popularity": -0.462, "topicSearchString": "react-component react-native ios android lazyload load" }, { @@ -18803,8 +18815,8 @@ }, "npmPkg": "react-native-nav", "npm": { - "downloads": 1022, - "weekDownloads": 94, + "downloads": 1005, + "weekDownloads": 107, "latestRelease": "2.0.2", "latestReleaseDate": "2017-08-10T02:33:46.517Z" }, @@ -18814,7 +18826,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.672, + "popularity": -0.659, "topicSearchString": "react native ios android navigation bar component customizable navbar nav app react-native" }, { @@ -18936,8 +18948,8 @@ }, "npmPkg": "react-native-android-tablayout", "npm": { - "downloads": 136, - "weekDownloads": 3, + "downloads": 137, + "weekDownloads": 5, "latestRelease": "0.3.0", "latestReleaseDate": "2016-06-23T18:34:47.746Z" }, @@ -18947,7 +18959,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.481, + "popularity": -1.469, "topicSearchString": "react-component react-native android tablayout design support" }, { @@ -19005,8 +19017,8 @@ }, "npmPkg": "react-native-gifted-listview", "npm": { - "downloads": 147, - "weekDownloads": 9, + "downloads": 148, + "weekDownloads": 8, "latestRelease": "0.0.15", "latestReleaseDate": "2016-05-12T14:45:53.931Z" }, @@ -19017,7 +19029,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.447, + "popularity": -1.453, "topicSearchString": "pull-to-refresh refreshable listview infinite-scrolling react-component react-native ios android" }, { @@ -19080,8 +19092,8 @@ }, "npmPkg": "react-native-simple-dialogs", "npm": { - "downloads": 7876, - "weekDownloads": 1385, + "downloads": 7658, + "weekDownloads": 1338, "size": 57180, "latestRelease": "2.1.1", "latestReleaseDate": "2025-06-11T17:09:34.794Z" @@ -19118,7 +19130,7 @@ "forks": 59, "issues": 2, "subscribers": 7, - "stars": 1002, + "stars": 1003, "dependencies": 0 }, "name": "react-native-keyboard-manager", @@ -19147,8 +19159,8 @@ }, "npmPkg": "react-native-keyboard-manager", "npm": { - "downloads": 104509, - "weekDownloads": 21724, + "downloads": 100387, + "weekDownloads": 21977, "size": 45031, "latestRelease": "6.5.16-0", "latestReleaseDate": "2024-05-06T13:10:59.626Z" @@ -19160,7 +19172,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.186, "topicSearchString": "react-native ios keyboard iqkeyboardmanager hacktoberfest" }, { @@ -19216,8 +19228,8 @@ "unmaintained": true, "npmPkg": "nachos-ui", "npm": { - "downloads": 242, - "weekDownloads": 43, + "downloads": 234, + "weekDownloads": 45, "size": 817766, "latestRelease": "0.2.0-beta.1", "latestReleaseDate": "2018-06-12T16:17:33.174Z" @@ -19229,7 +19241,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.346, + "popularity": -1.336, "topicSearchString": "react react-component react-native ui-kit uikit web" }, { @@ -19284,7 +19296,7 @@ }, "npmPkg": "react-native-material-design", "npm": { - "downloads": 282, + "downloads": 277, "weekDownloads": 39, "latestRelease": "0.3.7", "latestReleaseDate": "2016-07-27T07:52:11.248Z" @@ -19296,7 +19308,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.382, + "popularity": -1.38, "topicSearchString": "react-native material design ui components react-component android" }, { @@ -19353,8 +19365,8 @@ }, "npmPkg": "mrn", "npm": { - "downloads": 85, - "weekDownloads": 1, + "downloads": 86, + "weekDownloads": 0, "latestRelease": "0.1.7", "latestReleaseDate": "2015-11-30T12:19:47.883Z" }, @@ -19365,7 +19377,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.49, + "popularity": -1, "topicSearchString": "react-native material design ui components react-component mrn ui-components android" }, { @@ -19425,7 +19437,7 @@ }, "npmPkg": "react-native-parallax", "npm": { - "downloads": 140, + "downloads": 138, "weekDownloads": 22, "latestRelease": "0.3.0", "latestReleaseDate": "2016-06-13T15:09:17.201Z" @@ -19492,8 +19504,8 @@ }, "npmPkg": "react-native-chart", "npm": { - "downloads": 618, - "weekDownloads": 190, + "downloads": 592, + "weekDownloads": 179, "latestRelease": "1.0.8-beta", "latestReleaseDate": "2016-07-27T01:29:05.242Z" }, @@ -19504,7 +19516,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.238, + "popularity": -1.242, "topicSearchString": "chart javascript react-native svg" }, { @@ -19558,8 +19570,8 @@ }, "npmPkg": "react-native-parallax-view", "npm": { - "downloads": 288, - "weekDownloads": 9, + "downloads": 291, + "weekDownloads": 16, "latestRelease": "2.0.6", "latestReleaseDate": "2016-09-16T17:42:38.276Z" }, @@ -19570,7 +19582,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.473, + "popularity": -1.453, "topicSearchString": "react react-native react-component parallax" }, { @@ -19636,8 +19648,8 @@ }, "npmPkg": "react-native-collapsible", "npm": { - "downloads": 596651, - "weekDownloads": 116980, + "downloads": 578680, + "weekDownloads": 119238, "size": 30740, "latestRelease": "1.6.2", "latestReleaseDate": "2024-08-27T19:59:13.624Z" @@ -19650,7 +19662,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.175, "topicSearchString": "react-native react-component component react mobile ios android ui collapse collapsible toggle accordion animation" }, { @@ -19706,8 +19718,8 @@ }, "npmPkg": "react-native-popover", "npm": { - "downloads": 2439, - "weekDownloads": 427, + "downloads": 2421, + "weekDownloads": 456, "latestRelease": "0.2.0", "latestReleaseDate": "2015-06-12T15:49:26.808Z" }, @@ -19718,7 +19730,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, + "popularity": -0.59, "topicSearchString": "react-component react-native ios ui popover modal" }, { @@ -19772,8 +19784,8 @@ }, "npmPkg": "react-native-form-generator", "npm": { - "downloads": 2714, - "weekDownloads": 545, + "downloads": 2604, + "weekDownloads": 633, "latestRelease": "0.9.9", "latestReleaseDate": "2016-08-02T20:54:11.001Z" }, @@ -19783,7 +19795,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.543, "topicSearchString": "react native forms input" }, { @@ -19912,8 +19924,8 @@ }, "npmPkg": "react-native-markdown", "npm": { - "downloads": 56, - "weekDownloads": 5, + "downloads": 52, + "weekDownloads": 3, "latestRelease": "0.1.1", "latestReleaseDate": "2015-04-21T06:27:55.981Z" }, @@ -19923,7 +19935,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.423, + "popularity": -1.45, "topicSearchString": "react native markdown md parse parser" }, { @@ -20045,8 +20057,8 @@ }, "npmPkg": "react-native-gesture-recognizers", "npm": { - "downloads": 17, - "weekDownloads": 7, + "downloads": 15, + "weekDownloads": 5, "latestRelease": "0.3.0", "latestReleaseDate": "2017-05-15T12:54:49.412Z" }, @@ -20056,7 +20068,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.15, + "popularity": -1.167, "topicSearchString": "react-native gesture detection" }, { @@ -20105,8 +20117,8 @@ }, "npmPkg": "react-native-gallery", "npm": { - "downloads": 174, - "weekDownloads": 4, + "downloads": 176, + "weekDownloads": 7, "latestRelease": "0.0.17", "latestReleaseDate": "2016-07-22T02:49:44.964Z" }, @@ -20116,7 +20128,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.48, + "popularity": -1.466, "topicSearchString": "" }, { @@ -20171,8 +20183,8 @@ }, "npmPkg": "react-native-md-textinput", "npm": { - "downloads": 2085, - "weekDownloads": 16, + "downloads": 2082, + "weekDownloads": 13, "latestRelease": "2.0.4", "latestReleaseDate": "2016-05-30T01:22:43.707Z" }, @@ -20182,7 +20194,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.743, + "popularity": -0.745, "topicSearchString": "react-native textinput material-design material design" }, { @@ -20236,8 +20248,8 @@ }, "npmPkg": "react-native-custom-action-sheet", "npm": { - "downloads": 123, - "weekDownloads": 2, + "downloads": 130, + "weekDownloads": 10, "latestRelease": "0.0.11", "latestReleaseDate": "2016-05-30T16:24:28.403Z" }, @@ -20247,7 +20259,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.486, + "popularity": -1.433, "topicSearchString": "react-native react-component ios action-sheet" }, { @@ -20297,8 +20309,8 @@ }, "npmPkg": "react-native-keyboard-aware-scrollview", "npm": { - "downloads": 17579, - "weekDownloads": 3372, + "downloads": 17096, + "weekDownloads": 3722, "size": 9923, "latestRelease": "2.1.0", "latestReleaseDate": "2019-11-13T10:03:11.577Z" @@ -20309,7 +20321,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.565, "topicSearchString": "" }, { @@ -20367,8 +20379,8 @@ }, "npmPkg": "react-native-gestures", "npm": { - "downloads": 80, - "weekDownloads": 6, + "downloads": 79, + "weekDownloads": 13, "latestRelease": "0.3.0", "latestReleaseDate": "2016-06-15T06:01:07.574Z" }, @@ -20378,7 +20390,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.433, + "popularity": -1.356, "topicSearchString": "react-native react-component ios gestures pinch zoom drag drop" }, { @@ -20429,7 +20441,7 @@ }, "npmPkg": "react-native-ab", "npm": { - "downloads": 12, + "downloads": 13, "weekDownloads": 3, "latestRelease": "0.1.0", "latestReleaseDate": "2015-04-22T21:03:35.174Z" @@ -20441,7 +20453,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.2, + "popularity": -1.3, "topicSearchString": "react native ab test testing experiment variant" }, { @@ -20497,8 +20509,8 @@ }, "npmPkg": "react-native-animated-ptr", "npm": { - "downloads": 37, - "weekDownloads": 5, + "downloads": 36, + "weekDownloads": 4, "latestRelease": "1.1.1", "latestReleaseDate": "2017-01-31T17:40:04.522Z" }, @@ -20507,7 +20519,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.375, + "popularity": -1.4, "topicSearchString": "react-native react-component ios android animated pull-to-refresh" }, { @@ -20550,8 +20562,8 @@ }, "npmPkg": "react-native-htmltext", "npm": { - "downloads": 44, - "weekDownloads": 3, + "downloads": 42, + "weekDownloads": 2, "latestRelease": "0.1.2", "latestReleaseDate": "2015-03-31T16:54:50.830Z" }, @@ -20561,7 +20573,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.44, + "popularity": -1.456, "topicSearchString": "" }, { @@ -20616,7 +20628,7 @@ }, "npmPkg": "react-native-listitem", "npm": { - "downloads": 117, + "downloads": 118, "weekDownloads": 8, "latestRelease": "1.0.5", "latestReleaseDate": "2015-09-09T23:33:57.330Z" @@ -20634,6 +20646,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/dotintent/react-native-ble-plx", @@ -20686,8 +20699,8 @@ }, "npmPkg": "react-native-ble-plx", "npm": { - "downloads": 398853, - "weekDownloads": 85880, + "downloads": 385185, + "weekDownloads": 84086, "size": 813892, "latestRelease": "3.5.0", "latestReleaseDate": "2025-02-11T18:07:03.350Z" @@ -20700,7 +20713,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.183, + "popularity": 0.186, "topicSearchString": "react-native ios android react native bluetooth low energy ble" }, { @@ -20763,8 +20776,8 @@ "unmaintained": true, "npmPkg": "rn-placeholder", "npm": { - "downloads": 85855, - "weekDownloads": 17635, + "downloads": 83543, + "weekDownloads": 18500, "size": 49819, "latestRelease": "3.0.3", "latestReleaseDate": "2020-09-18T13:37:56.094Z" @@ -20776,7 +20789,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.575, + "popularity": -0.562, "topicSearchString": "react-native ios android expo react ux placeholder" }, { @@ -20824,7 +20837,7 @@ }, "npmPkg": "rn-displayable", "npm": { - "downloads": 14, + "downloads": 15, "weekDownloads": 0, "size": 220546, "latestRelease": "1.0.1", @@ -20891,8 +20904,8 @@ "unmaintained": true, "npmPkg": "tipsi-stripe", "npm": { - "downloads": 6778, - "weekDownloads": 1038, + "downloads": 6707, + "weekDownloads": 1050, "size": 343380, "latestRelease": "11.0.1", "latestReleaseDate": "2023-04-13T16:08:35.170Z" @@ -20904,7 +20917,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.62, + "popularity": -0.617, "topicSearchString": "react react-native stripe ios android apple-pay" }, { @@ -20958,8 +20971,8 @@ }, "npmPkg": "react-native-qrcode-svg", "npm": { - "downloads": 1197256, - "weekDownloads": 249561, + "downloads": 1162240, + "weekDownloads": 249154, "size": 958130, "latestRelease": "6.3.15", "latestReleaseDate": "2025-02-21T05:44:01.802Z" @@ -20971,7 +20984,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.182, "topicSearchString": "react-native qrcode svg node-qrcode" }, { @@ -20982,6 +20995,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-google-mobile-ads", @@ -21037,8 +21051,8 @@ }, "npmPkg": "react-native-google-mobile-ads", "npm": { - "downloads": 166902, - "weekDownloads": 32663, + "downloads": 160696, + "weekDownloads": 33185, "size": 1230137, "latestRelease": "15.8.2", "latestReleaseDate": "2025-10-19T11:10:04.781Z" @@ -21049,7 +21063,7 @@ "Known", "Recently updated" ], - "popularity": 0.166, + "popularity": 0.176, "topicSearchString": "react react-native admob mobile-ads google-ads gdpr banner-ad rewarded-ad interstitial ad-consent android ios google" }, { @@ -21073,10 +21087,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 1 }, "name": "@react-native-firebase/analytics", @@ -21103,8 +21117,8 @@ "configPlugin": false }, "npm": { - "downloads": 1735045, - "weekDownloads": 342937, + "downloads": 1682173, + "weekDownloads": 356422, "size": 289577, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:50.949Z" @@ -21117,7 +21131,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.18, "topicSearchString": "react react-native firebase analytics" }, { @@ -21127,6 +21141,7 @@ "tvos": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-firebase", @@ -21141,10 +21156,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 0 }, "name": "@react-native-firebase/app-check", @@ -21172,8 +21187,8 @@ "configPlugin": true }, "npm": { - "downloads": 94565, - "weekDownloads": 18268, + "downloads": 90985, + "weekDownloads": 18577, "size": 145320, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:50.694Z" @@ -21186,7 +21201,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.174, "topicSearchString": "react react-native firebase app-check appcheck" }, { @@ -21195,6 +21210,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-firebase", @@ -21209,10 +21225,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 0 }, "name": "@react-native-firebase/app-distribution", @@ -21239,8 +21255,8 @@ "configPlugin": true }, "npm": { - "downloads": 38184, - "weekDownloads": 7873, + "downloads": 36738, + "weekDownloads": 7805, "size": 86319, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:53.114Z" @@ -21253,7 +21269,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.181, "topicSearchString": "react react-native firebase app-distribution" }, { @@ -21263,6 +21279,7 @@ "tvos": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-firebase", @@ -21277,10 +21294,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 1 }, "name": "@react-native-firebase/app", @@ -21334,8 +21351,8 @@ "configPlugin": true }, "npm": { - "downloads": 2958056, - "weekDownloads": 583431, + "downloads": 2870672, + "weekDownloads": 593829, "size": 566327, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:50.778Z" @@ -21348,7 +21365,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.176, "topicSearchString": "react admob auth config digits fabric functions phone-auth sms firestore cloud-firestore datastore remote-config transactions react-native firebase firebase fcm apn gcm analytics messaging database android ios crash firestack performance firestore dynamic-links crashlytics" }, { @@ -21358,6 +21375,7 @@ "tvos": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-firebase", @@ -21372,10 +21390,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 1 }, "name": "@react-native-firebase/auth", @@ -21402,8 +21420,8 @@ "configPlugin": true }, "npm": { - "downloads": 575869, - "weekDownloads": 109821, + "downloads": 565858, + "weekDownloads": 112359, "size": 557066, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:53.374Z" @@ -21416,7 +21434,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.169, "topicSearchString": "react react-native firebase auth" }, { @@ -21426,6 +21444,7 @@ "tvos": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-firebase", @@ -21440,10 +21459,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 1 }, "name": "@react-native-firebase/crashlytics", @@ -21475,8 +21494,8 @@ "configPlugin": true }, "npm": { - "downloads": 1071470, - "weekDownloads": 212609, + "downloads": 1039278, + "weekDownloads": 217205, "size": 165233, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:53.563Z" @@ -21489,7 +21508,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.178, "topicSearchString": "react react-native firebase fabric crash bug error reporting crashlytics" }, { @@ -21513,10 +21532,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 0 }, "name": "@react-native-firebase/database", @@ -21546,8 +21565,8 @@ "configPlugin": false }, "npm": { - "downloads": 90671, - "weekDownloads": 16433, + "downloads": 89302, + "weekDownloads": 17210, "size": 425011, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:53.720Z" @@ -21560,7 +21579,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.164, "topicSearchString": "react react-native firebase realtime database synchronized realtome-database" }, { @@ -21584,10 +21603,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 1 }, "name": "@react-native-firebase/firestore", @@ -21619,8 +21638,8 @@ "configPlugin": false }, "npm": { - "downloads": 355596, - "weekDownloads": 68690, + "downloads": 349044, + "weekDownloads": 71525, "size": 613592, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:55.847Z" @@ -21633,7 +21652,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.174, "topicSearchString": "react react-native firebase cloud-firestore database nosql query realtime firestore" }, { @@ -21657,10 +21676,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 0 }, "name": "@react-native-firebase/functions", @@ -21689,8 +21708,8 @@ "configPlugin": false }, "npm": { - "downloads": 89183, - "weekDownloads": 17024, + "downloads": 88099, + "weekDownloads": 17820, "size": 126543, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:55.999Z" @@ -21703,7 +21722,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.172, "topicSearchString": "react react-native firebase https callable functions" }, { @@ -21727,10 +21746,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 0 }, "name": "@react-native-firebase/in-app-messaging", @@ -21762,8 +21781,8 @@ "configPlugin": false }, "npm": { - "downloads": 73353, - "weekDownloads": 13517, + "downloads": 72052, + "weekDownloads": 14018, "size": 96036, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:56.347Z" @@ -21776,7 +21795,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.165, "topicSearchString": "react react-native firebase in-app-messaging analytics predictions engage active-users inappmessaging" }, { @@ -21786,6 +21805,7 @@ "tvos": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-firebase", @@ -21800,10 +21820,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 0 }, "name": "@react-native-firebase/messaging", @@ -21830,8 +21850,8 @@ "configPlugin": true }, "npm": { - "downloads": 1809473, - "weekDownloads": 362028, + "downloads": 1751912, + "weekDownloads": 364976, "size": 298850, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:58.440Z" @@ -21844,7 +21864,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.177, "topicSearchString": "react react-native firebase messaging" }, { @@ -21868,10 +21888,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 0 }, "name": "@react-native-firebase/ml", @@ -21902,8 +21922,8 @@ "configPlugin": false }, "npm": { - "downloads": 2882, - "weekDownloads": 468, + "downloads": 3020, + "weekDownloads": 455, "size": 86620, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:58.753Z" @@ -21916,7 +21936,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.138, + "popularity": 0.128, "topicSearchString": "react react-native firebase ml machine-learning text-recognition landmark-recognition image-labeler" }, { @@ -21926,6 +21946,7 @@ "tvos": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-firebase", @@ -21940,10 +21961,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 0 }, "name": "@react-native-firebase/perf", @@ -21975,8 +21996,8 @@ "configPlugin": true }, "npm": { - "downloads": 472671, - "weekDownloads": 92458, + "downloads": 459558, + "weekDownloads": 94251, "size": 147324, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:58.637Z" @@ -21989,7 +22010,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.174, "topicSearchString": "react react-native firebase perf trace insight http latency performance-monitoring" }, { @@ -22010,14 +22031,14 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-14T12:32:07Z", + "updatedAt": "2025-10-20T16:55:37Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "pushedAt": "2025-10-20T16:55:37Z", + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, - "dependencies": 1 + "stars": 12107, + "dependencies": 3 }, "name": "@react-native-firebase/remote-config", "fullName": "invertase/react-native-firebase", @@ -22045,8 +22066,8 @@ "configPlugin": false }, "npm": { - "downloads": 561802, - "weekDownloads": 106914, + "downloads": 541632, + "weekDownloads": 107438, "size": 168186, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:59.031Z" @@ -22059,7 +22080,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.169, "topicSearchString": "react react-native firebase config remote remote-config" }, { @@ -22083,10 +22104,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 0 }, "name": "@react-native-firebase/storage", @@ -22120,8 +22141,8 @@ "configPlugin": false }, "npm": { - "downloads": 148853, - "weekDownloads": 28131, + "downloads": 146324, + "weekDownloads": 29674, "size": 286080, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:33:00.909Z" @@ -22134,7 +22155,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.172, "topicSearchString": "react react-native firebase images audio video json cloud-storage storage upload download" }, { @@ -22164,7 +22185,7 @@ "forks": 883, "issues": 555, "subscribers": 43, - "stars": 5035, + "stars": 5036, "dependencies": 2 }, "name": "react-native-fs", @@ -22197,8 +22218,8 @@ }, "npmPkg": "react-native-fs", "npm": { - "downloads": 1549440, - "weekDownloads": 318924, + "downloads": 1501316, + "weekDownloads": 319483, "size": 570292, "latestRelease": "2.20.0", "latestReleaseDate": "2022-05-04T16:06:26.809Z" @@ -22212,7 +22233,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.575, + "popularity": -0.569, "topicSearchString": "react-component react-native ios android fs filesystem download upload file-transfer" }, { @@ -22268,8 +22289,8 @@ "unmaintained": true, "npmPkg": "react-native-cell-components", "npm": { - "downloads": 733, - "weekDownloads": 4, + "downloads": 741, + "weekDownloads": 5, "size": 65287, "latestRelease": "0.7.9", "latestReleaseDate": "2019-12-27T14:47:36.759Z" @@ -22279,7 +22300,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.495, + "popularity": -1.494, "topicSearchString": "react-native cell components ios listview tableview" }, { @@ -22342,8 +22363,8 @@ }, "npmPkg": "react-native-photo-upload", "npm": { - "downloads": 799, - "weekDownloads": 102, + "downloads": 792, + "weekDownloads": 115, "size": 55942, "latestRelease": "1.3.0", "latestReleaseDate": "2018-08-31T20:33:32.975Z" @@ -22354,7 +22375,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.391, + "popularity": -1.376, "topicSearchString": "photo react react-native resizer image picker base64 ios android photos reactjs image-picker fs image-resizer" }, { @@ -22412,8 +22433,8 @@ "unmaintained": true, "npmPkg": "react-native-create-bridge", "npm": { - "downloads": 1832, - "weekDownloads": 357, + "downloads": 1778, + "weekDownloads": 437, "latestRelease": "2.0.1", "latestReleaseDate": "2018-01-29T03:30:07.772Z" }, @@ -22424,7 +22445,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.541, "topicSearchString": "react native react-native bridge cli swift java objective-c kotlin" }, { @@ -22481,8 +22502,8 @@ "unmaintained": true, "npmPkg": "react-native-fa-icons", "npm": { - "downloads": 98, - "weekDownloads": 8, + "downloads": 103, + "weekDownloads": 9, "size": 190457, "latestRelease": "4.1.1", "latestReleaseDate": "2019-04-21T14:52:25.198Z" @@ -22492,7 +22513,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.68, + "popularity": -1.675, "topicSearchString": "react-native fonts font-awesome fontawesome icon icons-fontawesome icons" }, { @@ -22549,8 +22570,8 @@ "unmaintained": true, "npmPkg": "material-native", "npm": { - "downloads": 164, - "weekDownloads": 4, + "downloads": 165, + "weekDownloads": 6, "latestRelease": "0.0.0-alpha.16", "latestReleaseDate": "2017-11-22T11:06:54.322Z" }, @@ -22559,7 +22580,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.479, + "popularity": -1.468, "topicSearchString": "react react-component react-native material material-design android ios" }, { @@ -22618,8 +22639,8 @@ }, "npmPkg": "react-native-submit-button", "npm": { - "downloads": 91, - "weekDownloads": 4, + "downloads": 90, + "weekDownloads": 3, "latestRelease": "1.0.5", "latestReleaseDate": "2017-01-19T19:50:24.058Z" }, @@ -22628,7 +22649,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.462, + "popularity": -1.471, "topicSearchString": "react native animated component button submit android ios react-native submit-button" }, { @@ -22684,8 +22705,8 @@ }, "npmPkg": "react-native-zip-archive", "npm": { - "downloads": 137552, - "weekDownloads": 27634, + "downloads": 133645, + "weekDownloads": 28154, "size": 51330, "latestRelease": "7.0.2", "latestReleaseDate": "2025-06-15T10:42:34.957Z" @@ -22696,7 +22717,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.179, "topicSearchString": "react-native ios android zip archive zip-archive unzip zip-assets" }, { @@ -22749,8 +22770,8 @@ }, "npmPkg": "react-native-actionsheet", "npm": { - "downloads": 66123, - "weekDownloads": 13277, + "downloads": 63154, + "weekDownloads": 13188, "size": 15598, "latestRelease": "2.4.2", "latestReleaseDate": "2018-04-23T01:06:55.589Z" @@ -22762,7 +22783,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.572, "topicSearchString": "actionsheet action-sheet react-native custom-action-sheet" }, { @@ -22814,8 +22835,8 @@ "unmaintained": true, "npmPkg": "react-native-document-scanner", "npm": { - "downloads": 203, - "weekDownloads": 48, + "downloads": 196, + "weekDownloads": 55, "latestRelease": "1.4.2", "latestReleaseDate": "2017-11-09T14:30:29.256Z" }, @@ -22826,7 +22847,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.296, + "popularity": -1.261, "topicSearchString": "react-native scanner ios document" }, { @@ -22881,8 +22902,8 @@ "unmaintained": true, "npmPkg": "react-native-perspective-image-cropper", "npm": { - "downloads": 330, - "weekDownloads": 55, + "downloads": 318, + "weekDownloads": 65, "size": 2063941, "latestRelease": "0.4.4", "latestReleaseDate": "2019-12-16T14:30:54.783Z" @@ -22893,7 +22914,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.357, + "popularity": -1.324, "topicSearchString": "react-native scanner crop react image custom perspective" }, { @@ -22950,8 +22971,8 @@ "unmaintained": true, "npmPkg": "react-native-loading-placeholder", "npm": { - "downloads": 2297, - "weekDownloads": 104, + "downloads": 2275, + "weekDownloads": 114, "latestRelease": "0.0.6", "latestReleaseDate": "2017-11-11T22:41:00.452Z" }, @@ -22960,7 +22981,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.711, + "popularity": -0.707, "topicSearchString": "react-native react-component ios android placeholder loading loader skeletor" }, { @@ -22972,6 +22993,7 @@ "ios": true, "android": true, "unmaintained": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/bamlab/react-native-batch-push", @@ -23022,8 +23044,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 231, - "weekDownloads": 47, + "downloads": 254, + "weekDownloads": 40, "size": 292353, "latestRelease": "7.0.3", "latestReleaseDate": "2022-01-25T17:08:00.197Z" @@ -23033,7 +23055,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.326, + "popularity": -1.364, "topicSearchString": "react-native batch push notifications library push-notifications archived deprecated obsolete" }, { @@ -23086,7 +23108,7 @@ "unmaintained": true, "npmPkg": "react-native-bouncy-drawer", "npm": { - "downloads": 4, + "downloads": 5, "weekDownloads": 0, "size": 2169349, "latestRelease": "1.0.1", @@ -23150,7 +23172,7 @@ }, "npmPkg": "react-native-ios-drag-drop", "npm": { - "downloads": 51, + "downloads": 52, "weekDownloads": 10, "latestRelease": "0.1.2", "latestReleaseDate": "2017-10-13T11:41:09.150Z" @@ -23213,8 +23235,8 @@ }, "npmPkg": "react-native-material-palette", "npm": { - "downloads": 785, - "weekDownloads": 17, + "downloads": 784, + "weekDownloads": 16, "latestRelease": "0.1.0", "latestReleaseDate": "2017-08-21T09:51:40.749Z" }, @@ -23223,7 +23245,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.482, + "popularity": -1.483, "topicSearchString": "react-native react material-design material-ui" }, { @@ -23289,8 +23311,8 @@ }, "npmPkg": "react-native-onboarding-swiper", "npm": { - "downloads": 25284, - "weekDownloads": 5292, + "downloads": 24847, + "weekDownloads": 5242, "size": 32469, "latestRelease": "1.3.0", "latestReleaseDate": "2024-07-27T22:10:10.335Z" @@ -23302,7 +23324,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.179, "topicSearchString": "react native react-native component onboarding tutorial intro swiper welcome introduction instructions slider" }, { @@ -23363,8 +23385,8 @@ "unmaintained": true, "npmPkg": "react-native-material-ui", "npm": { - "downloads": 8846, - "weekDownloads": 306, + "downloads": 8841, + "weekDownloads": 309, "size": 281224, "latestRelease": "1.30.1", "latestReleaseDate": "2018-07-02T11:37:51.541Z" @@ -23378,7 +23400,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.721, + "popularity": -0.72, "topicSearchString": "react-native material design ui components react-component android material-design ui-kit ios" }, { @@ -23434,7 +23456,7 @@ "npmPkg": "react-native-falling-drawer", "npm": { "downloads": 71, - "weekDownloads": 19, + "weekDownloads": 21, "latestRelease": "1.0.2", "latestReleaseDate": "2017-10-14T18:54:20.705Z" }, @@ -23443,7 +23465,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.262, + "popularity": -1.238, "topicSearchString": "drawer falling customizable collapsible" }, { @@ -23560,8 +23582,8 @@ "unmaintained": true, "npmPkg": "react-native-schemes-manager", "npm": { - "downloads": 7480, - "weekDownloads": 1445, + "downloads": 7255, + "weekDownloads": 1546, "size": 27857, "latestRelease": "2.0.0", "latestReleaseDate": "2019-04-03T00:00:54.186Z" @@ -23572,7 +23594,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.569, "topicSearchString": "react native xcode scheme build configuration environment variables react-native" }, { @@ -23704,8 +23726,8 @@ }, "npmPkg": "react-native-offscreen-toolbar", "npm": { - "downloads": 61, - "weekDownloads": 3, + "downloads": 60, + "weekDownloads": 1, "latestRelease": "1.0.10", "latestReleaseDate": "2018-01-26T01:59:32.021Z" }, @@ -23714,7 +23736,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.707, + "popularity": -1.736, "topicSearchString": "react-native react-component component react mobile ui toolbar navbar header material material-design" }, { @@ -23767,8 +23789,8 @@ "unmaintained": true, "npmPkg": "react-native-braintree-payments-drop-in", "npm": { - "downloads": 178, - "weekDownloads": 18, + "downloads": 175, + "weekDownloads": 14, "size": 66831, "latestRelease": "1.2.0", "latestReleaseDate": "2019-10-28T11:18:21.016Z" @@ -23778,7 +23800,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.412, + "popularity": -1.432, "topicSearchString": "react-native braintree payments drop-in" }, { @@ -23805,7 +23827,7 @@ "forks": 2749, "issues": 703, "subscribers": 227, - "stars": 34326, + "stars": 34325, "dependencies": 8 }, "name": "formik", @@ -23841,8 +23863,8 @@ }, "npmPkg": "formik", "npm": { - "downloads": 12904400, - "weekDownloads": 2441899, + "downloads": 12533330, + "weekDownloads": 2534244, "size": 583234, "latestRelease": "2.4.6", "latestReleaseDate": "2024-04-24T22:22:59.781Z" @@ -23856,7 +23878,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.172, "topicSearchString": "formik form forms react react-dom hooks react-hooks validation render-props validation higher-order-component hoc" }, { @@ -23910,8 +23932,8 @@ }, "npmPkg": "react-native-google-play-game-services", "npm": { - "downloads": 724, - "weekDownloads": 129, + "downloads": 694, + "weekDownloads": 120, "size": 29935053, "latestRelease": "1.0.0", "latestReleaseDate": "2018-03-12T01:19:43.981Z" @@ -23921,7 +23943,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.598, + "popularity": -1.603, "topicSearchString": "react-native google-play google-play-game-services android google-play-games google-play-service" }, { @@ -23979,8 +24001,8 @@ "unmaintained": true, "npmPkg": "react-native-popup-menu-android", "npm": { - "downloads": 931, - "weekDownloads": 121, + "downloads": 925, + "weekDownloads": 174, "size": 636653, "latestRelease": "1.0.3", "latestReleaseDate": "2018-05-22T08:08:18.606Z" @@ -23990,7 +24012,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.639, + "popularity": -1.59, "topicSearchString": "react-native android popup popover menu overlay native-native native material" }, { @@ -24114,8 +24136,8 @@ }, "npmPkg": "react-native-azure-auth", "npm": { - "downloads": 10163, - "weekDownloads": 1808, + "downloads": 10025, + "weekDownloads": 1915, "size": 1887213, "latestRelease": "1.9.0", "latestReleaseDate": "2025-09-09T11:53:42.389Z" @@ -24125,7 +24147,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.162, "topicSearchString": "azure azuread authentication active-directory react-native oauth oauth2" }, { @@ -24179,8 +24201,8 @@ "unmaintained": true, "npmPkg": "react-native-modal-popover", "npm": { - "downloads": 31555, - "weekDownloads": 6392, + "downloads": 30557, + "weekDownloads": 6412, "size": 98527, "latestRelease": "2.1.3", "latestReleaseDate": "2022-12-30T12:05:28.732Z" @@ -24191,7 +24213,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.578, + "popularity": -0.572, "topicSearchString": "react react-native popover modal" }, { @@ -24247,8 +24269,8 @@ "unmaintained": true, "npmPkg": "react-native-vkontakte-login", "npm": { - "downloads": 671, - "weekDownloads": 118, + "downloads": 661, + "weekDownloads": 100, "size": 70666, "latestRelease": "1.0.1", "latestReleaseDate": "2020-07-20T06:56:43.137Z" @@ -24258,7 +24280,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, + "popularity": -1.371, "topicSearchString": "react react-native vk vkontakte sdk login share" }, { @@ -24283,7 +24305,7 @@ "forks": 462, "issues": 87, "subscribers": 19, - "stars": 1837, + "stars": 1838, "dependencies": 2 }, "name": "react-native-picker-select", @@ -24319,8 +24341,8 @@ }, "npmPkg": "react-native-picker-select", "npm": { - "downloads": 534312, - "weekDownloads": 100584, + "downloads": 520551, + "weekDownloads": 103921, "size": 45794, "latestRelease": "9.3.1", "latestReleaseDate": "2024-08-12T17:35:26.682Z" @@ -24333,7 +24355,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.17, "topicSearchString": "dropdown picker select react react-native expo items frontend javascript library npm npm-package" }, { @@ -24477,8 +24499,8 @@ }, "npmPkg": "react-native-swiper-flatlist", "npm": { - "downloads": 62517, - "weekDownloads": 12810, + "downloads": 60613, + "weekDownloads": 13391, "size": 72808, "latestRelease": "3.2.5", "latestReleaseDate": "2024-09-10T17:12:49.737Z" @@ -24489,7 +24511,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.188, "topicSearchString": "swiper swiper-flatlist hooks typescript component react-native flatlist flatlist-swiper react native carousel slider scrollview images infinite scroll scrolling cards stack android ios swipeview swipe expo" }, { @@ -24551,8 +24573,8 @@ "unmaintained": true, "npmPkg": "react-native-grid-list", "npm": { - "downloads": 204, - "weekDownloads": 39, + "downloads": 190, + "weekDownloads": 34, "size": 1057645, "latestRelease": "1.1.0", "latestReleaseDate": "2019-10-01T14:44:52.319Z" @@ -24562,7 +24584,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.337, + "popularity": -1.345, "topicSearchString": "grid-list grid grid-view grid-component grid-layout react-native react flatlist flatlist-grid" }, { @@ -24580,6 +24602,7 @@ "https://raw.githubusercontent.com/JimmyDaddy/react-native-image-marker/master/assets/alphabgonly.png", "https://raw.githubusercontent.com/JimmyDaddy/react-native-image-marker/master/assets/textswihoutbg.png" ], + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/JimmyDaddy/react-native-image-marker", @@ -24597,7 +24620,7 @@ "forks": 103, "issues": 16, "subscribers": 3, - "stars": 347, + "stars": 348, "dependencies": 2 }, "name": "react-native-image-marker", @@ -24634,8 +24657,8 @@ }, "npmPkg": "react-native-image-marker", "npm": { - "downloads": 16795, - "weekDownloads": 3173, + "downloads": 16216, + "weekDownloads": 3348, "size": 291612, "latestRelease": "1.2.6", "latestReleaseDate": "2024-02-04T13:25:06.282Z" @@ -24646,7 +24669,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.176, "topicSearchString": "react-native ios android image marker text watermark icon mark photo reactnative icon-watermark" }, { @@ -24674,7 +24697,7 @@ "forks": 169, "issues": 54, "subscribers": 7, - "stars": 669, + "stars": 670, "dependencies": 2 }, "name": "react-native-walkthrough-tooltip", @@ -24704,8 +24727,8 @@ }, "npmPkg": "react-native-walkthrough-tooltip", "npm": { - "downloads": 269346, - "weekDownloads": 54169, + "downloads": 261524, + "weekDownloads": 56412, "size": 49891, "latestRelease": "1.6.0", "latestReleaseDate": "2024-01-09T16:28:39.537Z" @@ -24717,7 +24740,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.183, "topicSearchString": "react react-native walkthrough tooltip popover highlighting" }, { @@ -24771,8 +24794,8 @@ }, "npmPkg": "react-native-canvas", "npm": { - "downloads": 44313, - "weekDownloads": 7388, + "downloads": 43585, + "weekDownloads": 7633, "size": 71319, "latestRelease": "0.1.40", "latestReleaseDate": "2024-06-02T10:21:56.140Z" @@ -24784,7 +24807,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.149, "topicSearchString": "react canvas native javascript graphics" }, { @@ -24842,7 +24865,7 @@ "unmaintained": true, "npmPkg": "react-native-draggable-calendar", "npm": { - "downloads": 24, + "downloads": 25, "weekDownloads": 2, "size": 647560, "latestRelease": "1.0.2", @@ -24911,8 +24934,8 @@ "unmaintained": true, "npmPkg": "rn-pdf-reader-js", "npm": { - "downloads": 21153, - "weekDownloads": 3919, + "downloads": 20628, + "weekDownloads": 4266, "size": 112060, "latestRelease": "4.1.1", "latestReleaseDate": "2020-07-14T14:39:09.885Z" @@ -24923,7 +24946,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.574, "topicSearchString": "react-native pdf pdfjs reader pdf-reader pdf-viewer react-pdf expo" }, { @@ -24985,8 +25008,8 @@ }, "npmPkg": "react-native-snackbar", "npm": { - "downloads": 57132, - "weekDownloads": 10954, + "downloads": 56100, + "weekDownloads": 11226, "size": 178467, "latestRelease": "2.9.0", "latestReleaseDate": "2025-03-29T21:30:01.555Z" @@ -24998,7 +25021,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.17, "topicSearchString": "react-native component ios android material-design snackbar snack-bar material" }, { @@ -25061,7 +25084,7 @@ "unmaintained": true, "npmPkg": "react-native-pseudo-localization", "npm": { - "downloads": 26, + "downloads": 27, "weekDownloads": 3, "size": 9389, "latestRelease": "0.0.2", @@ -25138,8 +25161,8 @@ "unmaintained": true, "npmPkg": "react-native-keyboard-accessory", "npm": { - "downloads": 47924, - "weekDownloads": 8495, + "downloads": 46883, + "weekDownloads": 9285, "size": 30087, "latestRelease": "0.1.16", "latestReleaseDate": "2021-11-29T19:12:30.426Z" @@ -25150,7 +25173,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.582, "topicSearchString": "react react-native keyboard-accessory keyboard ios android react-component input-accessory sticky-views" }, { @@ -25182,7 +25205,7 @@ "forks": 355, "issues": 48, "subscribers": 8, - "stars": 2451, + "stars": 2452, "dependencies": 0 }, "name": "react-native-date-picker", @@ -25216,8 +25239,8 @@ }, "npmPkg": "react-native-date-picker", "npm": { - "downloads": 843737, - "weekDownloads": 166101, + "downloads": 819689, + "weekDownloads": 171797, "size": 3974706, "latestRelease": "5.0.13", "latestReleaseDate": "2025-06-05T18:32:24.047Z" @@ -25228,7 +25251,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.178, "topicSearchString": "datepicker date-picker react-native datetimepicker date-time-picker datepicker-component time-picker timepicker datetime" }, { @@ -25292,8 +25315,8 @@ }, "npmPkg": "react-native-gradients", "npm": { - "downloads": 13639, - "weekDownloads": 2238, + "downloads": 13379, + "weekDownloads": 2334, "size": 32964, "latestRelease": "2.1.1", "latestReleaseDate": "2023-11-03T13:59:48.339Z" @@ -25303,7 +25326,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.139, + "popularity": 0.148, "topicSearchString": "react-component react-native ios android linear-gradient radial-gradient gradient react javascript es6" }, { @@ -25332,7 +25355,7 @@ "forks": 606, "issues": 262, "subscribers": 106, - "stars": 11284, + "stars": 11289, "dependencies": 7 }, "name": "@nozbe/watermelondb", @@ -25371,8 +25394,8 @@ "configPlugin": false }, "npm": { - "downloads": 69195, - "weekDownloads": 12469, + "downloads": 68023, + "weekDownloads": 12522, "size": 1301865, "latestRelease": "0.28.0", "latestReleaseDate": "2025-04-07T12:41:08.478Z" @@ -25385,7 +25408,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.156, "topicSearchString": "database sqlite react react-native indexeddb lokijs watermelon watermelondb offline offline-first persistence reactive rxjs better-sqlite3 db hacktoberfest" }, { @@ -25442,8 +25465,8 @@ }, "npmPkg": "react-native-version-info", "npm": { - "downloads": 33972, - "weekDownloads": 6493, + "downloads": 33479, + "weekDownloads": 6897, "size": 43322, "latestRelease": "1.1.1", "latestReleaseDate": "2021-09-28T22:52:58.444Z" @@ -25453,7 +25476,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.175, "topicSearchString": "react react-native android ios react-component react-android react-ios react-windows" }, { @@ -25489,7 +25512,7 @@ "forks": 973, "issues": 14, "subscribers": 51, - "stars": 3598, + "stars": 3599, "dependencies": 0 }, "name": "react-native-track-player", @@ -25532,8 +25555,8 @@ }, "npmPkg": "react-native-track-player", "npm": { - "downloads": 131930, - "weekDownloads": 26376, + "downloads": 129564, + "weekDownloads": 26845, "size": 386892, "latestRelease": "4.1.2", "latestReleaseDate": "2025-08-12T12:59:09.329Z" @@ -25546,7 +25569,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.176, "topicSearchString": "react react-native track-player audio-player audio player music controls chromecast android ios windows hooks music-player music-library media-control audio-library" }, { @@ -25607,7 +25630,7 @@ "npmPkg": "react-native-hotspot", "npm": { "downloads": 55, - "weekDownloads": 11, + "weekDownloads": 12, "size": 12154, "latestRelease": "0.0.6", "latestReleaseDate": "2019-01-06T00:29:02.304Z" @@ -25617,7 +25640,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.567, + "popularity": -0.55, "topicSearchString": "hotspot tutorial onboarding react react-native expo frontend" }, { @@ -25674,8 +25697,8 @@ "unmaintained": true, "npmPkg": "react-native-text-avatar", "npm": { - "downloads": 231, - "weekDownloads": 58, + "downloads": 228, + "weekDownloads": 61, "size": 81573, "latestRelease": "1.0.7", "latestReleaseDate": "2019-06-06T15:33:24.369Z" @@ -25685,7 +25708,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.285, + "popularity": -1.27, "topicSearchString": "react-native component avatar text letter text-avatar letter-avatar" }, { @@ -25744,8 +25767,8 @@ "unmaintained": true, "npmPkg": "react-native-buglife", "npm": { - "downloads": 603, - "weekDownloads": 13, + "downloads": 611, + "weekDownloads": 16, "latestRelease": "0.1.13", "latestReleaseDate": "2018-01-30T02:04:41.106Z" }, @@ -25754,7 +25777,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.732, + "popularity": -1.728, "topicSearchString": "react-native react-component component react mobile ios android buglife bug-reporting bug-reporter" }, { @@ -25812,8 +25835,8 @@ "unmaintained": true, "npmPkg": "react-native-customize-selected-date", "npm": { - "downloads": 51, - "weekDownloads": 15, + "downloads": 56, + "weekDownloads": 19, "size": 2649648, "latestRelease": "1.0.1", "latestReleaseDate": "2018-12-30T10:00:36.854Z" @@ -25823,7 +25846,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.5, + "popularity": -1.458, "topicSearchString": "customize selected date calendar event customize-event react-native customize-date" }, { @@ -25874,7 +25897,7 @@ }, "npmPkg": "react-native-suggester", "npm": { - "downloads": 18, + "downloads": 19, "weekDownloads": 0, "size": 46034, "latestRelease": "0.1.4", @@ -25941,7 +25964,7 @@ "npmPkg": "react-native-scrolling-images", "npm": { "downloads": 124, - "weekDownloads": 3, + "weekDownloads": 4, "size": 4412552, "latestRelease": "1.0.6", "latestReleaseDate": "2022-06-28T23:16:07.401Z" @@ -25951,7 +25974,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.729, + "popularity": -1.722, "topicSearchString": "animated scrolling image background parallax" }, { @@ -26010,8 +26033,8 @@ }, "npmPkg": "react-native-instagram-login", "npm": { - "downloads": 1854, - "weekDownloads": 229, + "downloads": 1804, + "weekDownloads": 214, "size": 454488, "latestRelease": "2.0.6", "latestReleaseDate": "2023-06-26T11:15:21.365Z" @@ -26022,7 +26045,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.105, + "popularity": 0.101, "topicSearchString": "instagram login auth react-native ios android instagram-login instagram-api instagram-oauth authentication oauth" }, { @@ -26078,8 +26101,8 @@ "unmaintained": true, "npmPkg": "react-native-ruler", "npm": { - "downloads": 103, - "weekDownloads": 8, + "downloads": 96, + "weekDownloads": 2, "size": 722087, "latestRelease": "0.1.0", "latestReleaseDate": "2019-05-24T17:09:43.770Z" @@ -26089,7 +26112,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.433, + "popularity": -1.482, "topicSearchString": "devtools measure ruler react react-native expo" }, { @@ -26143,7 +26166,7 @@ "unmaintained": true, "npmPkg": "react-native-safe-image", "npm": { - "downloads": 50, + "downloads": 51, "weekDownloads": 4, "size": 6685, "latestRelease": "1.2.0", @@ -26154,7 +26177,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.427, + "popularity": -1.433, "topicSearchString": "react-native image fallback typescript" }, { @@ -26166,6 +26189,7 @@ "tvos": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26180,10 +26204,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-apple-authentication", @@ -26213,8 +26237,8 @@ }, "npmPkg": "expo-apple-authentication", "npm": { - "downloads": 930658, - "weekDownloads": 194228, + "downloads": 905648, + "weekDownloads": 188539, "size": 116964, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-11T20:26:55.303Z" @@ -26252,10 +26276,10 @@ "updatedAt": "2025-10-03T11:06:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-03T11:06:24Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-application", @@ -26283,8 +26307,8 @@ }, "npmPkg": "expo-application", "npm": { - "downloads": 4296260, - "weekDownloads": 834487, + "downloads": 4206850, + "weekDownloads": 846729, "size": 99150, "latestRelease": "7.0.7", "latestReleaseDate": "2025-09-11T20:26:58.712Z" @@ -26298,7 +26322,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.171, "topicSearchString": "react-native expo expo-application" }, { @@ -26310,6 +26334,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26324,10 +26349,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 2 }, "name": "expo-asset", @@ -26355,8 +26380,8 @@ }, "npmPkg": "expo-asset", "npm": { - "downloads": 7382159, - "weekDownloads": 1469951, + "downloads": 7235950, + "weekDownloads": 1487078, "size": 234569, "latestRelease": "12.0.9", "latestReleaseDate": "2025-09-18T21:33:34.428Z" @@ -26370,7 +26395,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.175, "topicSearchString": "react-native expo asset" }, { @@ -26388,6 +26413,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26402,10 +26428,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-av", @@ -26434,8 +26460,8 @@ }, "npmPkg": "expo-av", "npm": { - "downloads": 1612871, - "weekDownloads": 327796, + "downloads": 1587433, + "weekDownloads": 327618, "size": 1298055, "latestRelease": "16.0.7", "latestReleaseDate": "2025-09-11T20:26:40.031Z" @@ -26449,7 +26475,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.175, "topicSearchString": "expo react-native audio video" }, { @@ -26460,6 +26486,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26474,10 +26501,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-background-fetch", @@ -26507,8 +26534,8 @@ }, "npmPkg": "expo-background-fetch", "npm": { - "downloads": 178103, - "weekDownloads": 33775, + "downloads": 175632, + "weekDownloads": 33619, "size": 89627, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:26:33.758Z" @@ -26521,7 +26548,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.163, "topicSearchString": "expo react-native fetch background background-fetch" }, { @@ -26549,10 +26576,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-battery", @@ -26580,8 +26607,8 @@ }, "npmPkg": "expo-battery", "npm": { - "downloads": 91950, - "weekDownloads": 20899, + "downloads": 87954, + "weekDownloads": 18695, "size": 123826, "latestRelease": "10.0.7", "latestReleaseDate": "2025-09-11T20:26:16.986Z" @@ -26595,7 +26622,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.193, + "popularity": 0.181, "topicSearchString": "react-native expo expo-battery" }, { @@ -26624,10 +26651,10 @@ "updatedAt": "2025-10-09T13:21:16Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-09T13:21:16Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-blur", @@ -26655,8 +26682,8 @@ }, "npmPkg": "expo-blur", "npm": { - "downloads": 2371960, - "weekDownloads": 473998, + "downloads": 2323174, + "weekDownloads": 477834, "size": 96655, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:26:27.502Z" @@ -26670,7 +26697,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.175, "topicSearchString": "react-native expo expo-blur" }, { @@ -26683,6 +26710,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26697,10 +26725,10 @@ "updatedAt": "2025-10-05T16:45:15Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-05T16:45:15Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-brightness", @@ -26729,8 +26757,8 @@ }, "npmPkg": "expo-brightness", "npm": { - "downloads": 87823, - "weekDownloads": 17046, + "downloads": 85414, + "weekDownloads": 17350, "size": 105332, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:26:13.824Z" @@ -26744,7 +26772,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.173, "topicSearchString": "react-native expo expo-brightness brightness" }, { @@ -26756,6 +26784,7 @@ "android": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26770,10 +26799,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-calendar", @@ -26802,8 +26831,8 @@ }, "npmPkg": "expo-calendar", "npm": { - "downloads": 290222, - "weekDownloads": 57966, + "downloads": 280768, + "weekDownloads": 57159, "size": 496894, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:26:06.728Z" @@ -26817,7 +26846,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.173, "topicSearchString": "react-native expo calendar reminders" }, { @@ -26832,6 +26861,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26846,10 +26876,10 @@ "updatedAt": "2025-10-17T13:35:40Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-17T13:35:40Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-camera", @@ -26877,8 +26907,8 @@ }, "npmPkg": "expo-camera", "npm": { - "downloads": 1831834, - "weekDownloads": 363759, + "downloads": 1797679, + "weekDownloads": 366499, "size": 856717, "latestRelease": "17.0.8", "latestReleaseDate": "2025-09-16T01:55:35.365Z" @@ -26892,7 +26922,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.173, "topicSearchString": "react-native expo camera" }, { @@ -26902,6 +26932,7 @@ "web": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26916,10 +26947,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-cellular", @@ -26947,8 +26978,8 @@ }, "npmPkg": "expo-cellular", "npm": { - "downloads": 39414, - "weekDownloads": 7515, + "downloads": 38613, + "weekDownloads": 7450, "size": 120223, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-11T20:26:02.035Z" @@ -26961,7 +26992,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.164, "topicSearchString": "react-native expo expo-cellular" }, { @@ -26987,10 +27018,10 @@ "updatedAt": "2025-09-24T16:46:32Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-24T16:46:32Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 2 }, "name": "expo-constants", @@ -27018,8 +27049,8 @@ }, "npmPkg": "expo-constants", "npm": { - "downloads": 8344111, - "weekDownloads": 1686295, + "downloads": 8184854, + "weekDownloads": 1711602, "size": 128424, "latestRelease": "18.0.9", "latestReleaseDate": "2025-09-16T20:36:29.256Z" @@ -27033,7 +27064,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.178, "topicSearchString": "react-native expo constants" }, { @@ -27042,6 +27073,7 @@ "android": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -27056,10 +27088,10 @@ "updatedAt": "2025-10-17T09:55:16Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-17T09:55:16Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-contacts", @@ -27087,8 +27119,8 @@ }, "npmPkg": "expo-contacts", "npm": { - "downloads": 340908, - "weekDownloads": 68584, + "downloads": 331405, + "weekDownloads": 68002, "size": 383075, "latestRelease": "15.0.9", "latestReleaseDate": "2025-10-01T00:23:16.955Z" @@ -27102,7 +27134,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.174, "topicSearchString": "react-native expo contacts" }, { @@ -27131,10 +27163,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-crypto", @@ -27167,8 +27199,8 @@ }, "npmPkg": "expo-crypto", "npm": { - "downloads": 2712907, - "weekDownloads": 530472, + "downloads": 2648851, + "weekDownloads": 535319, "size": 113953, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:25:44.611Z" @@ -27182,7 +27214,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.172, "topicSearchString": "react-native web expo crypto ios android web native" }, { @@ -27211,10 +27243,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-device", @@ -27242,8 +27274,8 @@ }, "npmPkg": "expo-device", "npm": { - "downloads": 2534991, - "weekDownloads": 496720, + "downloads": 2475107, + "weekDownloads": 504283, "size": 168182, "latestRelease": "8.0.9", "latestReleaseDate": "2025-10-01T00:23:01.101Z" @@ -27257,7 +27289,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.173, "topicSearchString": "react-native expo expo-device" }, { @@ -27268,6 +27300,7 @@ "expoGo": true, "newArchitecture": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -27282,10 +27315,10 @@ "updatedAt": "2025-09-17T16:20:32Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-17T16:20:32Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-document-picker", @@ -27314,8 +27347,8 @@ }, "npmPkg": "expo-document-picker", "npm": { - "downloads": 1357822, - "weekDownloads": 266628, + "downloads": 1331632, + "weekDownloads": 271419, "size": 105965, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:25:27.742Z" @@ -27328,7 +27361,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.173, "topicSearchString": "react-native expo expo-document-picker document-picker" }, { @@ -27342,6 +27375,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -27353,13 +27387,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-08T15:46:13Z", + "updatedAt": "2025-10-20T10:50:05Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-10-08T15:46:13Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "pushedAt": "2025-10-20T10:50:05Z", + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-file-system", @@ -27388,8 +27422,8 @@ }, "npmPkg": "expo-file-system", "npm": { - "downloads": 8172844, - "weekDownloads": 1583628, + "downloads": 8035935, + "weekDownloads": 1619249, "size": 826832, "latestRelease": "19.0.17", "latestReleaseDate": "2025-10-09T19:33:35.051Z" @@ -27403,7 +27437,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.171, "topicSearchString": "react-native expo file-system file" }, { @@ -27418,6 +27452,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -27432,10 +27467,10 @@ "updatedAt": "2025-10-03T11:02:07Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-03T11:02:07Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-font", @@ -27463,8 +27498,8 @@ }, "npmPkg": "expo-font", "npm": { - "downloads": 7525343, - "weekDownloads": 1433558, + "downloads": 7398057, + "weekDownloads": 1452879, "size": 221886, "latestRelease": "14.0.9", "latestReleaseDate": "2025-10-09T19:33:30.236Z" @@ -27478,7 +27513,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.167, "topicSearchString": "react-native expo font" }, { @@ -27505,10 +27540,10 @@ "updatedAt": "2025-09-24T22:46:28Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-24T22:46:28Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-gl", @@ -27538,8 +27573,8 @@ }, "npmPkg": "expo-gl", "npm": { - "downloads": 127632, - "weekDownloads": 23028, + "downloads": 127248, + "weekDownloads": 23762, "size": 1677281, "latestRelease": "16.0.7", "latestReleaseDate": "2025-09-11T20:25:07.882Z" @@ -27553,7 +27588,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.159, "topicSearchString": "react-native expo gl glview webgl" }, { @@ -27580,10 +27615,10 @@ "updatedAt": "2025-09-18T10:09:58Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-18T10:09:58Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-haptics", @@ -27612,8 +27647,8 @@ }, "npmPkg": "expo-haptics", "npm": { - "downloads": 3010319, - "weekDownloads": 599931, + "downloads": 2952736, + "weekDownloads": 605454, "size": 79943, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:24:59.272Z" @@ -27626,7 +27661,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.174, "topicSearchString": "react-native expo expo-haptics haptics" }, { @@ -27654,10 +27689,10 @@ "updatedAt": "2025-09-17T15:06:11Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-17T15:06:11Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-image-manipulator", @@ -27685,8 +27720,8 @@ }, "npmPkg": "expo-image-manipulator", "npm": { - "downloads": 1064833, - "weekDownloads": 205248, + "downloads": 1045226, + "weekDownloads": 207771, "size": 194010, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-10T18:41:16.637Z" @@ -27699,7 +27734,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.169, "topicSearchString": "react-native expo expo-image-manipulator" }, { @@ -27713,6 +27748,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -27727,10 +27763,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-image-picker", @@ -27760,8 +27796,8 @@ }, "npmPkg": "expo-image-picker", "npm": { - "downloads": 2362524, - "weekDownloads": 450991, + "downloads": 2321500, + "weekDownloads": 456675, "size": 514405, "latestRelease": "17.0.8", "latestReleaseDate": "2025-09-11T20:24:50.405Z" @@ -27775,7 +27811,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.167, "topicSearchString": "react-native expo image picker image-picker" }, { @@ -27798,10 +27834,10 @@ "updatedAt": "2025-09-17T15:06:39Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-17T15:06:39Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-intent-launcher", @@ -27831,8 +27867,8 @@ }, "npmPkg": "expo-intent-launcher", "npm": { - "downloads": 312130, - "weekDownloads": 59472, + "downloads": 303973, + "weekDownloads": 60968, "size": 153498, "latestRelease": "13.0.7", "latestReleaseDate": "2025-09-11T20:24:53.583Z" @@ -27845,7 +27881,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.17, "topicSearchString": "react-native expo expo-intent-launcher intent launcher" }, { @@ -27873,10 +27909,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-keep-awake", @@ -27905,8 +27941,8 @@ }, "npmPkg": "expo-keep-awake", "npm": { - "downloads": 7089560, - "weekDownloads": 1379899, + "downloads": 6955856, + "weekDownloads": 1398351, "size": 59680, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:24:45.573Z" @@ -27919,7 +27955,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.171, "topicSearchString": "react-native expo awake keep-awake" }, { @@ -27948,10 +27984,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-linear-gradient", @@ -27979,8 +28015,8 @@ }, "npmPkg": "expo-linear-gradient", "npm": { - "downloads": 3472354, - "weekDownloads": 735512, + "downloads": 3396406, + "weekDownloads": 741244, "size": 102960, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:24:39.486Z" @@ -27993,7 +28029,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.186, "topicSearchString": "react-native expo gradient" }, { @@ -28004,6 +28040,7 @@ "expoGo": true, "newArchitecture": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -28018,10 +28055,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-local-authentication", @@ -28053,8 +28090,8 @@ }, "npmPkg": "expo-local-authentication", "npm": { - "downloads": 898212, - "weekDownloads": 172697, + "downloads": 878221, + "weekDownloads": 178070, "size": 128326, "latestRelease": "17.0.7", "latestReleaseDate": "2025-09-11T20:24:30.286Z" @@ -28067,7 +28104,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.172, "topicSearchString": "react-native expo authentication auth touchid faceid fingerprint" }, { @@ -28079,6 +28116,7 @@ "expoGo": true, "newArchitecture": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -28093,10 +28131,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-localization", @@ -28126,8 +28164,8 @@ }, "npmPkg": "expo-localization", "npm": { - "downloads": 1859496, - "weekDownloads": 357763, + "downloads": 1815094, + "weekDownloads": 363260, "size": 146564, "latestRelease": "17.0.7", "latestReleaseDate": "2025-09-11T20:24:25.960Z" @@ -28141,7 +28179,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.17, "topicSearchString": "react-native expo localization locales l10n" }, { @@ -28155,6 +28193,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -28169,10 +28208,10 @@ "updatedAt": "2025-09-18T10:10:25Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-18T10:10:25Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-location", @@ -28205,8 +28244,8 @@ }, "npmPkg": "expo-location", "npm": { - "downloads": 1693724, - "weekDownloads": 339492, + "downloads": 1661716, + "weekDownloads": 343019, "size": 572754, "latestRelease": "19.0.7", "latestReleaseDate": "2025-09-11T20:24:20.842Z" @@ -28219,7 +28258,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.175, "topicSearchString": "react-native expo location geolocation coords geocoding compass heading" }, { @@ -28229,6 +28268,7 @@ "web": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -28243,10 +28283,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-mail-composer", @@ -28275,8 +28315,8 @@ }, "npmPkg": "expo-mail-composer", "npm": { - "downloads": 196095, - "weekDownloads": 35774, + "downloads": 193557, + "weekDownloads": 37631, "size": 93038, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:24:12.666Z" @@ -28290,7 +28330,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.165, "topicSearchString": "react-native expo mail composer" }, { @@ -28304,6 +28344,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -28318,10 +28359,10 @@ "updatedAt": "2025-10-02T09:11:23Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-02T09:11:23Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-media-library", @@ -28353,8 +28394,8 @@ }, "npmPkg": "expo-media-library", "npm": { - "downloads": 851572, - "weekDownloads": 172015, + "downloads": 835963, + "weekDownloads": 171763, "size": 1093857, "latestRelease": "18.2.0", "latestReleaseDate": "2025-09-16T20:35:47.752Z" @@ -28367,7 +28408,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.172, + "popularity": 0.175, "topicSearchString": "react-native expo media library cameraroll photos videos" }, { @@ -28392,10 +28433,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-network", @@ -28423,8 +28464,8 @@ }, "npmPkg": "expo-network", "npm": { - "downloads": 499614, - "weekDownloads": 98248, + "downloads": 484790, + "weekDownloads": 96729, "size": 89966, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-11T20:23:58.047Z" @@ -28437,7 +28478,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.17, "topicSearchString": "react-native expo expo-network" }, { @@ -28449,6 +28490,7 @@ "android": true, "expoGo": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -28463,10 +28505,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 7 }, "name": "expo-notifications", @@ -28496,8 +28538,8 @@ }, "npmPkg": "expo-notifications", "npm": { - "downloads": 2595645, - "weekDownloads": 498705, + "downloads": 2546378, + "weekDownloads": 507840, "size": 1547675, "latestRelease": "0.32.12", "latestReleaseDate": "2025-10-01T00:22:29.226Z" @@ -28511,7 +28553,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.17, "topicSearchString": "react-native expo notifications expo-notifications push-nofifications" }, { @@ -28577,8 +28619,8 @@ }, "npmPkg": "expo-pixi", "npm": { - "downloads": 515, - "weekDownloads": 77, + "downloads": 496, + "weekDownloads": 73, "size": 42398, "latestRelease": "2.1.1", "latestReleaseDate": "2022-05-16T16:19:00.766Z" @@ -28590,7 +28632,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.373, + "popularity": -1.374, "topicSearchString": "react native expo exponent game gl graphics opengl 2d pixi pixi.js sprite webgl cross-platform signature" }, { @@ -28614,10 +28656,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-print", @@ -28648,8 +28690,8 @@ }, "npmPkg": "expo-print", "npm": { - "downloads": 337529, - "weekDownloads": 66497, + "downloads": 331138, + "weekDownloads": 67014, "size": 148779, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:23:54.845Z" @@ -28662,7 +28704,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.172, "topicSearchString": "react-native expo print android ios airprint" }, { @@ -28685,10 +28727,10 @@ "updatedAt": "2025-09-16T20:34:34Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-16T20:34:34Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-processing", @@ -28717,8 +28759,8 @@ }, "npmPkg": "expo-processing", "npm": { - "downloads": 1339, - "weekDownloads": 116, + "downloads": 1271, + "weekDownloads": 84, "size": 5371, "latestRelease": "3.0.5", "latestReleaseDate": "2025-09-16T20:35:28.302Z" @@ -28731,7 +28773,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.074, + "popularity": 0.056, "topicSearchString": "expo processing.js graphics opengl gl" }, { @@ -28745,6 +28787,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -28759,10 +28802,10 @@ "updatedAt": "2025-10-09T17:48:51Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-09T17:48:51Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-secure-store", @@ -28792,8 +28835,8 @@ }, "npmPkg": "expo-secure-store", "npm": { - "downloads": 2624627, - "weekDownloads": 490652, + "downloads": 2574613, + "weekDownloads": 500177, "size": 212953, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:23:31.069Z" @@ -28807,7 +28850,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.165, "topicSearchString": "react-native expo expo-secure-store secure store" }, { @@ -28826,6 +28869,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -28840,10 +28884,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-sensors", @@ -28878,8 +28922,8 @@ }, "npmPkg": "expo-sensors", "npm": { - "downloads": 453759, - "weekDownloads": 103677, + "downloads": 438076, + "weekDownloads": 99032, "size": 341443, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:23:23.611Z" @@ -28892,7 +28936,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.194, + "popularity": 0.192, "topicSearchString": "react-native expo sensors accelerometer devicemotion gyroscope lightsensor magnetometer pedometer barometer" }, { @@ -28915,10 +28959,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-sms", @@ -28946,8 +28990,8 @@ }, "npmPkg": "expo-sms", "npm": { - "downloads": 165994, - "weekDownloads": 30734, + "downloads": 164489, + "weekDownloads": 31449, "size": 70119, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:23:27.085Z" @@ -28961,7 +29005,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.163, "topicSearchString": "react-native expo sms" }, { @@ -28988,10 +29032,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-speech", @@ -29021,8 +29065,8 @@ }, "npmPkg": "expo-speech", "npm": { - "downloads": 224087, - "weekDownloads": 41929, + "downloads": 222787, + "weekDownloads": 42919, "size": 124755, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:23:34.287Z" @@ -29035,7 +29079,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.164, "topicSearchString": "react-native expo expo-speech speech voice" }, { @@ -29050,6 +29094,7 @@ "tvos": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -29064,10 +29109,10 @@ "updatedAt": "2025-09-10T18:37:51Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-10T18:37:51Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-sqlite", @@ -29098,8 +29143,8 @@ }, "npmPkg": "expo-sqlite", "npm": { - "downloads": 519338, - "weekDownloads": 96537, + "downloads": 512983, + "weekDownloads": 97118, "size": 74309093, "latestRelease": "16.0.8", "latestReleaseDate": "2025-09-10T18:40:43.856Z" @@ -29112,7 +29157,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.161, "topicSearchString": "react-native expo sqlite sql storage async-storage" }, { @@ -29139,10 +29184,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-store-review", @@ -29173,8 +29218,8 @@ }, "npmPkg": "expo-store-review", "npm": { - "downloads": 703904, - "weekDownloads": 128757, + "downloads": 686222, + "weekDownloads": 131224, "size": 54769, "latestRelease": "9.0.8", "latestReleaseDate": "2025-10-01T00:22:23.965Z" @@ -29188,7 +29233,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.163, "topicSearchString": "react-native expo expo-store-review reviews app-store google-play-store" }, { @@ -29200,6 +29245,7 @@ "android": true, "tvos": true, "expoGo": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -29214,10 +29260,10 @@ "updatedAt": "2025-10-16T10:21:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-16T10:21:20Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-task-manager", @@ -29247,8 +29293,8 @@ }, "npmPkg": "expo-task-manager", "npm": { - "downloads": 614722, - "weekDownloads": 119342, + "downloads": 600777, + "weekDownloads": 118052, "size": 260128, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:22:53.498Z" @@ -29262,7 +29308,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.167, "topicSearchString": "expo react-native task-manager task background" }, { @@ -29332,8 +29378,8 @@ }, "npmPkg": "expo-three", "npm": { - "downloads": 67015, - "weekDownloads": 13558, + "downloads": 65757, + "weekDownloads": 13295, "size": 126395, "latestRelease": "8.0.0", "latestReleaseDate": "2024-07-28T18:03:20.616Z" @@ -29373,10 +29419,10 @@ "updatedAt": "2025-09-18T10:10:06Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-18T10:10:06Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-video-thumbnails", @@ -29407,8 +29453,8 @@ }, "npmPkg": "expo-video-thumbnails", "npm": { - "downloads": 202362, - "weekDownloads": 39980, + "downloads": 195960, + "weekDownloads": 38665, "size": 65536, "latestRelease": "10.0.7", "latestReleaseDate": "2025-09-10T18:40:05.356Z" @@ -29435,6 +29481,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -29449,10 +29496,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-web-browser", @@ -29482,8 +29529,8 @@ }, "npmPkg": "expo-web-browser", "npm": { - "downloads": 6086762, - "weekDownloads": 1197411, + "downloads": 6011476, + "weekDownloads": 1219848, "size": 268368, "latestRelease": "15.0.8", "latestReleaseDate": "2025-10-01T00:22:10.507Z" @@ -29497,7 +29544,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.172, "topicSearchString": "react-native expo expo-web-browser web browser" }, { @@ -29522,10 +29569,10 @@ "updatedAt": "2025-10-15T18:17:51Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-15T18:17:51Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 15 }, "name": "jest-expo", @@ -29548,8 +29595,8 @@ }, "npmPkg": "jest-expo", "npm": { - "downloads": 2857927, - "weekDownloads": 548887, + "downloads": 2789057, + "weekDownloads": 560385, "size": 121978, "latestRelease": "54.0.12", "latestReleaseDate": "2025-09-18T21:32:10.473Z" @@ -29563,7 +29610,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.171, "topicSearchString": "" }, { @@ -29690,8 +29737,8 @@ "configPlugin": false }, "npm": { - "downloads": 657, - "weekDownloads": 69, + "downloads": 1932, + "weekDownloads": 84, "size": 128960, "latestRelease": "3.2.2", "latestReleaseDate": "2020-09-30T11:58:24.477Z" @@ -29701,7 +29748,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.41, + "popularity": -0.713, "topicSearchString": "in-app browser react-native custom-tabs tabs chrome chrome-custom-tabs safari-view-controller sfsafariviewcontroller kotlin swift typescript flow" }, { @@ -29758,8 +29805,8 @@ "unmaintained": true, "npmPkg": "react-native-window-guard", "npm": { - "downloads": 429, - "weekDownloads": 89, + "downloads": 436, + "weekDownloads": 100, "size": 423025, "latestRelease": "1.0.6", "latestReleaseDate": "2020-01-24T10:00:33.996Z" @@ -29769,7 +29816,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.322, + "popularity": -1.304, "topicSearchString": "react-native component safearea ios android" }, { @@ -29820,8 +29867,8 @@ "unmaintained": true, "npmPkg": "react-native-dns-lookup", "npm": { - "downloads": 3789, - "weekDownloads": 613, + "downloads": 3811, + "weekDownloads": 687, "size": 18220, "latestRelease": "1.0.6", "latestReleaseDate": "2022-10-06T19:49:26.758Z" @@ -29831,7 +29878,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, + "popularity": -0.597, "topicSearchString": "dns" }, { @@ -29904,8 +29951,8 @@ }, "npmPkg": "react-native-input-spinner", "npm": { - "downloads": 7346, - "weekDownloads": 885, + "downloads": 7296, + "weekDownloads": 950, "size": 464934, "latestRelease": "1.8.1", "latestReleaseDate": "2023-04-25T15:29:36.778Z" @@ -29917,7 +29964,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.102, + "popularity": 0.111, "topicSearchString": "component react-component react-native android ios windows reactnative spinner number input float real integer decimal int selector" }, { @@ -29972,8 +30019,8 @@ }, "unmaintained": true, "npm": { - "downloads": 1727, - "weekDownloads": 278, + "downloads": 1676, + "weekDownloads": 289, "size": 30714, "latestRelease": "1.5.0", "latestReleaseDate": "2022-08-02T20:30:04.704Z" @@ -29983,7 +30030,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.613, + "popularity": -0.603, "topicSearchString": "react-native keyboard input keyboard-aware keyboardavoid" }, { @@ -30036,7 +30083,7 @@ }, "unmaintained": true, "npm": { - "downloads": 280, + "downloads": 287, "weekDownloads": 32, "size": 16898, "latestRelease": "1.2.0", @@ -30047,7 +30094,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.402, + "popularity": -1.404, "topicSearchString": "react-native expandable accordion" }, { @@ -30100,8 +30147,8 @@ }, "unmaintained": true, "npm": { - "downloads": 182, - "weekDownloads": 17, + "downloads": 189, + "weekDownloads": 26, "size": 9146, "latestRelease": "2.1.0", "latestReleaseDate": "2022-08-02T20:29:57.380Z" @@ -30111,7 +30158,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.419, + "popularity": -1.382, "topicSearchString": "react-native fadein fadeout" }, { @@ -30165,8 +30212,8 @@ }, "unmaintained": true, "npm": { - "downloads": 3510, - "weekDownloads": 704, + "downloads": 3451, + "weekDownloads": 732, "size": 15925, "latestRelease": "1.2.0", "latestReleaseDate": "2022-08-02T20:30:11.410Z" @@ -30176,7 +30223,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.57, "topicSearchString": "react-native slider swiper gallery" }, { @@ -30234,8 +30281,8 @@ "unmaintained": true, "npmPkg": "react-native-eva-icons", "npm": { - "downloads": 20775, - "weekDownloads": 3995, + "downloads": 20367, + "weekDownloads": 4228, "size": 1162020, "latestRelease": "1.3.1", "latestReleaseDate": "2020-04-08T11:12:49.822Z" @@ -30246,7 +30293,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.574, "topicSearchString": "react-native eva-icons svg icons-source" }, { @@ -30308,8 +30355,8 @@ "unmaintained": true, "npmPkg": "react-native-nested-listview", "npm": { - "downloads": 2230, - "weekDownloads": 253, + "downloads": 2247, + "weekDownloads": 328, "size": 479208, "latestRelease": "0.14.2", "latestReleaseDate": "2022-10-14T16:56:40.784Z" @@ -30320,7 +30367,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.653, + "popularity": -0.626, "topicSearchString": "react native list nested react-native listview nested-structures nested-objects reactjs react-component tree treeview android" }, { @@ -30376,8 +30423,8 @@ "unmaintained": true, "npmPkg": "react-native-wifi-p2p", "npm": { - "downloads": 1005, - "weekDownloads": 237, + "downloads": 970, + "weekDownloads": 241, "size": 73291, "latestRelease": "3.6.0", "latestReleaseDate": "2023-08-21T07:46:34.867Z" @@ -30388,7 +30435,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.549, + "popularity": -1.289, "topicSearchString": "react-native android p2p peer-to-peer wifi-direct wi-fi-direct wifi-p2p-manager wifi" }, { @@ -30458,8 +30505,8 @@ }, "npmPkg": "react-native-bundle-splitter", "npm": { - "downloads": 8454, - "weekDownloads": 1631, + "downloads": 8029, + "weekDownloads": 1552, "size": 20497, "latestRelease": "3.0.1", "latestReleaseDate": "2024-07-22T10:46:38.811Z" @@ -30529,8 +30576,8 @@ "unmaintained": true, "npmPkg": "react-native-gesture-detector", "npm": { - "downloads": 67, - "weekDownloads": 4, + "downloads": 69, + "weekDownloads": 3, "size": 48992, "latestRelease": "1.1.2", "latestReleaseDate": "2020-07-06T00:34:02.005Z" @@ -30540,7 +30587,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.447, + "popularity": -1.462, "topicSearchString": "react-native gesture custom-gestures detection component" }, { @@ -30606,8 +30653,8 @@ "unmaintained": true, "npmPkg": "react-native-indicators", "npm": { - "downloads": 67819, - "weekDownloads": 13813, + "downloads": 66166, + "weekDownloads": 14283, "size": 36294, "latestRelease": "0.17.0", "latestReleaseDate": "2019-10-15T21:33:58.446Z" @@ -30619,7 +30666,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.577, + "popularity": -0.567, "topicSearchString": "react react-component react-native ios android activity indicator spinner pacman material" }, { @@ -30684,8 +30731,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 458800, - "weekDownloads": 87636, + "downloads": 444729, + "weekDownloads": 90533, "size": 206250, "latestRelease": "10.1.7", "latestReleaseDate": "2025-09-20T20:10:54.000Z" @@ -30697,7 +30744,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.173, "topicSearchString": "react-native document picker uidocumentmenuviewcontroller dropbox google-drive icloud" }, { @@ -30767,8 +30814,8 @@ "unmaintained": true, "npmPkg": "react-native-modern-datepicker", "npm": { - "downloads": 13871, - "weekDownloads": 3186, + "downloads": 13617, + "weekDownloads": 3110, "size": 42809, "latestRelease": "1.0.0-beta.91", "latestReleaseDate": "2020-07-23T15:33:00.852Z" @@ -30780,7 +30827,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.555, + "popularity": -0.556, "topicSearchString": "react react-native datepicker calendar calendars persian-calendar jalaali-calendar time-picker month-picker persian jalaali customizable-datepicker" }, { @@ -30844,8 +30891,8 @@ "configPlugin": false }, "npm": { - "downloads": 196269, - "weekDownloads": 38153, + "downloads": 190034, + "weekDownloads": 38545, "size": 34660, "latestRelease": "2.2.2", "latestReleaseDate": "2020-03-27T09:10:27.540Z" @@ -30858,7 +30905,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.172, "topicSearchString": "multi-slider react-component react-components react native slider multiple react-native component ios android" }, { @@ -30915,8 +30962,8 @@ }, "unmaintained": true, "npm": { - "downloads": 812672, - "weekDownloads": 169043, + "downloads": 782419, + "weekDownloads": 171683, "size": 121198, "latestRelease": "6.2.1", "latestReleaseDate": "2022-05-11T17:05:28.532Z" @@ -30928,7 +30975,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.573, + "popularity": -0.563, "topicSearchString": "react-native component android ios cookies webview" }, { @@ -30981,8 +31028,8 @@ }, "npmPkg": "react-native-create-thumbnail", "npm": { - "downloads": 94163, - "weekDownloads": 19935, + "downloads": 90644, + "weekDownloads": 21531, "size": 47131, "latestRelease": "2.1.1", "latestReleaseDate": "2025-03-25T18:27:50.211Z" @@ -30992,7 +31039,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.202, "topicSearchString": "react-native thumbnails video android ios" }, { @@ -31024,13 +31071,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-17T14:23:26Z", + "updatedAt": "2025-10-20T10:43:09Z", "createdAt": "2018-04-25T06:35:29Z", - "pushedAt": "2025-10-17T14:23:26Z", + "pushedAt": "2025-10-20T10:43:09Z", "forks": 1372, "issues": 203, "subscribers": 80, - "stars": 10341, + "stars": 10344, "dependencies": 2 }, "name": "react-native-reanimated", @@ -31059,8 +31106,8 @@ }, "npmPkg": "react-native-reanimated", "npm": { - "downloads": 8191956, - "weekDownloads": 1588183, + "downloads": 8022439, + "weekDownloads": 1637749, "size": 3600558, "latestRelease": "4.1.3", "latestReleaseDate": "2025-10-09T14:02:39.807Z" @@ -31073,7 +31120,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.165, + "popularity": 0.174, "topicSearchString": "react-native react native reanimated" }, { @@ -31135,8 +31182,8 @@ }, "unmaintained": true, "npm": { - "downloads": 21178, - "weekDownloads": 3933, + "downloads": 20663, + "weekDownloads": 3912, "size": 210832, "latestRelease": "1.0.0-alpha.22", "latestReleaseDate": "2020-08-14T13:47:41.291Z" @@ -31149,7 +31196,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.589, "topicSearchString": "react-native bottom-sheet reanimated gesture handler" }, { @@ -31216,8 +31263,8 @@ }, "unmaintained": true, "npm": { - "downloads": 15658, - "weekDownloads": 2067, + "downloads": 15473, + "weekDownloads": 2312, "size": 168050, "latestRelease": "1.1.4", "latestReleaseDate": "2022-07-05T11:14:36.595Z" @@ -31228,7 +31275,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.638, + "popularity": -0.623, "topicSearchString": "react-native react-component ios android pinch-to-zoom pinch mobile native component view zoom zoomable double tap react reactjs double-tap" }, { @@ -31354,8 +31401,8 @@ "unmaintained": true, "npmPkg": "emoji-mart-native", "npm": { - "downloads": 3471, - "weekDownloads": 680, + "downloads": 3415, + "weekDownloads": 696, "size": 9383079, "latestRelease": "0.6.5-beta", "latestReleaseDate": "2022-12-28T10:46:02.094Z" @@ -31365,7 +31412,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.583, + "popularity": -0.577, "topicSearchString": "react native react-native emoji picker emoji-mart emoji-picker emoji-component custom-emojis modalpicker" }, { @@ -31390,9 +31437,9 @@ "createdAt": "2016-02-10T16:06:07Z", "pushedAt": "2025-10-09T16:29:30Z", "forks": 1483, - "issues": 25, + "issues": 26, "subscribers": 233, - "stars": 19236, + "stars": 19239, "dependencies": 6 }, "name": "ignite-cli", @@ -31421,8 +31468,8 @@ "configPlugin": false }, "npm": { - "downloads": 32506, - "weekDownloads": 6857, + "downloads": 31955, + "weekDownloads": 7162, "size": 1886418, "latestRelease": "11.3.2", "latestReleaseDate": "2025-10-09T16:29:36.667Z" @@ -31435,7 +31482,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.179, + "popularity": 0.191, "topicSearchString": "cli react-native generator boilerplate expo mst" }, { @@ -31461,7 +31508,7 @@ "forks": 955, "issues": 133, "subscribers": 156, - "stars": 15381, + "stars": 15382, "dependencies": 0 }, "name": "reactotron", @@ -31494,8 +31541,8 @@ }, "npmPkg": "reactotron", "npm": { - "downloads": 936, - "weekDownloads": 192, + "downloads": 885, + "weekDownloads": 159, "latestRelease": "0.9.0", "latestReleaseDate": "2016-08-09T12:27:37.454Z" }, @@ -31508,7 +31555,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.575, + "popularity": -0.597, "topicSearchString": "react react-native reactjs reactnative debugging desktop reactotron redux redux-saga" }, { @@ -31564,8 +31611,8 @@ }, "npmPkg": "apisauce", "npm": { - "downloads": 574108, - "weekDownloads": 107894, + "downloads": 561920, + "weekDownloads": 112745, "size": 33143, "latestRelease": "3.2.1", "latestReleaseDate": "2025-10-14T16:47:18.238Z" @@ -31577,7 +31624,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.171, "topicSearchString": "axios api network http promise react-native reactjs" }, { @@ -31588,6 +31635,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/transistorsoft/react-native-background-geolocation", @@ -31641,8 +31689,8 @@ }, "npmPkg": "react-native-background-geolocation", "npm": { - "downloads": 82669, - "weekDownloads": 14550, + "downloads": 80145, + "weekDownloads": 14701, "size": 41669764, "latestRelease": "4.19.0", "latestReleaseDate": "2025-09-08T17:46:18.451Z" @@ -31653,7 +31701,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.156, "topicSearchString": "react-native react-component ios android background geolocation tracking geofence geofencing background-location background-geolocation location-tracking" }, { @@ -31716,7 +31764,7 @@ "npmPkg": "react-native-ui-blueprint", "npm": { "downloads": 197, - "weekDownloads": 14, + "weekDownloads": 13, "size": 232638, "latestRelease": "0.2.0-pre.0", "latestReleaseDate": "2019-09-21T02:12:06.475Z" @@ -31726,7 +31774,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.439, + "popularity": -1.443, "topicSearchString": "ruler pixel-perfect grid guides designer mobile ui ux dev-tools developer-tools react-native pixel" }, { @@ -31750,7 +31798,7 @@ "updatedAt": "2024-11-04T13:42:45Z", "createdAt": "2018-07-03T13:45:20Z", "pushedAt": "2024-11-04T13:42:45Z", - "forks": 28, + "forks": 27, "issues": 7, "subscribers": 46, "stars": 302, @@ -31783,8 +31831,8 @@ }, "npmPkg": "eslint-plugin-react-native-a11y", "npm": { - "downloads": 416703, - "weekDownloads": 78366, + "downloads": 406475, + "weekDownloads": 81840, "size": 67659, "latestRelease": "3.5.1", "latestReleaseDate": "2024-11-04T13:43:24.862Z" @@ -31796,7 +31844,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.171, "topicSearchString": "eslint eslintplugin eslint-plugin a11y accessibility react-native" }, { @@ -31854,8 +31902,8 @@ }, "npmPkg": "rn-zendesk", "npm": { - "downloads": 322, - "weekDownloads": 61, + "downloads": 308, + "weekDownloads": 60, "size": 91149, "latestRelease": "4.0.0", "latestReleaseDate": "2025-01-30T06:38:24.150Z" @@ -31865,7 +31913,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.837, + "popularity": -0.833, "topicSearchString": "zendesk react native react-native ios android support rn-zendesk help-center zendesk-help" }, { @@ -31923,8 +31971,8 @@ }, "unmaintained": true, "npm": { - "downloads": 58965, - "weekDownloads": 11663, + "downloads": 56840, + "weekDownloads": 11797, "size": 36422, "latestRelease": "1.0.5", "latestReleaseDate": "2022-11-07T02:18:33.161Z" @@ -31935,7 +31983,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, + "popularity": -0.574, "topicSearchString": "react-native androidprogressbar android progress-bar progressbar hacktoberfest" }, { @@ -32001,8 +32049,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 57148, - "weekDownloads": 11654, + "downloads": 55239, + "weekDownloads": 12042, "size": 530736, "latestRelease": "1.5.0", "latestReleaseDate": "2024-11-15T03:21:39.570Z" @@ -32013,7 +32061,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.185, "topicSearchString": "progressviewios progress progress-view react-native progress-bar ios hacktoberfest windows macos" }, { @@ -32041,7 +32089,7 @@ "forks": 135, "issues": 72, "subscribers": 7, - "stars": 745, + "stars": 746, "dependencies": 0 }, "name": "@react-native-clipboard/clipboard", @@ -32070,8 +32118,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 1747166, - "weekDownloads": 344964, + "downloads": 1693403, + "weekDownloads": 351019, "size": 203745, "latestRelease": "1.16.3", "latestReleaseDate": "2025-06-28T05:00:24.469Z" @@ -32082,7 +32130,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.176, "topicSearchString": "clipboard getstring react-native setstring hacktoberfest" }, { @@ -32142,8 +32190,8 @@ "configPlugin": false }, "npm": { - "downloads": 216269, - "weekDownloads": 42777, + "downloads": 211324, + "weekDownloads": 43790, "size": 48092, "latestRelease": "2.5.7", "latestReleaseDate": "2024-12-11T01:38:19.547Z" @@ -32155,7 +32203,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.176, "topicSearchString": "segmentedcontrolios react-native segmented-control hacktoberfest" }, { @@ -32163,6 +32211,7 @@ "ios": true, "android": true, "npmPkg": "@react-native-voice/voice", + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/react-native-voice/voice", @@ -32180,7 +32229,7 @@ "forks": 544, "issues": 244, "subscribers": 33, - "stars": 2070, + "stars": 2072, "dependencies": 1 }, "name": "@react-native-voice/voice", @@ -32211,8 +32260,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 103347, - "weekDownloads": 22175, + "downloads": 101402, + "weekDownloads": 23097, "size": 608085, "latestRelease": "3.2.4", "latestReleaseDate": "2022-05-11T17:42:24.160Z" @@ -32224,7 +32273,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.182, + "popularity": 0.194, "topicSearchString": "android ios react-native speech voice speech-recognition voice-recognition" }, { @@ -32288,8 +32337,8 @@ "unmaintained": true, "npmPkg": "react-native-animated-spinkit", "npm": { - "downloads": 25839, - "weekDownloads": 4635, + "downloads": 25286, + "weekDownloads": 4911, "size": 270317, "latestRelease": "1.5.2", "latestReleaseDate": "2021-02-18T15:16:36.174Z" @@ -32300,7 +32349,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, + "popularity": -0.585, "topicSearchString": "react react-native spinkit expo loading spinners animations" }, { @@ -32329,7 +32378,7 @@ "forks": 2915, "issues": 45, "subscribers": 56, - "stars": 6994, + "stars": 6998, "dependencies": 2 }, "name": "react-native-webview", @@ -32353,8 +32402,8 @@ }, "npmPkg": "react-native-webview", "npm": { - "downloads": 5422655, - "weekDownloads": 1058351, + "downloads": 5285358, + "weekDownloads": 1077334, "size": 660551, "latestRelease": "13.16.0", "latestReleaseDate": "2025-08-25T22:29:42.131Z" @@ -32366,7 +32415,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.173, "topicSearchString": "" }, { @@ -32394,7 +32443,7 @@ "forks": 3273, "issues": 73, "subscribers": 166, - "stars": 9649 + "stars": 9650 }, "name": "react-native-camera", "fullName": "react-native-camera/react-native-camera", @@ -32407,8 +32456,8 @@ }, "npmPkg": "react-native-camera", "npm": { - "downloads": 208718, - "weekDownloads": 38500, + "downloads": 204465, + "weekDownloads": 39228, "size": 1189169, "latestRelease": "4.2.1", "latestReleaseDate": "2021-09-21T19:39:56.664Z" @@ -32422,7 +32471,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.587, "topicSearchString": "" }, { @@ -32484,8 +32533,8 @@ }, "npmPkg": "react-native-notifier", "npm": { - "downloads": 44696, - "weekDownloads": 8800, + "downloads": 43467, + "weekDownloads": 8421, "size": 141402, "latestRelease": "2.0.0", "latestReleaseDate": "2024-07-21T15:04:56.063Z" @@ -32497,7 +32546,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.165, "topicSearchString": "react-native ios android expo animation notification swipeable" }, { @@ -32556,7 +32605,7 @@ }, "npmPkg": "expo-ui-kit", "npm": { - "downloads": 229, + "downloads": 227, "weekDownloads": 13, "size": 53095, "latestRelease": "0.1.6", @@ -32630,8 +32679,8 @@ "configPlugin": false }, "npm": { - "downloads": 1954, - "weekDownloads": 390, + "downloads": 2044, + "weekDownloads": 400, "size": 140674, "latestRelease": "3.1.0", "latestReleaseDate": "2024-04-11T10:46:53.789Z" @@ -32643,7 +32692,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.167, "topicSearchString": "react react-native web typescript stacks layout ui view user-interface" }, { @@ -32654,6 +32703,7 @@ "windows": true, "fireos": true, "macos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/zoontek/react-native-localize", @@ -32707,8 +32757,8 @@ }, "npmPkg": "react-native-localize", "npm": { - "downloads": 1618553, - "weekDownloads": 319688, + "downloads": 1570838, + "weekDownloads": 331751, "size": 146304, "latestRelease": "3.5.4", "latestReleaseDate": "2025-10-10T11:55:41.487Z" @@ -32720,7 +32770,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.18, "topicSearchString": "localize react-native macos localization l20n globalization internationalization i18n language-detection ios android" }, { @@ -32740,6 +32790,7 @@ "windows": true, "visionos": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/react-native-datetimepicker/datetimepicker", @@ -32791,8 +32842,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 3696073, - "weekDownloads": 757098, + "downloads": 3596645, + "weekDownloads": 769672, "size": 260968, "latestRelease": "8.4.5", "latestReleaseDate": "2025-09-13T17:23:07.909Z" @@ -32805,7 +32856,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.182, "topicSearchString": "component react-native ios android windows datepicker timepicker datetime datetimepicker hacktoberfest" }, { @@ -32855,8 +32906,8 @@ }, "unmaintained": true, "npm": { - "downloads": 144, - "weekDownloads": 7, + "downloads": 145, + "weekDownloads": 9, "size": 68832, "latestRelease": "0.3.2", "latestReleaseDate": "2021-10-10T06:23:01.002Z" @@ -32867,7 +32918,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.458, + "popularity": -1.447, "topicSearchString": "react-native dual-screen" }, { @@ -32918,8 +32969,8 @@ }, "unmaintained": true, "npm": { - "downloads": 221, - "weekDownloads": 10, + "downloads": 219, + "weekDownloads": 12, "size": 4102131, "latestRelease": "1.3.2", "latestReleaseDate": "2021-12-09T00:35:15.462Z" @@ -32930,7 +32981,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.462, + "popularity": -1.453, "topicSearchString": "react-native dual-screen navigation" }, { @@ -33009,6 +33060,7 @@ "tvos": true, "expoGo": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -33023,10 +33075,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-splash-screen", @@ -33058,8 +33110,8 @@ }, "npmPkg": "expo-splash-screen", "npm": { - "downloads": 4401749, - "weekDownloads": 867244, + "downloads": 4313203, + "weekDownloads": 881022, "size": 118135, "latestRelease": "31.0.10", "latestReleaseDate": "2025-09-12T23:15:40.240Z" @@ -33073,7 +33125,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.174, "topicSearchString": "react-native expo expo-splash-screen splash-screen splash launch-screen launch" }, { @@ -33083,6 +33135,7 @@ "tvos": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -33094,13 +33147,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-15T22:35:38Z", + "updatedAt": "2025-10-20T07:43:41Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-10-15T22:35:38Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "pushedAt": "2025-10-20T07:43:41Z", + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 14 }, "name": "expo-updates", @@ -33128,8 +33181,8 @@ }, "npmPkg": "expo-updates", "npm": { - "downloads": 2408937, - "weekDownloads": 460801, + "downloads": 2346488, + "weekDownloads": 466966, "size": 2470270, "latestRelease": "29.0.12", "latestReleaseDate": "2025-10-01T00:22:17.670Z" @@ -33143,7 +33196,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.169, "topicSearchString": "react-native expo updates" }, { @@ -33167,7 +33220,7 @@ "updatedAt": "2021-03-02T22:34:22Z", "createdAt": "2019-08-23T00:32:00Z", "pushedAt": "2021-03-02T22:34:22Z", - "forks": 39, + "forks": 40, "issues": 16, "subscribers": 1, "stars": 336, @@ -33198,8 +33251,8 @@ }, "npmPkg": "react-native-appearance", "npm": { - "downloads": 10036, - "weekDownloads": 1163, + "downloads": 10194, + "weekDownloads": 1174, "size": 90039, "latestRelease": "0.3.4", "latestReleaseDate": "2020-04-25T23:55:14.996Z" @@ -33210,7 +33263,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.651, + "popularity": -0.652, "topicSearchString": "react-native web expo-web appearance" }, { @@ -33234,10 +33287,10 @@ "updatedAt": "2025-09-24T16:46:42Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-24T16:46:42Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 6 }, "name": "expo-auth-session", @@ -33269,8 +33322,8 @@ }, "npmPkg": "expo-auth-session", "npm": { - "downloads": 1454350, - "weekDownloads": 287028, + "downloads": 1422774, + "weekDownloads": 288425, "size": 394529, "latestRelease": "7.0.8", "latestReleaseDate": "2025-09-11T20:26:43.537Z" @@ -33284,7 +33337,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.172, "topicSearchString": "react-native expo expo-auth-session auth oauth authentication auth-session" }, { @@ -33309,10 +33362,10 @@ "updatedAt": "2025-09-16T20:34:34Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-16T20:34:34Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 2 }, "name": "expo-linking", @@ -33340,8 +33393,8 @@ }, "npmPkg": "expo-linking", "npm": { - "downloads": 4845633, - "weekDownloads": 941925, + "downloads": 4756799, + "weekDownloads": 952185, "size": 159097, "latestRelease": "8.0.8", "latestReleaseDate": "2025-09-11T20:24:36.440Z" @@ -33354,7 +33407,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.17, "topicSearchString": "react-native expo expo-linking" }, { @@ -33365,6 +33418,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -33379,10 +33433,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-screen-orientation", @@ -33412,8 +33466,8 @@ }, "npmPkg": "expo-screen-orientation", "npm": { - "downloads": 662472, - "weekDownloads": 132503, + "downloads": 641524, + "weekDownloads": 133145, "size": 204971, "latestRelease": "9.0.7", "latestReleaseDate": "2025-09-11T20:23:38.311Z" @@ -33426,7 +33480,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.176, "topicSearchString": "react-native expo expo-screen-orientation orientation screen" }, { @@ -33451,10 +33505,10 @@ "updatedAt": "2025-09-18T09:37:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-18T09:37:20Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-sharing", @@ -33485,8 +33539,8 @@ }, "npmPkg": "expo-sharing", "npm": { - "downloads": 1468725, - "weekDownloads": 287099, + "downloads": 1441965, + "weekDownloads": 292577, "size": 60294, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-10T18:40:47.350Z" @@ -33499,7 +33553,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.172, "topicSearchString": "react-native expo expo-sharing android ios web" }, { @@ -33524,10 +33578,10 @@ "updatedAt": "2025-08-22T16:23:47Z", "createdAt": "2019-08-14T18:26:28Z", "pushedAt": "2025-08-22T16:23:47Z", - "forks": 222, + "forks": 223, "issues": 58, "subscribers": 12, - "stars": 2517, + "stars": 2518, "dependencies": 0 }, "name": "react-native-safe-area-context", @@ -33562,8 +33616,8 @@ }, "npmPkg": "react-native-safe-area-context", "npm": { - "downloads": 9408894, - "weekDownloads": 1840734, + "downloads": 9207093, + "weekDownloads": 1874456, "size": 230707, "latestRelease": "5.6.1", "latestReleaseDate": "2025-08-19T15:57:18.282Z" @@ -33575,7 +33629,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.173, "topicSearchString": "react-native web expo-web safe-area view ios android react safeareainsets" }, { @@ -33602,13 +33656,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-17T09:59:25Z", + "updatedAt": "2025-10-20T10:42:36Z", "createdAt": "2018-08-03T11:36:32Z", - "pushedAt": "2025-10-17T09:59:25Z", + "pushedAt": "2025-10-20T10:42:36Z", "forks": 554, - "issues": 126, + "issues": 127, "subscribers": 40, - "stars": 3469, + "stars": 3471, "dependencies": 2 }, "name": "react-native-screens", @@ -33636,8 +33690,8 @@ }, "npmPkg": "react-native-screens", "npm": { - "downloads": 8143520, - "weekDownloads": 1596894, + "downloads": 7974794, + "weekDownloads": 1620776, "size": 2544218, "latestRelease": "4.17.1", "latestReleaseDate": "2025-10-15T22:29:19.033Z" @@ -33651,7 +33705,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.173, "topicSearchString": "typescript react-native react-navigation" }, { @@ -33713,8 +33767,8 @@ }, "npmPkg": "react-native-shared-element", "npm": { - "downloads": 21711, - "weekDownloads": 4511, + "downloads": 21043, + "weekDownloads": 4651, "size": 1109582, "latestRelease": "0.8.9", "latestReleaseDate": "2023-11-17T13:46:52.364Z" @@ -33726,7 +33780,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.188, "topicSearchString": "shared-element expo expo-shared-element react-native magic-move shared-element-transition visual-clone visual-standin clone clone-view image-clone" }, { @@ -33760,7 +33814,7 @@ "forks": 440, "issues": 132, "subscribers": 24, - "stars": 3120, + "stars": 3122, "dependencies": 0 }, "name": "react-native-pager-view", @@ -33790,8 +33844,8 @@ }, "npmPkg": "react-native-pager-view", "npm": { - "downloads": 2530327, - "weekDownloads": 507882, + "downloads": 2458423, + "weekDownloads": 517999, "size": 190940, "latestRelease": "6.9.1", "latestReleaseDate": "2025-08-07T11:47:48.407Z" @@ -33804,7 +33858,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.179, "topicSearchString": "react-native ios android hacktoberfest" }, { @@ -33865,8 +33919,8 @@ "configPlugin": false }, "npm": { - "downloads": 3833660, - "weekDownloads": 754287, + "downloads": 3726741, + "weekDownloads": 766138, "size": 546659, "latestRelease": "11.4.1", "latestReleaseDate": "2024-09-20T16:19:29.269Z" @@ -33880,7 +33934,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.175, "topicSearchString": "react-native netinfo networking network-info network" }, { @@ -33943,8 +33997,8 @@ "unmaintained": true, "npmPkg": "react-native-text-input-mask", "npm": { - "downloads": 75310, - "weekDownloads": 14085, + "downloads": 73231, + "weekDownloads": 15354, "size": 54388, "latestRelease": "3.2.0", "latestReleaseDate": "2023-06-12T19:41:14.657Z" @@ -33956,7 +34010,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.572, "topicSearchString": "react native mask text-input android ios maskedtextfield maskededittext maskedinput react-native mask-android mask-ios input-mask inputmask" }, { @@ -34009,8 +34063,8 @@ }, "unmaintained": true, "npm": { - "downloads": 31855, - "weekDownloads": 6586, + "downloads": 30606, + "weekDownloads": 6766, "size": 68043, "latestRelease": "0.2.1", "latestReleaseDate": "2021-09-03T19:46:31.351Z" @@ -34020,7 +34074,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.574, + "popularity": -0.562, "topicSearchString": "toolbar-android react-native" }, { @@ -34072,8 +34126,8 @@ "configPlugin": false }, "npm": { - "downloads": 393731, - "weekDownloads": 73839, + "downloads": 377749, + "weekDownloads": 77209, "size": 490851, "latestRelease": "1.2.0", "latestReleaseDate": "2020-03-11T10:13:24.240Z" @@ -34084,7 +34138,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.576, "topicSearchString": "react-native art community" }, { @@ -34110,7 +34164,7 @@ "forks": 263, "issues": 173, "subscribers": 15, - "stars": 806, + "stars": 807, "dependencies": 1 }, "name": "@react-native-community/push-notification-ios", @@ -34141,8 +34195,8 @@ "configPlugin": false }, "npm": { - "downloads": 541434, - "weekDownloads": 100880, + "downloads": 519906, + "weekDownloads": 103285, "size": 273019, "latestRelease": "1.11.0", "latestReleaseDate": "2023-04-05T03:09:13.465Z" @@ -34155,7 +34209,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.581, "topicSearchString": "react-native push-notification-ios push-notification notification-ios notification hacktoberfest ios push-notifications" }, { @@ -34215,8 +34269,8 @@ }, "npmPkg": "react-native-safe-area-view", "npm": { - "downloads": 278321, - "weekDownloads": 51923, + "downloads": 275088, + "weekDownloads": 52715, "size": 81809, "latestRelease": "1.1.1", "latestReleaseDate": "2020-04-25T23:48:06.599Z" @@ -34228,7 +34282,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.587, "topicSearchString": "react-native iphonex safeareaview safe-area notch" }, { @@ -34262,7 +34316,7 @@ "forks": 508, "issues": 222, "subscribers": 42, - "stars": 3857, + "stars": 3858, "dependencies": 0 }, "name": "@react-native-community/blur", @@ -34292,8 +34346,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 715996, - "weekDownloads": 135912, + "downloads": 695638, + "weekDownloads": 139309, "size": 109474, "latestRelease": "4.4.1", "latestReleaseDate": "2024-08-29T14:23:09.479Z" @@ -34306,7 +34360,7 @@ "Lots of open issues", "Not updated recently" ], - "popularity": 0.161, + "popularity": 0.17, "topicSearchString": "react-native ios android blur component" }, { @@ -34342,7 +34396,7 @@ "forks": 457, "issues": 16, "subscribers": 32, - "stars": 4975, + "stars": 4976, "dependencies": 1 }, "name": "@react-native-async-storage/async-storage", @@ -34371,8 +34425,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 8511117, - "weekDownloads": 1635287, + "downloads": 8330309, + "weekDownloads": 1668732, "size": 380789, "latestRelease": "2.2.0", "latestReleaseDate": "2025-06-05T12:15:48.403Z" @@ -34383,7 +34437,7 @@ "Popular", "Known" ], - "popularity": 0.163, + "popularity": 0.17, "topicSearchString": "react-native react-native async-storage asyncstorage storage" }, { @@ -34421,7 +34475,7 @@ "forks": 296, "issues": 235, "subscribers": 14, - "stars": 1723, + "stars": 1724, "dependencies": 0 }, "name": "@react-native-picker/picker", @@ -34454,8 +34508,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 2347272, - "weekDownloads": 461920, + "downloads": 2294544, + "weekDownloads": 471873, "size": 398744, "latestRelease": "2.11.4", "latestReleaseDate": "2025-10-15T00:49:29.220Z" @@ -34467,7 +34521,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.167, + "popularity": 0.175, "topicSearchString": "react-native picker dropdown select ios android macos windows hacktoberfest" }, { @@ -34520,8 +34574,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 459827, - "weekDownloads": 89142, + "downloads": 449785, + "weekDownloads": 93911, "size": 326152, "latestRelease": "7.10.2", "latestReleaseDate": "2025-08-06T09:52:15.832Z" @@ -34532,7 +34586,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.177, "topicSearchString": "react-native cameraroll camera photo-gallery" }, { @@ -34589,8 +34643,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 71791, - "weekDownloads": 15780, + "downloads": 68748, + "weekDownloads": 15935, "size": 98799, "latestRelease": "4.3.0", "latestReleaseDate": "2025-01-22T18:35:28.422Z" @@ -34601,7 +34655,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.187, + "popularity": 0.197, "topicSearchString": "react-native ios android image-editor imageeditor image web" }, { @@ -34632,7 +34686,7 @@ "forks": 120, "issues": 51, "subscribers": 10, - "stars": 1108, + "stars": 1109, "dependencies": 0 }, "name": "@react-native-masked-view/masked-view", @@ -34658,8 +34712,8 @@ "configPlugin": false }, "npm": { - "downloads": 1875609, - "weekDownloads": 377499, + "downloads": 1818267, + "weekDownloads": 382851, "size": 59004, "latestRelease": "0.3.2", "latestReleaseDate": "2024-11-04T02:52:21.714Z" @@ -34671,7 +34725,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.179, "topicSearchString": "react-native masked-view hacktoberfest" }, { @@ -34701,7 +34755,7 @@ "forks": 660, "issues": 174, "subscribers": 43, - "stars": 4948, + "stars": 4949, "dependencies": 0 }, "name": "react-native-linear-gradient", @@ -34724,8 +34778,8 @@ }, "npmPkg": "react-native-linear-gradient", "npm": { - "downloads": 2269899, - "weekDownloads": 451801, + "downloads": 2204579, + "weekDownloads": 461252, "size": 117996, "latestRelease": "2.8.3", "latestReleaseDate": "2023-09-06T04:29:38.236Z" @@ -34739,7 +34793,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.178, "topicSearchString": "" }, { @@ -34866,8 +34920,8 @@ "unmaintained": true, "npmPkg": "react-native-audio-session", "npm": { - "downloads": 8053, - "weekDownloads": 1684, + "downloads": 7758, + "weekDownloads": 1820, "size": 27519, "latestRelease": "0.0.6", "latestReleaseDate": "2020-03-17T13:47:02.454Z" @@ -34878,13 +34932,14 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.572, + "popularity": -0.551, "topicSearchString": "react native ios audio avfoundation avaudiosession bridge react-native opensource javascript objective-c" }, { "githubUrl": "https://github.com/blackuy/react-native-twilio-video-webrtc", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/blackuy/react-native-twilio-video-webrtc", @@ -34937,8 +34992,8 @@ }, "npmPkg": "react-native-twilio-video-webrtc", "npm": { - "downloads": 21400, - "weekDownloads": 4750, + "downloads": 19503, + "weekDownloads": 3327, "size": 224465, "latestRelease": "3.2.1", "latestReleaseDate": "2024-10-02T15:39:10.044Z" @@ -34951,7 +35006,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.189, + "popularity": 0.145, "topicSearchString": "react-native webrtc twilio-video video-streaming ios android realtime-video twilio video video-call" }, { @@ -34965,6 +35020,7 @@ "https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/master/docs/pictures/call-kit.png", "https://raw.githubusercontent.com/react-native-webrtc/react-native-callkeep/master/docs/pictures/connection-service.jpg" ], + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/react-native-callkeep", "github": { "urls": { "repo": "https://github.com/react-native-webrtc/react-native-callkeep", @@ -34979,7 +35035,7 @@ "updatedAt": "2024-11-18T15:23:41Z", "createdAt": "2018-12-07T14:33:26Z", "pushedAt": "2024-11-18T15:23:41Z", - "forks": 452, + "forks": 453, "issues": 309, "subscribers": 27, "stars": 1014, @@ -35015,8 +35071,8 @@ }, "npmPkg": "react-native-callkeep", "npm": { - "downloads": 40458, - "weekDownloads": 6791, + "downloads": 39786, + "weekDownloads": 6758, "size": 262079, "latestRelease": "4.3.16", "latestReleaseDate": "2024-11-18T15:23:52.404Z" @@ -35029,13 +35085,14 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.144, "topicSearchString": "callkit connectionservice ios android react-native voip webrtc connection-service call-kit" }, { "githubUrl": "https://github.com/react-native-webrtc/react-native-webrtc", "ios": true, "android": true, + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/react-native-webrtc", "github": { "urls": { "repo": "https://github.com/react-native-webrtc/react-native-webrtc", @@ -35051,7 +35108,7 @@ "createdAt": "2015-09-27T10:57:30Z", "pushedAt": "2025-10-09T14:48:21Z", "forks": 1105, - "issues": 27, + "issues": 28, "subscribers": 120, "stars": 4886, "dependencies": 3 @@ -35083,8 +35140,8 @@ }, "npmPkg": "react-native-webrtc", "npm": { - "downloads": 175602, - "weekDownloads": 32967, + "downloads": 173677, + "weekDownloads": 34132, "size": 1161750, "latestRelease": "124.0.7", "latestReleaseDate": "2025-10-09T14:50:48.961Z" @@ -35097,7 +35154,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.167, "topicSearchString": "react-component react-native ios android webrtc react" }, { @@ -35154,8 +35211,8 @@ }, "npmPkg": "react-native-incall-manager", "npm": { - "downloads": 83982, - "weekDownloads": 16710, + "downloads": 82065, + "weekDownloads": 17386, "size": 221900, "latestRelease": "4.2.1", "latestReleaseDate": "2025-04-30T16:05:34.429Z" @@ -35167,7 +35224,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.18, "topicSearchString": "react reactnative webrtc phone call incall talk sip voip" }, { @@ -35213,8 +35270,8 @@ }, "npmPkg": "react-native-voip-push-notification", "npm": { - "downloads": 30941, - "weekDownloads": 5540, + "downloads": 29797, + "weekDownloads": 5630, "size": 37297, "latestRelease": "3.3.3", "latestReleaseDate": "2025-04-30T16:24:49.512Z" @@ -35224,7 +35281,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.161, "topicSearchString": "" }, { @@ -35235,6 +35292,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/zoontek/react-native-bootsplash", @@ -35249,10 +35307,10 @@ "updatedAt": "2025-09-27T06:12:50Z", "createdAt": "2019-07-02T10:45:52Z", "pushedAt": "2025-09-27T06:12:50Z", - "forks": 269, + "forks": 270, "issues": 6, "subscribers": 17, - "stars": 4051, + "stars": 4052, "dependencies": 14 }, "name": "react-native-bootsplash", @@ -35287,8 +35345,8 @@ }, "npmPkg": "react-native-bootsplash", "npm": { - "downloads": 542657, - "weekDownloads": 103756, + "downloads": 527190, + "weekDownloads": 107191, "size": 476944, "latestRelease": "6.3.11", "latestReleaseDate": "2025-09-07T14:50:00.021Z" @@ -35301,7 +35359,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.173, "topicSearchString": "bootsplash react-native boot-splash boot-screen bootscreen splash-screen splashscreen launch-screen launchscreen react" }, { @@ -35355,8 +35413,8 @@ }, "npmPkg": "redux-flipper", "npm": { - "downloads": 61981, - "weekDownloads": 12197, + "downloads": 61045, + "weekDownloads": 12976, "size": 10583, "latestRelease": "2.0.3", "latestReleaseDate": "2024-03-05T14:13:36.204Z" @@ -35367,7 +35425,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.181, "topicSearchString": "redux redux-middleware react-native flipper hacktoberfest" }, { @@ -35430,8 +35488,8 @@ }, "npmPkg": "react-native-responsive-image-view", "npm": { - "downloads": 1241, - "weekDownloads": 312, + "downloads": 1186, + "weekDownloads": 290, "size": 51788, "latestRelease": "3.0.0", "latestReleaseDate": "2025-02-27T05:56:38.133Z" @@ -35442,7 +35500,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.214, + "popularity": 0.208, "topicSearchString": "react react-native responsive flexible fit aspect-ratio image view hook component responsive-images" }, { @@ -35513,8 +35571,8 @@ }, "npmPkg": "react-native-image-colors", "npm": { - "downloads": 93621, - "weekDownloads": 17228, + "downloads": 92138, + "weekDownloads": 19155, "size": 73755, "latestRelease": "2.5.0", "latestReleaseDate": "2025-07-07T19:02:10.281Z" @@ -35525,7 +35583,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.177, "topicSearchString": "react-native expo image-colors rnimagecolors ios android react image dominant average color palette" }, { @@ -35559,7 +35617,7 @@ "forks": 104, "issues": 3, "subscribers": 8, - "stars": 1054, + "stars": 1057, "dependencies": 0 }, "name": "react-native-animated-nav-tab-bar", @@ -35594,8 +35652,8 @@ }, "npmPkg": "react-native-animated-nav-tab-bar", "npm": { - "downloads": 2873, - "weekDownloads": 663, + "downloads": 2747, + "weekDownloads": 580, "size": 94801, "latestRelease": "3.1.13", "latestReleaseDate": "2025-05-26T17:18:10.403Z" @@ -35606,7 +35664,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.196, + "popularity": 0.18, "topicSearchString": "react react-native react-component react-navigation navigation ios android tab tab-bar bar animation" }, { @@ -35654,8 +35712,8 @@ }, "npmPkg": "expo-2d-context", "npm": { - "downloads": 142642, - "weekDownloads": 31152, + "downloads": 138307, + "weekDownloads": 30790, "size": 2344108, "latestRelease": "0.0.4", "latestReleaseDate": "2023-11-17T10:16:54.752Z" @@ -35666,7 +35724,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.186, + "popularity": 0.189, "topicSearchString": "" }, { @@ -35696,7 +35754,7 @@ "forks": 574, "issues": 75, "subscribers": 32, - "stars": 3610, + "stars": 3611, "dependencies": 9 }, "name": "react-native-render-html", @@ -35724,8 +35782,8 @@ "configPlugin": false }, "npm": { - "downloads": 1389780, - "weekDownloads": 281441, + "downloads": 1349414, + "weekDownloads": 287642, "size": 783354, "latestRelease": "6.3.4", "latestReleaseDate": "2022-01-24T14:00:18.189Z" @@ -35739,7 +35797,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.181, "topicSearchString": "react-native react-component component html render-html" }, { @@ -35769,7 +35827,7 @@ "forks": 3388, "issues": 231, "subscribers": 190, - "stars": 14100, + "stars": 14101, "dependencies": 8 }, "name": "react-native-gifted-chat", @@ -35802,8 +35860,8 @@ }, "npmPkg": "react-native-gifted-chat", "npm": { - "downloads": 255114, - "weekDownloads": 51585, + "downloads": 245577, + "weekDownloads": 53713, "size": 393304, "latestRelease": "2.8.1", "latestReleaseDate": "2025-03-27T12:33:56.579Z" @@ -35817,7 +35875,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.186, "topicSearchString": "android ios react-native react react-component messenger message chat component" }, { @@ -35872,8 +35930,8 @@ "configPlugin": false }, "npm": { - "downloads": 4668, - "weekDownloads": 810, + "downloads": 4900, + "weekDownloads": 666, "size": 1903805, "latestRelease": "8.2.7", "latestReleaseDate": "2025-08-18T10:13:37.422Z" @@ -35886,7 +35944,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.116, "topicSearchString": "shoutem-ui react-native ios android native-components shoutem" }, { @@ -35912,7 +35970,7 @@ "forks": 201, "issues": 45, "subscribers": 6, - "stars": 755, + "stars": 756, "dependencies": 4 }, "name": "react-native-markdown-display", @@ -35942,8 +36000,8 @@ }, "npmPkg": "react-native-markdown-display", "npm": { - "downloads": 1017188, - "weekDownloads": 203116, + "downloads": 985646, + "weekDownloads": 204296, "size": 69674, "latestRelease": "7.0.2", "latestReleaseDate": "2023-12-11T12:07:20.703Z" @@ -35955,7 +36013,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.176, "topicSearchString": "react react-native native markdown commonmark markdown-it" }, { @@ -35977,10 +36035,10 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-17T17:25:05Z", + "updatedAt": "2025-10-20T17:55:02Z", "createdAt": "2015-12-12T12:52:11Z", - "pushedAt": "2025-10-17T17:25:05Z", - "forks": 1036, + "pushedAt": "2025-10-20T17:55:02Z", + "forks": 1037, "issues": 5, "subscribers": 45, "stars": 9759, @@ -36018,11 +36076,11 @@ }, "npmPkg": "react-i18next", "npm": { - "downloads": 26137538, - "weekDownloads": 4977538, - "size": 772361, - "latestRelease": "16.1.0", - "latestReleaseDate": "2025-10-17T17:25:38.894Z" + "downloads": 25422959, + "weekDownloads": 5150959, + "size": 834772, + "latestRelease": "16.1.2", + "latestReleaseDate": "2025-10-20T17:55:24.249Z" }, "score": 97, "matchingScoreModifiers": [ @@ -36032,7 +36090,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.172, "topicSearchString": "i18next internationalization i18n translation localization l10n globalization react reactjs react-native ssr" }, { @@ -36057,7 +36115,7 @@ "forks": 575, "issues": 165, "subscribers": 42, - "stars": 5366, + "stars": 5367, "dependencies": 2 }, "name": "react-native-keyboard-aware-scroll-view", @@ -36092,8 +36150,8 @@ "unmaintained": true, "npmPkg": "react-native-keyboard-aware-scroll-view", "npm": { - "downloads": 1539023, - "weekDownloads": 308167, + "downloads": 1493088, + "weekDownloads": 309862, "size": 56793, "latestRelease": "0.9.5", "latestReleaseDate": "2021-11-04T10:02:02.898Z" @@ -36107,7 +36165,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.574, "topicSearchString": "react react-native scrollview keyboard ios android react-component scroll-view react-components scrollview-component" }, { @@ -36166,8 +36224,8 @@ "unmaintained": true, "npmPkg": "react-native-scroll-into-view", "npm": { - "downloads": 19479, - "weekDownloads": 4385, + "downloads": 18433, + "weekDownloads": 4091, "size": 53365, "latestRelease": "2.0.2", "latestReleaseDate": "2021-11-04T09:36:37.395Z" @@ -36178,7 +36236,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.559, + "popularity": -0.561, "topicSearchString": "react-native react scrollintoview form scroll into view expo visible" }, { @@ -36236,8 +36294,8 @@ "unmaintained": true, "npmPkg": "react-native-size-matters", "npm": { - "downloads": 1025890, - "weekDownloads": 208641, + "downloads": 996229, + "weekDownloads": 210688, "size": 13888, "latestRelease": "0.4.2", "latestReleaseDate": "2023-10-03T09:23:44.732Z" @@ -36249,7 +36307,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.577, + "popularity": -0.57, "topicSearchString": "javascript react-native scaling tablet" }, { @@ -36311,8 +36369,8 @@ "configPlugin": false }, "npm": { - "downloads": 846758, - "weekDownloads": 163091, + "downloads": 823044, + "weekDownloads": 167556, "size": 176556, "latestRelease": "4.1.1", "latestReleaseDate": "2025-02-25T15:47:52.661Z" @@ -36324,7 +36382,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.173, "topicSearchString": "expo react-native action-sheet hacktoberfest android ios actionsheet" }, { @@ -36386,8 +36444,8 @@ "unmaintained": true, "npmPkg": "react-native-modal-selector", "npm": { - "downloads": 682399, - "weekDownloads": 141769, + "downloads": 657743, + "weekDownloads": 142467, "size": 43369, "latestRelease": "2.1.2", "latestReleaseDate": "2022-10-24T18:37:31.684Z" @@ -36399,7 +36457,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.573, + "popularity": -0.566, "topicSearchString": "react-native dropdown popover select picker modal ios android react-component" }, { @@ -36471,8 +36529,8 @@ "unmaintained": true, "npmPkg": "react-native-svg-charts", "npm": { - "downloads": 354873, - "weekDownloads": 78333, + "downloads": 341046, + "weekDownloads": 76375, "size": 417079, "latestRelease": "5.4.0", "latestReleaseDate": "2020-04-14T19:04:09.736Z" @@ -36485,7 +36543,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.562, + "popularity": -0.56, "topicSearchString": "react-native react-component component react mobile ios android vector charts chart d3 svg" }, { @@ -36521,13 +36579,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T08:48:25Z", + "updatedAt": "2025-10-20T09:30:45Z", "createdAt": "2016-01-17T14:29:21Z", - "pushedAt": "2025-10-16T08:48:25Z", + "pushedAt": "2025-10-20T09:30:45Z", "forks": 1098, "issues": 151, "subscribers": 99, - "stars": 7865, + "stars": 7866, "dependencies": 3 }, "name": "react-native-svg", @@ -36561,8 +36619,8 @@ }, "npmPkg": "react-native-svg", "npm": { - "downloads": 8148048, - "weekDownloads": 1612896, + "downloads": 7938508, + "weekDownloads": 1646550, "size": 4051495, "latestRelease": "15.14.0", "latestReleaseDate": "2025-10-08T11:24:46.729Z" @@ -36575,7 +36633,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.168, + "popularity": 0.176, "topicSearchString": "react-component react-native ios android windows svg art vml gradient" }, { @@ -36586,6 +36644,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/hyochan/react-native-iap", @@ -36597,13 +36656,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-17T15:49:36Z", + "updatedAt": "2025-10-20T13:22:56Z", "createdAt": "2017-10-22T00:31:20Z", - "pushedAt": "2025-10-17T15:49:36Z", - "forks": 659, + "pushedAt": "2025-10-20T13:22:56Z", + "forks": 660, "issues": 4, "subscribers": 36, - "stars": 3109, + "stars": 3111, "dependencies": 0 }, "name": "react-native-iap", @@ -36639,11 +36698,11 @@ }, "npmPkg": "react-native-iap", "npm": { - "downloads": 224809, - "weekDownloads": 44111, - "size": 1617263, - "latestRelease": "14.4.23", - "latestReleaseDate": "2025-10-17T04:46:48.470Z" + "downloads": 219845, + "weekDownloads": 44404, + "size": 1618054, + "latestRelease": "14.4.26", + "latestReleaseDate": "2025-10-20T13:23:28.976Z" }, "score": 97, "matchingScoreModifiers": [ @@ -36653,7 +36712,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.172, "topicSearchString": "react-native nitro amazon android appstore billing iap in-app-purchase ios playstore" }, { @@ -36678,7 +36737,7 @@ "forks": 164, "issues": 61, "subscribers": 7, - "stars": 439, + "stars": 440, "dependencies": 5 }, "name": "react-native-markdown-renderer", @@ -36709,8 +36768,8 @@ "unmaintained": true, "npmPkg": "react-native-markdown-renderer", "npm": { - "downloads": 42632, - "weekDownloads": 7587, + "downloads": 41330, + "weekDownloads": 7393, "size": 185087, "latestRelease": "3.2.8", "latestReleaseDate": "2018-06-18T14:34:39.503Z" @@ -36721,7 +36780,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.598, "topicSearchString": "react react-native native markdown commonmark markdown-it" }, { @@ -36785,8 +36844,8 @@ }, "npmPkg": "react-native-device-info", "npm": { - "downloads": 3259388, - "weekDownloads": 646418, + "downloads": 3124594, + "weekDownloads": 664030, "size": 719615, "latestRelease": "14.1.1", "latestReleaseDate": "2025-09-17T13:15:43.446Z" @@ -36798,7 +36857,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.181, "topicSearchString": "react-component react-native ios android windows device events cocoapod hacktoberfest" }, { @@ -36856,8 +36915,8 @@ }, "npmPkg": "react-native-push-notification", "npm": { - "downloads": 316390, - "weekDownloads": 63177, + "downloads": 308639, + "weekDownloads": 63773, "size": 279032, "latestRelease": "8.1.1", "latestReleaseDate": "2021-10-01T14:22:43.183Z" @@ -36871,7 +36930,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.574, "topicSearchString": "react-component react-native ios android notifications push apns firebase push-notifications" }, { @@ -36896,7 +36955,7 @@ "forks": 714, "issues": 237, "subscribers": 39, - "stars": 2864, + "stars": 2865, "dependencies": 0 }, "name": "react-native-sound", @@ -36927,8 +36986,8 @@ }, "npmPkg": "react-native-sound", "npm": { - "downloads": 398037, - "weekDownloads": 85416, + "downloads": 387277, + "weekDownloads": 86294, "size": 94449, "latestRelease": "0.13.0", "latestReleaseDate": "2025-10-15T12:51:49.628Z" @@ -36942,7 +37001,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.182, + "popularity": 0.189, "topicSearchString": "react-native sound audio ios android windows" }, { @@ -36993,8 +37052,8 @@ "configPlugin": false }, "npm": { - "downloads": 3669, - "weekDownloads": 670, + "downloads": 3640, + "weekDownloads": 621, "size": 107438, "latestRelease": "0.2.2", "latestReleaseDate": "2020-01-23T11:08:41.458Z" @@ -37005,7 +37064,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, + "popularity": -0.605, "topicSearchString": "" }, { @@ -37074,8 +37133,8 @@ }, "npmPkg": "react-native-fast-image", "npm": { - "downloads": 703974, - "weekDownloads": 140031, + "downloads": 685063, + "weekDownloads": 143117, "size": 104363, "latestRelease": "8.6.3", "latestReleaseDate": "2022-10-31T01:41:09.853Z" @@ -37089,7 +37148,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.581, + "popularity": -0.572, "topicSearchString": "cache cached fastimage image priority react-native sdwebimage glide image-cache cocoapod hacktoberfest" }, { @@ -37121,7 +37180,7 @@ "forks": 529, "issues": 154, "subscribers": 20, - "stars": 2448, + "stars": 2449, "dependencies": 1 }, "name": "react-native-image-zoom-viewer", @@ -37147,8 +37206,8 @@ "configPlugin": false }, "npm": { - "downloads": 217482, - "weekDownloads": 42723, + "downloads": 211620, + "weekDownloads": 43833, "size": 116564, "latestRelease": "3.0.1", "latestReleaseDate": "2020-05-19T21:36:02.689Z" @@ -37161,7 +37220,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.583, + "popularity": -0.574, "topicSearchString": "image-viewer react-native react-component" }, { @@ -37223,8 +37282,8 @@ "unmaintained": true, "npmPkg": "react-native-modal-dropdown", "npm": { - "downloads": 25090, - "weekDownloads": 4655, + "downloads": 24446, + "weekDownloads": 5037, "size": 1736393, "latestRelease": "1.0.2", "latestReleaseDate": "2021-09-15T09:09:23.529Z" @@ -37237,7 +37296,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.575, "topicSearchString": "react react-component react-native component ios android modal dropdown picker select selector option" }, { @@ -37289,8 +37348,8 @@ "unmaintained": true, "npmPkg": "react-native-modal-translucent", "npm": { - "downloads": 2038, - "weekDownloads": 58, + "downloads": 2030, + "weekDownloads": 64, "size": 322343, "latestRelease": "5.0.0", "latestReleaseDate": "2019-11-21T08:06:10.048Z" @@ -37301,7 +37360,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.726, + "popularity": -0.723, "topicSearchString": "react-native modal translucent statusbar" }, { @@ -37331,8 +37390,8 @@ "pushedAt": "2025-08-28T07:58:55Z", "forks": 144, "issues": 17, - "subscribers": 265, - "stars": 3277, + "subscribers": 264, + "stars": 3278, "dependencies": 0 }, "name": "@shopify/restyle", @@ -37354,8 +37413,8 @@ "configPlugin": false }, "npm": { - "downloads": 159256, - "weekDownloads": 28926, + "downloads": 155942, + "weekDownloads": 30524, "size": 92221, "latestRelease": "2.4.5", "latestReleaseDate": "2025-03-19T21:32:10.619Z" @@ -37367,7 +37426,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.166, "topicSearchString": "" }, { @@ -37396,7 +37455,7 @@ "forks": 104, "issues": 44, "subscribers": 15, - "stars": 1062, + "stars": 1063, "dependencies": 2 }, "name": "react-native-purchases", @@ -37429,8 +37488,8 @@ }, "npmPkg": "react-native-purchases", "npm": { - "downloads": 381848, - "weekDownloads": 73096, + "downloads": 377044, + "weekDownloads": 73833, "size": 308505, "latestRelease": "9.5.4", "latestReleaseDate": "2025-10-10T12:42:12.598Z" @@ -37442,7 +37501,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.166, "topicSearchString": "react-native in-app-purchase subscriptions iap ios apple android stripe hacktoberfest" }, { @@ -37503,8 +37562,8 @@ "configPlugin": false }, "npm": { - "downloads": 513131, - "weekDownloads": 108395, + "downloads": 491897, + "weekDownloads": 108925, "size": 191230, "latestRelease": "0.5.20", "latestReleaseDate": "2025-05-14T02:40:29.617Z" @@ -37515,7 +37574,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.188, "topicSearchString": "checkbox react-native react-native" }, { @@ -37524,6 +37583,7 @@ "android": true, "npmPkg": "@react-native-google-signin/google-signin", "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/react-native-google-signin/google-signin", @@ -37535,13 +37595,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-07T16:33:24Z", + "updatedAt": "2025-10-20T09:24:46Z", "createdAt": "2015-08-13T06:13:57Z", - "pushedAt": "2025-09-07T16:33:24Z", + "pushedAt": "2025-10-20T09:24:46Z", "forks": 852, "issues": 5, "subscribers": 45, - "stars": 3452, + "stars": 3453, "dependencies": 0 }, "name": "@react-native-google-signin/google-signin", @@ -37578,19 +37638,20 @@ "moduleType": "expo" }, "npm": { - "downloads": 906421, - "weekDownloads": 177544, + "downloads": 889414, + "weekDownloads": 178552, "size": 169379, "latestRelease": "16.0.0", "latestReleaseDate": "2025-09-07T16:33:34.413Z" }, - "score": 95, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known" + "Known", + "Recently updated" ], - "popularity": 0.166, + "popularity": 0.171, "topicSearchString": "react-native google-sign-in google-login android-creadential-manager oauth oauth2 ios android web googlesignin googleauth hacktoberfest" }, { @@ -37705,8 +37766,8 @@ }, "npmPkg": "react-native-navigation-hooks", "npm": { - "downloads": 13202, - "weekDownloads": 2331, + "downloads": 12736, + "weekDownloads": 2829, "size": 110338, "latestRelease": "6.3.0", "latestReleaseDate": "2021-02-04T13:23:36.143Z" @@ -37717,7 +37778,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.189, "topicSearchString": "" }, { @@ -37767,8 +37828,8 @@ }, "npmPkg": "aws-amplify", "npm": { - "downloads": 3889823, - "weekDownloads": 714670, + "downloads": 3780391, + "weekDownloads": 740909, "size": 169515, "latestRelease": "6.15.7", "latestReleaseDate": "2025-09-29T13:45:59.008Z" @@ -37782,7 +37843,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.167, "topicSearchString": "" }, { @@ -37832,8 +37893,8 @@ "configPlugin": false }, "npm": { - "downloads": 3835343, - "weekDownloads": 706243, + "downloads": 3728733, + "weekDownloads": 733023, "size": 2806091, "latestRelease": "5.1.0", "latestReleaseDate": "2025-09-29T13:45:56.536Z" @@ -37847,7 +37908,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.167, "topicSearchString": "" }, { @@ -37897,8 +37958,8 @@ "configPlugin": false }, "npm": { - "downloads": 156948, - "weekDownloads": 28374, + "downloads": 154463, + "weekDownloads": 29402, "size": 418779, "latestRelease": "1.2.0", "latestReleaseDate": "2025-09-29T13:45:40.961Z" @@ -37912,7 +37973,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.162, "topicSearchString": "" }, { @@ -37962,8 +38023,8 @@ "configPlugin": false }, "npm": { - "downloads": 4385582, - "weekDownloads": 810903, + "downloads": 4263163, + "weekDownloads": 840262, "size": 3228670, "latestRelease": "6.16.0", "latestReleaseDate": "2025-09-29T13:45:46.824Z" @@ -37977,7 +38038,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.168, "topicSearchString": "" }, { @@ -38025,8 +38086,8 @@ "configPlugin": false }, "npm": { - "downloads": 3309865, - "weekDownloads": 620966, + "downloads": 3217971, + "weekDownloads": 642744, "size": 743373, "latestRelease": "2.0.88", "latestReleaseDate": "2025-09-29T13:45:49.595Z" @@ -38040,7 +38101,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.17, "topicSearchString": "" }, { @@ -38062,9 +38123,9 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-15T15:48:49Z", + "updatedAt": "2025-10-20T14:50:35Z", "createdAt": "2015-09-15T19:36:29Z", - "pushedAt": "2025-10-15T15:48:49Z", + "pushedAt": "2025-10-20T14:50:35Z", "forks": 585, "issues": 30, "subscribers": 69, @@ -38100,8 +38161,8 @@ "configPlugin": false }, "npm": { - "downloads": 377132, - "weekDownloads": 70137, + "downloads": 374080, + "weekDownloads": 72808, "size": 8253251, "latestRelease": "7.0.1", "latestReleaseDate": "2025-10-15T14:57:33.503Z" @@ -38113,7 +38174,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.165, "topicSearchString": "cloud mobile api javascript parse-platform parse-js parse javascript-sdk hacktoberfest" }, { @@ -38177,8 +38238,8 @@ "unmaintained": true, "npmPkg": "react-native-material-menu", "npm": { - "downloads": 46568, - "weekDownloads": 7954, + "downloads": 45355, + "weekDownloads": 8102, "size": 25874, "latestRelease": "2.0.0", "latestReleaseDate": "2021-08-23T19:28:17.993Z" @@ -38189,7 +38250,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, + "popularity": -0.598, "topicSearchString": "react-native react menu material-menu react-component material dropdown material-design component ios android" }, { @@ -38248,8 +38309,8 @@ }, "npmPkg": "react-native-console-time-polyfill", "npm": { - "downloads": 27730, - "weekDownloads": 5343, + "downloads": 26858, + "weekDownloads": 5446, "size": 4887, "latestRelease": "1.2.3", "latestReleaseDate": "2021-04-03T10:00:22.903Z" @@ -38259,7 +38320,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.172, "topicSearchString": "react-native polyfill console time timeend performance measurement count countreset measurements" }, { @@ -38313,8 +38374,8 @@ "unmaintained": true, "npmPkg": "react-native-change-icon", "npm": { - "downloads": 21001, - "weekDownloads": 4216, + "downloads": 20295, + "weekDownloads": 4153, "size": 30999, "latestRelease": "5.0.0", "latestReleaseDate": "2023-08-19T19:29:01.655Z" @@ -38325,7 +38386,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.576, "topicSearchString": "react-native ios android" }, { @@ -38383,8 +38444,8 @@ "unmaintained": true, "npmPkg": "react-native-open-maps", "npm": { - "downloads": 56322, - "weekDownloads": 10624, + "downloads": 54899, + "weekDownloads": 11586, "size": 23336, "latestRelease": "0.4.3", "latestReleaseDate": "2023-07-17T16:02:58.100Z" @@ -38395,7 +38456,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.571, "topicSearchString": "react-native maps open-link apple-maps google-maps map-deep-links map-url-scheme linking" }, { @@ -38460,8 +38521,8 @@ }, "npmPkg": "react-native-store-review", "npm": { - "downloads": 99702, - "weekDownloads": 18506, + "downloads": 96765, + "weekDownloads": 19332, "size": 23072, "latestRelease": "0.4.3", "latestReleaseDate": "2023-10-26T12:47:21.142Z" @@ -38473,7 +38534,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.17, "topicSearchString": "react-native react-component component react mobile ios android app-store review rating rate appstore playstore" }, { @@ -38528,8 +38589,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 733423, - "weekDownloads": 143841, + "downloads": 714274, + "weekDownloads": 146815, "size": 167579, "latestRelease": "3.4.0", "latestReleaseDate": "2024-09-01T08:47:00.956Z" @@ -38542,7 +38603,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.175, "topicSearchString": "react-native geolocation location react library" }, { @@ -38662,8 +38723,8 @@ }, "unmaintained": true, "npm": { - "downloads": 17513, - "weekDownloads": 3674, + "downloads": 16904, + "weekDownloads": 3763, "size": 123927, "latestRelease": "2.0.3", "latestReleaseDate": "2020-03-23T04:51:00.067Z" @@ -38676,7 +38737,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.572, + "popularity": -0.561, "topicSearchString": "react-native audio audio-toolkit reactnative audio-library cross-platform" }, { @@ -38790,8 +38851,8 @@ }, "npmPkg": "react-native-navbar", "npm": { - "downloads": 2683, - "weekDownloads": 224, + "downloads": 2657, + "weekDownloads": 217, "latestRelease": "2.1.0", "latestReleaseDate": "2017-10-30T09:25:52.018Z" }, @@ -38802,7 +38863,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.679, + "popularity": -0.681, "topicSearchString": "react-native navbar" }, { @@ -38856,8 +38917,8 @@ }, "npmPkg": "react-native-platform-touchable", "npm": { - "downloads": 15233, - "weekDownloads": 2629, + "downloads": 15432, + "weekDownloads": 2740, "latestRelease": "1.1.1", "latestReleaseDate": "2017-07-01T20:42:09.773Z" }, @@ -38867,7 +38928,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, + "popularity": -0.599, "topicSearchString": "react-native react component button" }, { @@ -38889,13 +38950,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-22T17:40:54Z", + "updatedAt": "2025-10-20T14:17:00Z", "createdAt": "2019-10-07T18:39:07Z", - "pushedAt": "2025-09-22T17:40:54Z", - "forks": 73, - "issues": 39, + "pushedAt": "2025-10-20T14:17:00Z", + "forks": 74, + "issues": 38, "subscribers": 8, - "stars": 890, + "stars": 891, "dependencies": 0 }, "name": "react-native-context-menu-view", @@ -38924,8 +38985,8 @@ }, "npmPkg": "react-native-context-menu-view", "npm": { - "downloads": 88281, - "weekDownloads": 21126, + "downloads": 82750, + "weekDownloads": 19387, "size": 59526, "latestRelease": "1.20.0", "latestReleaseDate": "2025-09-22T17:40:45.595Z" @@ -38937,7 +38998,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.203, + "popularity": 0.199, "topicSearchString": "react-native ios android javascript npm" }, { @@ -39000,8 +39061,8 @@ "unmaintained": true, "npmPkg": "rn-range-slider", "npm": { - "downloads": 66711, - "weekDownloads": 12889, + "downloads": 64922, + "weekDownloads": 13566, "size": 30881, "latestRelease": "2.2.2", "latestReleaseDate": "2022-09-16T07:30:56.624Z" @@ -39012,7 +39073,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.572, "topicSearchString": "react native react-native react-component component android ios custom range slider seekbar" }, { @@ -39077,8 +39138,8 @@ "configPlugin": false }, "npm": { - "downloads": 91, - "weekDownloads": 8, + "downloads": 315, + "weekDownloads": 10, "size": 35839, "latestRelease": "1.1.1", "latestReleaseDate": "2020-11-06T13:51:41.896Z" @@ -39088,7 +39149,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.674, + "popularity": -0.723, "topicSearchString": "react-native calendar date datepicker jalali jalaali shamsi persian" }, { @@ -39153,8 +39214,8 @@ "unmaintained": true, "npmPkg": "react-native-fb-image-grid", "npm": { - "downloads": 124, - "weekDownloads": 13, + "downloads": 126, + "weekDownloads": 25, "size": 244374, "latestRelease": "0.0.5", "latestReleaseDate": "2020-12-26T17:57:16.978Z" @@ -39164,7 +39225,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.66, + "popularity": -1.578, "topicSearchString": "react-native react-component component react mobile ios android ui image imageloader gif glide" }, { @@ -39224,8 +39285,8 @@ }, "unmaintained": true, "npm": { - "downloads": 207, - "weekDownloads": 17, + "downloads": 205, + "weekDownloads": 15, "size": 22349, "latestRelease": "4.8.0", "latestReleaseDate": "2020-01-03T17:11:52.768Z" @@ -39236,7 +39297,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.429, + "popularity": -1.438, "topicSearchString": "mongodb aws twilio http mobile serverless stitch atlas react-native" }, { @@ -39285,8 +39346,8 @@ "configPlugin": false }, "npm": { - "downloads": 99431, - "weekDownloads": 18984, + "downloads": 97902, + "weekDownloads": 20040, "size": 18910, "latestRelease": "0.3.2", "latestReleaseDate": "2024-05-23T14:29:35.722Z" @@ -39297,7 +39358,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.174, "topicSearchString": "" }, { @@ -39355,8 +39416,8 @@ "unmaintained": true, "npmPkg": "react-native-autoheight-webview", "npm": { - "downloads": 64566, - "weekDownloads": 12078, + "downloads": 62347, + "weekDownloads": 12427, "size": 22029, "latestRelease": "1.6.5", "latestReleaseDate": "2022-10-24T07:21:54.764Z" @@ -39368,7 +39429,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.581, "topicSearchString": "react react-native autoheight webview" }, { @@ -39393,7 +39454,7 @@ "forks": 158, "issues": 106, "subscribers": 12, - "stars": 679, + "stars": 680, "dependencies": 0 }, "name": "react-native-tts", @@ -39425,8 +39486,8 @@ }, "npmPkg": "react-native-tts", "npm": { - "downloads": 109195, - "weekDownloads": 26058, + "downloads": 103304, + "weekDownloads": 23177, "size": 162442, "latestRelease": "4.1.1", "latestReleaseDate": "2024-06-14T18:46:49.275Z" @@ -39439,7 +39500,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.203, + "popularity": 0.191, "topicSearchString": "tts voice speech text-to-speech react react-native android ios" }, { @@ -39467,7 +39528,7 @@ "forks": 608, "issues": 315, "subscribers": 30, - "stars": 4927, + "stars": 4928, "dependencies": 4 }, "name": "react-native-config", @@ -39500,8 +39561,8 @@ }, "npmPkg": "react-native-config", "npm": { - "downloads": 1169306, - "weekDownloads": 228508, + "downloads": 1135720, + "weekDownloads": 232841, "size": 134682, "latestRelease": "1.5.9", "latestReleaseDate": "2025-09-02T13:12:05.144Z" @@ -39513,7 +39574,7 @@ "Known", "Lots of open issues" ], - "popularity": 0.166, + "popularity": 0.174, "topicSearchString": "env config config-var react-native android ios windows 12factor" }, { @@ -39566,8 +39627,8 @@ }, "npmPkg": "react-native-deep-linking", "npm": { - "downloads": 10366, - "weekDownloads": 2281, + "downloads": 9906, + "weekDownloads": 2226, "size": 12706, "latestRelease": "2.2.0", "latestReleaseDate": "2019-01-06T13:24:28.214Z" @@ -39578,7 +39639,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.563, + "popularity": -0.559, "topicSearchString": "react-native deep-linking ios android" }, { @@ -39635,8 +39696,8 @@ "unmaintained": true, "npmPkg": "react-native-boundary", "npm": { - "downloads": 90, - "weekDownloads": 15, + "downloads": 88, + "weekDownloads": 13, "size": 113540, "latestRelease": "1.1.1", "latestReleaseDate": "2019-06-27T06:02:38.785Z" @@ -39647,7 +39708,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.357, + "popularity": -1.37, "topicSearchString": "react-native geofence boundary ios android location region-monitoring geofencing" }, { @@ -39694,8 +39755,8 @@ "unmaintained": true, "npmPkg": "react-native-swift", "npm": { - "downloads": 3032, - "weekDownloads": 581, + "downloads": 2966, + "weekDownloads": 619, "size": 6270, "latestRelease": "1.2.3", "latestReleaseDate": "2020-03-31T17:03:06.345Z" @@ -39705,7 +39766,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.572, "topicSearchString": "" }, { @@ -39765,8 +39826,8 @@ "unmaintained": true, "npmPkg": "react-native-offline", "npm": { - "downloads": 39035, - "weekDownloads": 7015, + "downloads": 37831, + "weekDownloads": 7209, "size": 398905, "latestRelease": "6.0.2", "latestReleaseDate": "2023-02-14T21:40:17.788Z" @@ -39778,7 +39839,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.588, "topicSearchString": "react-native react offline offline-first redux reactnative" }, { @@ -39829,8 +39890,8 @@ "unmaintained": true, "npmPkg": "react-native-status-bar-height", "npm": { - "downloads": 204802, - "weekDownloads": 40217, + "downloads": 196698, + "weekDownloads": 39715, "size": 5986, "latestRelease": "2.6.0", "latestReleaseDate": "2020-11-09T19:24:08.724Z" @@ -39841,7 +39902,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.583, + "popularity": -0.578, "topicSearchString": "react-native" }, { @@ -39901,8 +39962,8 @@ "unmaintained": true, "npmPkg": "react-native-sqlite-storage", "npm": { - "downloads": 122603, - "weekDownloads": 24496, + "downloads": 118756, + "weekDownloads": 23885, "size": 7445408, "latestRelease": "6.0.1", "latestReleaseDate": "2021-10-01T14:18:22.623Z" @@ -39915,7 +39976,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.579, "topicSearchString": "sqlite-storage sqlite react-component reactnative react-native sqlite3 ios android promise cordova-sqlite-storage" }, { @@ -39972,8 +40033,8 @@ }, "npmPkg": "react-native-parsed-text", "npm": { - "downloads": 331543, - "weekDownloads": 65114, + "downloads": 323595, + "weekDownloads": 68204, "size": 20650, "latestRelease": "0.0.22", "latestReleaseDate": "2020-06-24T19:27:21.767Z" @@ -39985,7 +40046,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.583, + "popularity": -0.571, "topicSearchString": "text react-native url phone react react-component parsing" }, { @@ -40049,8 +40110,8 @@ }, "npmPkg": "react-native-select-multiple", "npm": { - "downloads": 4371, - "weekDownloads": 854, + "downloads": 4319, + "weekDownloads": 911, "size": 14739, "latestRelease": "2.1.0", "latestReleaseDate": "2019-10-21T09:55:07.451Z" @@ -40061,7 +40122,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.571, "topicSearchString": "select multiple picker select2 react native react-native list ui checkbox label" }, { @@ -40114,8 +40175,8 @@ }, "npmPkg": "react-native-exceptions-manager", "npm": { - "downloads": 1588, - "weekDownloads": 106, + "downloads": 1645, + "weekDownloads": 137, "latestRelease": "0.2.0", "latestReleaseDate": "2017-08-04T08:30:24.501Z" }, @@ -40124,7 +40185,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.693, + "popularity": -0.679, "topicSearchString": "crash react react-native exception" }, { @@ -40182,8 +40243,8 @@ }, "npmPkg": "react-native-wechat", "npm": { - "downloads": 1921, - "weekDownloads": 240, + "downloads": 1965, + "weekDownloads": 290, "size": 13584759, "latestRelease": "1.9.12", "latestReleaseDate": "2019-09-21T07:16:17.727Z" @@ -40196,7 +40257,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.644, + "popularity": -0.624, "topicSearchString": "wechat react react-native react-component ios wechat-sdk android mit js" }, { @@ -40226,10 +40287,10 @@ "updatedAt": "2025-05-20T11:58:16Z", "createdAt": "2015-06-02T17:19:20Z", "pushedAt": "2025-05-20T11:58:16Z", - "forks": 1467, + "forks": 1466, "issues": 7, "subscribers": 221, - "stars": 9132, + "stars": 9133, "dependencies": 7 }, "name": "react-native-code-push", @@ -40258,8 +40319,8 @@ }, "npmPkg": "react-native-code-push", "npm": { - "downloads": 249623, - "weekDownloads": 55159, + "downloads": 238829, + "weekDownloads": 53959, "size": 2396753, "latestRelease": "9.0.1", "latestReleaseDate": "2024-12-19T14:31:05.513Z" @@ -40271,7 +40332,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.562, + "popularity": -0.558, "topicSearchString": "react-native code push codepush code-push" }, { @@ -40327,8 +40388,8 @@ }, "npmPkg": "react-navigation-transitions", "npm": { - "downloads": 2010, - "weekDownloads": 400, + "downloads": 1932, + "weekDownloads": 366, "size": 11255, "latestRelease": "1.0.12", "latestReleaseDate": "2019-07-26T20:38:20.359Z" @@ -40339,7 +40400,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.581, + "popularity": -0.589, "topicSearchString": "react-native react react-navigation navigation transitions animations" }, { @@ -40402,8 +40463,8 @@ "unmaintained": true, "npmPkg": "react-native-video-controls", "npm": { - "downloads": 57429, - "weekDownloads": 12568, + "downloads": 53211, + "weekDownloads": 10253, "size": 96263, "latestRelease": "2.8.1", "latestReleaseDate": "2021-05-07T20:40:24.868Z" @@ -40415,7 +40476,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.564, + "popularity": -0.586, "topicSearchString": "react-native video react-video-controls react-video-player ios android react component video-player video-controls elements" }, { @@ -40465,8 +40526,8 @@ "configPlugin": false }, "npm": { - "downloads": 23026, - "weekDownloads": 3889, + "downloads": 22585, + "weekDownloads": 3934, "size": 18307, "latestRelease": "4.0.1", "latestReleaseDate": "2019-10-03T17:15:17.271Z" @@ -40477,7 +40538,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.602, "topicSearchString": "" }, { @@ -40532,8 +40593,8 @@ }, "npmPkg": "react-native-itunes", "npm": { - "downloads": 257, - "weekDownloads": 37, + "downloads": 247, + "weekDownloads": 46, "latestRelease": "0.5.0", "latestReleaseDate": "2017-12-04T16:11:44.062Z" }, @@ -40542,7 +40603,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.377, + "popularity": -1.341, "topicSearchString": "react-component react-native ios itunes apple music apple-music" }, { @@ -40603,8 +40664,8 @@ }, "npmPkg": "react-native-htmlview", "npm": { - "downloads": 138578, - "weekDownloads": 28154, + "downloads": 133045, + "weekDownloads": 28132, "size": 28095, "latestRelease": "0.17.0", "latestReleaseDate": "2023-11-02T12:42:33.470Z" @@ -40617,7 +40678,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.18, "topicSearchString": "react html react-native react-component component mobile ui html-parser html-renderer" }, { @@ -40683,8 +40744,8 @@ }, "npmPkg": "react-native-flash-message", "npm": { - "downloads": 190410, - "weekDownloads": 37157, + "downloads": 186237, + "weekDownloads": 37092, "size": 61711, "latestRelease": "0.4.2", "latestReleaseDate": "2023-08-09T14:30:00.112Z" @@ -40696,7 +40757,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.169, "topicSearchString": "react react-native react-component native component flash flashbar flashmessage message alert notification topbar iphonex ipad android utility javascript" }, { @@ -40754,8 +40815,8 @@ }, "unmaintained": true, "npm": { - "downloads": 51421, - "weekDownloads": 11578, + "downloads": 49023, + "weekDownloads": 11007, "size": 88198, "latestRelease": "2.3.2", "latestReleaseDate": "2023-07-03T11:50:29.500Z" @@ -40826,8 +40887,8 @@ "unmaintained": true, "npmPkg": "react-native-photo-view-ex", "npm": { - "downloads": 3433, - "weekDownloads": 516, + "downloads": 3386, + "weekDownloads": 611, "size": 141054, "latestRelease": "1.1.0", "latestReleaseDate": "2019-05-20T20:03:37.927Z" @@ -40837,7 +40898,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.622, + "popularity": -0.596, "topicSearchString": "react-native react-component ios android gallery lightbox pinch pinch-to-zoom mobile" }, { @@ -40893,8 +40954,8 @@ }, "npmPkg": "react-native-spinkit", "npm": { - "downloads": 38506, - "weekDownloads": 7819, + "downloads": 37827, + "weekDownloads": 8174, "size": 408085, "latestRelease": "1.5.1", "latestReleaseDate": "2020-10-04T22:39:46.271Z" @@ -40906,7 +40967,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.184, "topicSearchString": "react-component react-native ios android spinkit spinner loader indicator" }, { @@ -40956,8 +41017,8 @@ "unmaintained": true, "npmPkg": "react-native-tab-view-viewpager-adapter", "npm": { - "downloads": 487, - "weekDownloads": 101, + "downloads": 468, + "weekDownloads": 117, "size": 43925, "latestRelease": "1.1.0", "latestReleaseDate": "2020-07-15T20:58:33.932Z" @@ -40967,7 +41028,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.323, + "popularity": -1.287, "topicSearchString": "" }, { @@ -41024,8 +41085,8 @@ }, "npmPkg": "react-native-webp-format", "npm": { - "downloads": 24655, - "weekDownloads": 5900, + "downloads": 23269, + "weekDownloads": 5671, "size": 14609, "latestRelease": "1.2.1", "latestReleaseDate": "2025-03-05T22:09:30.387Z" @@ -41034,7 +41095,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.203, + "popularity": 0.207, "topicSearchString": "react react-native ios android webp" }, { @@ -41085,8 +41146,8 @@ }, "npmPkg": "react-navigation-backhandler", "npm": { - "downloads": 16736, - "weekDownloads": 3794, + "downloads": 15747, + "weekDownloads": 3594, "size": 5892, "latestRelease": "2.0.3", "latestReleaseDate": "2025-03-12T11:08:30.907Z" @@ -41097,7 +41158,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.193, + "popularity": 0.194, "topicSearchString": "react-navigation react-native" }, { @@ -41153,8 +41214,8 @@ }, "npmPkg": "react-native-billing", "npm": { - "downloads": 247, - "weekDownloads": 19, + "downloads": 245, + "weekDownloads": 16, "size": 47682, "latestRelease": "3.0.0", "latestReleaseDate": "2019-11-02T18:45:49.408Z" @@ -41165,7 +41226,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.434, + "popularity": -1.444, "topicSearchString": "react native inapp billing purchase react-native android bridge" }, { @@ -41221,8 +41282,8 @@ }, "npmPkg": "react-native-typewriter", "npm": { - "downloads": 12680, - "weekDownloads": 2848, + "downloads": 12327, + "weekDownloads": 2847, "size": 16551, "latestRelease": "0.7.0", "latestReleaseDate": "2020-04-05T19:46:41.496Z" @@ -41232,7 +41293,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.559, + "popularity": -0.554, "topicSearchString": "react react-native component animated typing typewriter" }, { @@ -41291,8 +41352,8 @@ "unmaintained": true, "npmPkg": "react-native-syntax-highlighter", "npm": { - "downloads": 10898, - "weekDownloads": 2063, + "downloads": 11186, + "weekDownloads": 2118, "size": 7206089, "latestRelease": "2.1.0", "latestReleaseDate": "2019-09-16T23:01:32.380Z" @@ -41368,8 +41429,8 @@ }, "npmPkg": "react-native-fetch-blob", "npm": { - "downloads": 5889, - "weekDownloads": 894, + "downloads": 5913, + "weekDownloads": 877, "latestRelease": "0.10.8", "latestReleaseDate": "2017-08-03T01:40:25.924Z" }, @@ -41381,7 +41442,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.621, + "popularity": -0.624, "topicSearchString": "react-native fetch blob fs upload file download filestream image-header file-access storage network file-system polyfill android ios" }, { @@ -41438,8 +41499,8 @@ }, "npmPkg": "react-native-md5", "npm": { - "downloads": 11758, - "weekDownloads": 2354, + "downloads": 11235, + "weekDownloads": 2292, "latestRelease": "1.0.0", "latestReleaseDate": "2016-10-17T08:52:01.916Z" }, @@ -41448,7 +41509,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.577, "topicSearchString": "react-native md5 hex-md5 str-md5 hex-hmac-md5 b64-hmac-md5 str-hmac-md5" }, { @@ -41503,8 +41564,8 @@ "unmaintained": true, "npmPkg": "react-native-geocoding", "npm": { - "downloads": 71757, - "weekDownloads": 12927, + "downloads": 69710, + "weekDownloads": 12861, "size": 10697, "latestRelease": "0.5.0", "latestReleaseDate": "2020-12-09T07:55:15.489Z" @@ -41515,7 +41576,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.593, "topicSearchString": "react-native ios android geocoder geocoding" }, { @@ -41571,8 +41632,8 @@ "unmaintained": true, "npmPkg": "react-native-prompt-android", "npm": { - "downloads": 26871, - "weekDownloads": 5009, + "downloads": 25838, + "weekDownloads": 5324, "size": 50045, "latestRelease": "1.1.0", "latestReleaseDate": "2019-09-18T11:03:06.843Z" @@ -41583,7 +41644,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.575, "topicSearchString": "react-component react-native prompt alert ios android" }, { @@ -41650,8 +41711,8 @@ }, "npmPkg": "react-native-star-rating", "npm": { - "downloads": 26825, - "weekDownloads": 4489, + "downloads": 26234, + "weekDownloads": 4847, "size": 1608106, "latestRelease": "1.1.0", "latestReleaseDate": "2018-09-10T00:09:14.708Z" @@ -41663,7 +41724,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, + "popularity": -0.593, "topicSearchString": "react native react-native star stars rating ratings review reviews react-component ios android star-rating star-rating-component component custom-star star-icon" }, { @@ -41723,8 +41784,8 @@ "unmaintained": true, "npmPkg": "react-native-switch", "npm": { - "downloads": 72333, - "weekDownloads": 14457, + "downloads": 70407, + "weekDownloads": 15452, "size": 13072, "latestRelease": "1.5.1", "latestReleaseDate": "2022-02-21T21:54:49.931Z" @@ -41735,7 +41796,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.563, "topicSearchString": "react-native react shapes android ios mobile switch customisable web" }, { @@ -41790,8 +41851,8 @@ "unmaintained": true, "npmPkg": "react-native-user-avatar", "npm": { - "downloads": 9209, - "weekDownloads": 1719, + "downloads": 8819, + "weekDownloads": 1758, "size": 43203, "latestRelease": "1.0.8", "latestReleaseDate": "2021-12-30T20:31:57.996Z" @@ -41802,7 +41863,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.581, "topicSearchString": "react-native component avatar initials" }, { @@ -41860,8 +41921,8 @@ }, "npmPkg": "react-native-shimmer-placeholder", "npm": { - "downloads": 186754, - "weekDownloads": 36582, + "downloads": 183055, + "weekDownloads": 38095, "size": 15648, "latestRelease": "2.0.9", "latestReleaseDate": "2022-08-09T04:33:00.421Z" @@ -41873,7 +41934,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.177, "topicSearchString": "loading placeholder react-native shimmer module skeleton" }, { @@ -41934,8 +41995,8 @@ "unmaintained": true, "npmPkg": "react-native-card-flip", "npm": { - "downloads": 7285, - "weekDownloads": 1101, + "downloads": 7107, + "weekDownloads": 1178, "size": 15624, "latestRelease": "1.0.7", "latestReleaseDate": "2020-06-07T15:42:00.674Z" @@ -41946,7 +42007,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.622, + "popularity": -0.609, "topicSearchString": "react-native flip cards card rotate deck card-flip flip-card component react-component flip-animation" }, { @@ -41997,8 +42058,8 @@ "unmaintained": true, "npmPkg": "react-native-device-detection", "npm": { - "downloads": 5918, - "weekDownloads": 1168, + "downloads": 5673, + "weekDownloads": 1140, "size": 4574, "latestRelease": "0.2.1", "latestReleaseDate": "2020-01-16T18:10:41.664Z" @@ -42008,7 +42069,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, + "popularity": -0.579, "topicSearchString": "react-native" }, { @@ -42037,7 +42098,7 @@ "forks": 584, "issues": 84, "subscribers": 200, - "stars": 2620, + "stars": 2621, "dependencies": 0 }, "name": "react-native-camera-kit", @@ -42067,8 +42128,8 @@ }, "npmPkg": "react-native-camera-kit", "npm": { - "downloads": 117446, - "weekDownloads": 21914, + "downloads": 114591, + "weekDownloads": 22388, "size": 563008, "latestRelease": "16.1.3", "latestReleaseDate": "2025-10-01T17:53:28.715Z" @@ -42081,7 +42142,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.159, + "popularity": 0.166, "topicSearchString": "react-native ios android camera" }, { @@ -42139,7 +42200,7 @@ "unmaintained": true, "npmPkg": "react-native-native-video-player", "npm": { - "downloads": 129, + "downloads": 131, "weekDownloads": 24, "latestRelease": "1.3.4", "latestReleaseDate": "2017-07-31T07:13:30.218Z" @@ -42157,6 +42218,7 @@ "githubUrl": "https://github.com/jordanbyron/react-native-quick-actions", "ios": true, "android": true, + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/react-native-quick-actions", "github": { "urls": { "repo": "https://github.com/jordanbyron/react-native-quick-actions", @@ -42198,8 +42260,8 @@ "unmaintained": true, "npmPkg": "react-native-quick-actions", "npm": { - "downloads": 46840, - "weekDownloads": 8499, + "downloads": 45922, + "weekDownloads": 9637, "size": 531583, "latestRelease": "0.3.13", "latestReleaseDate": "2019-11-24T15:53:18.718Z" @@ -42211,7 +42273,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.572, "topicSearchString": "" }, { @@ -42278,8 +42340,8 @@ "unmaintained": true, "npmPkg": "react-native-swipe-list-view", "npm": { - "downloads": 171629, - "weekDownloads": 32194, + "downloads": 167407, + "weekDownloads": 31755, "size": 114222, "latestRelease": "3.2.9", "latestReleaseDate": "2021-06-18T19:09:44.733Z" @@ -42291,7 +42353,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.589, "topicSearchString": "react react-native react-component ios android listview swipe swipeable javascript swipelistview component" }, { @@ -42347,8 +42409,8 @@ }, "npmPkg": "react-native-platform-stylesheet", "npm": { - "downloads": 1393, - "weekDownloads": 205, + "downloads": 1340, + "weekDownloads": 212, "latestRelease": "0.0.6", "latestReleaseDate": "2016-07-25T09:20:58.833Z" }, @@ -42357,7 +42419,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.625, + "popularity": -0.615, "topicSearchString": "react-native stylesheet ios android platform react" }, { @@ -42413,8 +42475,8 @@ }, "npmPkg": "react-native-background-task", "npm": { - "downloads": 1182, - "weekDownloads": 424, + "downloads": 1154, + "weekDownloads": 493, "latestRelease": "0.2.1", "latestReleaseDate": "2017-08-10T10:54:32.578Z" }, @@ -42425,7 +42487,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.445, + "popularity": -0.386, "topicSearchString": "react-native background-jobs fetch android ios offline sync" }, { @@ -42479,8 +42541,8 @@ "unmaintained": true, "npmPkg": "react-native-background-timer", "npm": { - "downloads": 498794, - "weekDownloads": 107835, + "downloads": 479953, + "weekDownloads": 106447, "size": 31801, "latestRelease": "2.4.1", "latestReleaseDate": "2020-10-01T15:46:09.335Z" @@ -42493,7 +42555,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.566, + "popularity": -0.561, "topicSearchString": "react-native background timer android ios" }, { @@ -42550,8 +42612,8 @@ }, "unmaintained": true, "npm": { - "downloads": 37980, - "weekDownloads": 6853, + "downloads": 36489, + "weekDownloads": 6685, "size": 2257167, "latestRelease": "2.0.6", "latestReleaseDate": "2020-02-25T15:54:24.901Z" @@ -42562,7 +42624,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.594, "topicSearchString": "react-component react-native android picker wheel-picker date-picker date-wheel-picker" }, { @@ -42611,8 +42673,8 @@ }, "npmPkg": "react-native-round-flags", "npm": { - "downloads": 2648, - "weekDownloads": 505, + "downloads": 2664, + "weekDownloads": 475, "latestRelease": "1.0.4", "latestReleaseDate": "2017-08-30T04:33:20.758Z" }, @@ -42621,7 +42683,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.838, + "popularity": -0.848, "topicSearchString": "" }, { @@ -42676,8 +42738,8 @@ "unmaintained": true, "npmPkg": "react-native-easy-markdown", "npm": { - "downloads": 13875, - "weekDownloads": 2837, + "downloads": 13133, + "weekDownloads": 2618, "size": 46954, "latestRelease": "2.0.0", "latestReleaseDate": "2020-02-26T18:36:31.676Z" @@ -42687,7 +42749,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.576, + "popularity": -0.581, "topicSearchString": "react-native native markdown parse parser" }, { @@ -42745,8 +42807,8 @@ }, "npmPkg": "react-native-haptic-feedback", "npm": { - "downloads": 849957, - "weekDownloads": 167889, + "downloads": 823840, + "weekDownloads": 170031, "size": 85065, "latestRelease": "2.3.3", "latestReleaseDate": "2024-09-18T14:07:52.181Z" @@ -42758,7 +42820,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.175, "topicSearchString": "react-native haptic haptic-feedback android ios native feedback" }, { @@ -42766,6 +42828,7 @@ "ios": true, "android": true, "expoGo": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/tschoffelen/react-native-map-link", @@ -42816,8 +42879,8 @@ }, "npmPkg": "react-native-map-link", "npm": { - "downloads": 131046, - "weekDownloads": 23684, + "downloads": 127218, + "weekDownloads": 24308, "size": 310543, "latestRelease": "3.9.0", "latestReleaseDate": "2025-04-01T10:07:23.875Z" @@ -42829,7 +42892,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.162, "topicSearchString": "react-native react-component maps link linking react ios android directions" }, { @@ -42889,8 +42952,8 @@ }, "npmPkg": "react-native-material-dropdown", "npm": { - "downloads": 11943, - "weekDownloads": 2798, + "downloads": 11167, + "weekDownloads": 2359, "size": 28106, "latestRelease": "0.11.1", "latestReleaseDate": "2018-03-22T08:21:16.073Z" @@ -42903,7 +42966,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.551, + "popularity": -0.57, "topicSearchString": "react react-component react-native ios android material dropdown spinner select material-design" }, { @@ -42939,7 +43002,7 @@ "forks": 424, "issues": 235, "subscribers": 65, - "stars": 5419, + "stars": 5418, "dependencies": 3 }, "name": "recyclerlistview", @@ -42972,8 +43035,8 @@ }, "npmPkg": "recyclerlistview", "npm": { - "downloads": 2844366, - "weekDownloads": 577064, + "downloads": 2758233, + "weekDownloads": 586097, "size": 6000510, "latestRelease": "4.2.3", "latestReleaseDate": "2025-03-15T02:49:28.974Z" @@ -42987,7 +43050,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.181, "topicSearchString": "react-native recyclerview listview flatlist-alternative flatlist 60fps cross-platform web performance" }, { @@ -43010,7 +43073,7 @@ "updatedAt": "2019-09-06T06:03:57Z", "createdAt": "2015-04-26T20:08:07Z", "pushedAt": "2019-09-06T06:03:57Z", - "forks": 661, + "forks": 660, "issues": 219, "subscribers": 88, "stars": 2172, @@ -43043,8 +43106,8 @@ "configPlugin": false }, "npm": { - "downloads": 3966, - "weekDownloads": 1068, + "downloads": 3388, + "weekDownloads": 582, "size": 1253865, "latestRelease": "6.1.3", "latestReleaseDate": "2018-08-24T16:24:08.947Z" @@ -43058,7 +43121,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.521, + "popularity": -0.604, "topicSearchString": "gl ios android mapbox react-component react-native mapbox-gl" }, { @@ -43111,8 +43174,8 @@ "unmaintained": true, "npmPkg": "react-native-tableview", "npm": { - "downloads": 15225, - "weekDownloads": 1804, + "downloads": 15019, + "weekDownloads": 2076, "size": 2630501, "latestRelease": "3.1.0", "latestReleaseDate": "2021-01-04T15:59:15.670Z" @@ -43124,7 +43187,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.649, + "popularity": -0.632, "topicSearchString": "react-native react-component uitableview tableview ios" }, { @@ -43183,8 +43246,8 @@ }, "unmaintained": true, "npm": { - "downloads": 970, - "weekDownloads": 213, + "downloads": 967, + "weekDownloads": 329, "size": 44958, "latestRelease": "3.1.0-rc.2", "latestReleaseDate": "2021-08-05T10:43:20.245Z" @@ -43196,7 +43259,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.313, + "popularity": -1.21, "topicSearchString": "react-native react-component large-list flatlist sectionlist tableview high-performance swipeout swipable-flatlist" }, { @@ -43255,8 +43318,8 @@ }, "npmPkg": "react-native-root-toast", "npm": { - "downloads": 172740, - "weekDownloads": 33919, + "downloads": 168356, + "weekDownloads": 34561, "size": 17928, "latestRelease": "4.0.1", "latestReleaseDate": "2025-03-25T04:00:23.008Z" @@ -43268,7 +43331,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.174, "topicSearchString": "react-component react-native ios android image video focus" }, { @@ -43327,8 +43390,8 @@ "unmaintained": true, "npmPkg": "react-native-masonry", "npm": { - "downloads": 338, - "weekDownloads": 23, + "downloads": 336, + "weekDownloads": 20, "size": 27582, "latestRelease": "0.5.0-alpha.5", "latestReleaseDate": "2019-06-16T00:10:35.472Z" @@ -43340,7 +43403,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.442, + "popularity": -1.449, "topicSearchString": "react-native masonry pinterest grid layout masonry-layout masonry-grid react pinterest-like" }, { @@ -43398,8 +43461,8 @@ }, "npmPkg": "react-native-sglistview", "npm": { - "downloads": 135, - "weekDownloads": 5, + "downloads": 136, + "weekDownloads": 7, "latestRelease": "0.4.5", "latestReleaseDate": "2018-01-15T03:59:20.779Z" }, @@ -43410,7 +43473,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.468, + "popularity": -1.456, "topicSearchString": "reactnative listview react react-native component sglistview sglistview-performance sg" }, { @@ -43467,8 +43530,8 @@ }, "npmPkg": "react-native-timeline-listview", "npm": { - "downloads": 425, - "weekDownloads": 58, + "downloads": 416, + "weekDownloads": 52, "size": 26102, "latestRelease": "0.2.3", "latestReleaseDate": "2018-03-05T14:30:41.977Z" @@ -43480,7 +43543,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.384, + "popularity": -1.393, "topicSearchString": "react-native timeline listview schedule component ios android" }, { @@ -43538,8 +43601,8 @@ }, "npmPkg": "react-native-copilot", "npm": { - "downloads": 33584, - "weekDownloads": 6305, + "downloads": 32580, + "weekDownloads": 6330, "size": 207766, "latestRelease": "3.3.3", "latestReleaseDate": "2024-12-17T21:34:49.626Z" @@ -43552,7 +43615,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.165, "topicSearchString": "react-native joyride react copilot intro.js intro walkthrough tooltip tutorial" }, { @@ -43613,7 +43676,7 @@ "npmPkg": "react-native-sketch", "npm": { "downloads": 105, - "weekDownloads": 2, + "weekDownloads": 1, "latestRelease": "1.1.0", "latestReleaseDate": "2017-11-27T01:36:16.536Z" }, @@ -43623,7 +43686,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.483, + "popularity": -1.492, "topicSearchString": "react react-component react-native ios sketch draw drawing touch paint canvas signature" }, { @@ -43687,8 +43750,8 @@ "configPlugin": false }, "npm": { - "downloads": 6159, - "weekDownloads": 790, + "downloads": 7927, + "weekDownloads": 821, "size": 637691, "latestRelease": "0.9.4", "latestReleaseDate": "2025-08-28T06:57:41.307Z" @@ -43700,7 +43763,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.109, + "popularity": 0.088, "topicSearchString": "android ios react-native component-library ui-kit bootstrap typescript mobile-apps react expo galio mobile-development reactnative app ui" }, { @@ -43763,8 +43826,8 @@ }, "npmPkg": "react-native-super-grid", "npm": { - "downloads": 86274, - "weekDownloads": 17110, + "downloads": 84453, + "weekDownloads": 17041, "size": 47560, "latestRelease": "6.0.2", "latestReleaseDate": "2025-08-25T03:18:19.866Z" @@ -43775,7 +43838,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.172, "topicSearchString": "react react-native responsive super grid view flat-list list-view section-list grid-view gridview listview flatlist responsive-grid" }, { @@ -43840,7 +43903,7 @@ "npmPkg": "react-native-activity-view", "npm": { "downloads": 302, - "weekDownloads": 60, + "weekDownloads": 66, "latestRelease": "0.2.11", "latestReleaseDate": "2017-03-22T23:52:25.159Z" }, @@ -43850,7 +43913,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.331, + "popularity": -1.314, "topicSearchString": "react-native react native activity-view react-component component action-sheet share-sheet share sheet facebook twitter mail social airdrop" }, { @@ -43905,7 +43968,7 @@ }, "npmPkg": "react-native-refresher", "npm": { - "downloads": 28, + "downloads": 29, "weekDownloads": 6, "latestRelease": "0.1.1", "latestReleaseDate": "2015-07-23T08:17:04.177Z" @@ -43967,8 +44030,8 @@ }, "npmPkg": "react-native-carousel", "npm": { - "downloads": 2066, - "weekDownloads": 505, + "downloads": 1979, + "weekDownloads": 559, "size": 11901, "latestRelease": "0.12.0", "latestReleaseDate": "2019-10-11T13:57:18.846Z" @@ -43979,7 +44042,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.542, + "popularity": -0.51, "topicSearchString": "react-native carousel" }, { @@ -44032,8 +44095,8 @@ }, "npmPkg": "react-native-draftjs-render", "npm": { - "downloads": 4093, - "weekDownloads": 1845, + "downloads": 2667, + "weekDownloads": 520, "size": 445966, "latestRelease": "2.9.0", "latestReleaseDate": "2019-01-04T18:02:11.133Z" @@ -44044,7 +44107,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.367, + "popularity": -0.584, "topicSearchString": "react-native draft-js reactnative draftjs" }, { @@ -44097,8 +44160,8 @@ }, "npmPkg": "react-native-html-to-pdf", "npm": { - "downloads": 114735, - "weekDownloads": 21576, + "downloads": 111777, + "weekDownloads": 22082, "size": 45664, "latestRelease": "1.3.0", "latestReleaseDate": "2025-09-04T15:41:20.650Z" @@ -44109,7 +44172,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.168, "topicSearchString": "react-native ios android" }, { @@ -44165,7 +44228,7 @@ }, "npmPkg": "react-native-html-webview", "npm": { - "downloads": 202, + "downloads": 203, "weekDownloads": 0, "latestRelease": "0.0.17", "latestReleaseDate": "2015-12-09T19:01:21.662Z" @@ -44229,8 +44292,8 @@ }, "npmPkg": "react-native-html-render", "npm": { - "downloads": 110, - "weekDownloads": 11, + "downloads": 109, + "weekDownloads": 10, "latestRelease": "1.0.5", "latestReleaseDate": "2016-10-24T15:21:14.686Z" }, @@ -44239,7 +44302,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.412, + "popularity": -1.42, "topicSearchString": "react-component react-native ios noder react" }, { @@ -44296,8 +44359,8 @@ }, "npmPkg": "react-native-measure-text", "npm": { - "downloads": 2326, - "weekDownloads": 286, + "downloads": 2269, + "weekDownloads": 324, "latestRelease": "1.0.0-alpha.2", "latestReleaseDate": "2017-10-12T15:20:19.824Z" }, @@ -44306,7 +44369,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.645, + "popularity": -0.628, "topicSearchString": "react-native measure text height precompute block multiline measue" }, { @@ -44370,8 +44433,8 @@ "unmaintained": true, "npmPkg": "react-native-file-viewer", "npm": { - "downloads": 295372, - "weekDownloads": 57969, + "downloads": 282732, + "weekDownloads": 58400, "size": 55043, "latestRelease": "2.1.5", "latestReleaseDate": "2021-12-12T21:32:25.131Z" @@ -44383,7 +44446,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.583, + "popularity": -0.574, "topicSearchString": "react-native mobile ios android windows file viewer preview quicklook pdf doc" }, { @@ -44408,7 +44471,7 @@ "forks": 37, "issues": 7, "subscribers": 5, - "stars": 703, + "stars": 704, "dependencies": 1 }, "name": "react-native-responsive-fontsize", @@ -44445,8 +44508,8 @@ "unmaintained": true, "npmPkg": "react-native-responsive-fontsize", "npm": { - "downloads": 88102, - "weekDownloads": 15944, + "downloads": 86368, + "weekDownloads": 15962, "size": 13764, "latestRelease": "0.5.1", "latestReleaseDate": "2021-07-17T11:29:29.158Z" @@ -44457,7 +44520,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.593, "topicSearchString": "react-native component react-component ios android react font fontsize font-size reponsive git github" }, { @@ -44517,8 +44580,8 @@ }, "npmPkg": "react-native-text-size", "npm": { - "downloads": 32126, - "weekDownloads": 6048, + "downloads": 30640, + "weekDownloads": 5745, "size": 167153, "latestRelease": "4.0.0-rc.1", "latestReleaseDate": "2019-07-30T00:39:34.313Z" @@ -44529,7 +44592,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.591, "topicSearchString": "react-native measure text size height width precompute block layout multiline fonts" }, { @@ -44714,8 +44777,8 @@ }, "npmPkg": "react-native-fabric", "npm": { - "downloads": 1206, - "weekDownloads": 179, + "downloads": 1205, + "weekDownloads": 198, "size": 131634, "latestRelease": "0.5.2", "latestReleaseDate": "2018-09-28T14:07:58.082Z" @@ -44727,7 +44790,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.623, + "popularity": -0.61, "topicSearchString": "android answers crashlytics fabric ios mobile react react-component react-native component" }, { @@ -44783,8 +44846,8 @@ "configPlugin": false }, "npm": { - "downloads": 50092, - "weekDownloads": 11220, + "downloads": 47902, + "weekDownloads": 11771, "size": 157052, "latestRelease": "6.0.7", "latestReleaseDate": "2025-06-19T06:26:54.935Z" @@ -44793,7 +44856,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.19, + "popularity": 0.209, "topicSearchString": "react-native android ios react-native user-sessions ux uxcam ux-cam" }, { @@ -44846,8 +44909,8 @@ }, "npmPkg": "react-native-td", "npm": { - "downloads": 23, - "weekDownloads": 5, + "downloads": 21, + "weekDownloads": 4, "size": 60608, "latestRelease": "0.9.3", "latestReleaseDate": "2018-07-01T04:20:40.275Z" @@ -44918,8 +44981,8 @@ "unmaintained": true, "npmPkg": "react-native-flurry-sdk", "npm": { - "downloads": 819, - "weekDownloads": 67, + "downloads": 803, + "weekDownloads": 63, "size": 330084, "latestRelease": "8.3.0", "latestReleaseDate": "2023-08-28T18:23:43.418Z" @@ -44929,7 +44992,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.43, + "popularity": -1.433, "topicSearchString": "react-native module android ios tvos flurry analytics config messaging push marketing" }, { @@ -44978,8 +45041,8 @@ "unmaintained": true, "npmPkg": "reactxp", "npm": { - "downloads": 1681, - "weekDownloads": 182, + "downloads": 1660, + "weekDownloads": 199, "size": 1898969, "latestRelease": "2.0.0", "latestReleaseDate": "2019-11-30T09:11:12.630Z" @@ -44992,7 +45055,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.658, + "popularity": -0.648, "topicSearchString": "" }, { @@ -45047,8 +45110,8 @@ }, "npmPkg": "react-native-geo-fencing", "npm": { - "downloads": 403, - "weekDownloads": 80, + "downloads": 386, + "weekDownloads": 75, "latestRelease": "0.1.0", "latestReleaseDate": "2016-05-24T09:28:10.137Z" }, @@ -45058,7 +45121,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.33, + "popularity": -1.333, "topicSearchString": "react-native googlemaps geometry polygon containslocation geo-fencing" }, { @@ -45116,8 +45179,8 @@ }, "npmPkg": "react-native-fused-location", "npm": { - "downloads": 782, - "weekDownloads": 106, + "downloads": 757, + "weekDownloads": 105, "size": 35958, "latestRelease": "1.1.2", "latestReleaseDate": "2022-01-02T15:47:41.038Z" @@ -45128,7 +45191,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.385, + "popularity": -1.382, "topicSearchString": "react react-native location gps fused android play-services npm native javascript" }, { @@ -45174,8 +45237,8 @@ }, "npmPkg": "react-native-google-static-map", "npm": { - "downloads": 413, - "weekDownloads": 31, + "downloads": 411, + "weekDownloads": 32, "size": 7354, "latestRelease": "0.1.13", "latestReleaseDate": "2018-10-18T11:15:05.671Z" @@ -45186,7 +45249,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.436, + "popularity": -1.433, "topicSearchString": "react-component react-native ios" }, { @@ -45234,8 +45297,8 @@ }, "npmPkg": "react-native-geolocation-android", "npm": { - "downloads": 40, - "weekDownloads": 8, + "downloads": 42, + "weekDownloads": 10, "latestRelease": "0.3.0", "latestReleaseDate": "2015-11-11T14:32:26.871Z" }, @@ -45245,7 +45308,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.572, + "popularity": -1.528, "topicSearchString": "react native android location gps geolocation" }, { @@ -45297,8 +45360,8 @@ }, "unmaintained": true, "npm": { - "downloads": 418, - "weekDownloads": 94, + "downloads": 848, + "weekDownloads": 96, "size": 272387, "latestRelease": "1.2.18", "latestReleaseDate": "2021-11-14T21:09:11.181Z" @@ -45308,7 +45371,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.308, + "popularity": -1.404, "topicSearchString": "react-native picker wheel" }, { @@ -45318,6 +45381,7 @@ "android": true, "expoGo": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/getsentry/sentry-react-native", @@ -45329,13 +45393,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-17T12:49:56Z", + "updatedAt": "2025-10-20T07:28:42Z", "createdAt": "2016-11-30T14:45:57Z", - "pushedAt": "2025-10-17T12:49:56Z", + "pushedAt": "2025-10-20T07:28:42Z", "forks": 342, - "issues": 179, + "issues": 181, "subscribers": 75, - "stars": 1725, + "stars": 1726, "dependencies": 6 }, "name": "@sentry/react-native", @@ -45363,8 +45427,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 2826183, - "weekDownloads": 560136, + "downloads": 2739784, + "weekDownloads": 569415, "size": 7084767, "latestRelease": "7.4.0", "latestReleaseDate": "2025-10-17T13:21:43.390Z" @@ -45378,7 +45442,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.177, "topicSearchString": "react-native sentry crashreporting ios" }, { @@ -45432,8 +45496,8 @@ "unmaintained": true, "npmPkg": "react-native-bluetooth-status", "npm": { - "downloads": 2644, - "weekDownloads": 562, + "downloads": 2519, + "weekDownloads": 594, "size": 100098, "latestRelease": "1.5.1", "latestReleaseDate": "2020-05-28T12:53:28.135Z" @@ -45444,7 +45508,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.569, + "popularity": -0.549, "topicSearchString": "react-native react-component bluetooth ios android" }, { @@ -45505,8 +45569,8 @@ "unmaintained": true, "npmPkg": "react-native-confirmation-code-input", "npm": { - "downloads": 6118, - "weekDownloads": 1091, + "downloads": 6087, + "weekDownloads": 1103, "latestRelease": "1.0.4", "latestReleaseDate": "2017-10-10T15:03:16.261Z" }, @@ -45516,13 +45580,14 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, + "popularity": -0.596, "topicSearchString": "react react-component react-native component android ios code-input confirmation-code pin-code confirmation-code-input pin-code-input" }, { "githubUrl": "https://github.com/StasDoskalenko/react-native-google-fit", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/StasDoskalenko/react-native-google-fit", @@ -45538,9 +45603,9 @@ "createdAt": "2017-01-12T10:04:59Z", "pushedAt": "2025-10-08T06:55:27Z", "forks": 189, - "issues": 46, + "issues": 21, "subscribers": 11, - "stars": 350, + "stars": 351, "dependencies": 1 }, "name": "react-native-google-fit", @@ -45576,8 +45641,8 @@ }, "npmPkg": "react-native-google-fit", "npm": { - "downloads": 16590, - "weekDownloads": 2770, + "downloads": 16349, + "weekDownloads": 2697, "size": 253120, "latestRelease": "0.22.1", "latestReleaseDate": "2025-10-08T06:55:50.014Z" @@ -45588,7 +45653,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.14, "topicSearchString": "react-native google-fit google health healthkit fit android fitness native reactnative expo expo-plugin" }, { @@ -45646,8 +45711,8 @@ }, "npmPkg": "react-native-idle-timer", "npm": { - "downloads": 29056, - "weekDownloads": 6004, + "downloads": 27974, + "weekDownloads": 6289, "size": 87353, "latestRelease": "2.2.3", "latestReleaseDate": "2024-05-08T14:11:34.564Z" @@ -45658,7 +45723,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.191, "topicSearchString": "react-native idle-timer react native screen lock sleep idle timer dim" }, { @@ -45707,8 +45772,8 @@ "unmaintained": true, "npmPkg": "react-native-image-mapper", "npm": { - "downloads": 663, - "weekDownloads": 108, + "downloads": 625, + "weekDownloads": 88, "size": 6085, "latestRelease": "0.1.11", "latestReleaseDate": "2019-05-27T16:50:05.047Z" @@ -45718,7 +45783,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.362, + "popularity": -1.38, "topicSearchString": "" }, { @@ -45747,7 +45812,7 @@ "updatedAt": "2024-10-27T16:02:37Z", "createdAt": "2018-09-07T06:39:07Z", "pushedAt": "2024-10-27T16:02:37Z", - "forks": 221, + "forks": 222, "issues": 78, "subscribers": 10, "stars": 1383, @@ -45793,8 +45858,8 @@ "configPlugin": false }, "npm": { - "downloads": 637311, - "weekDownloads": 129962, + "downloads": 613901, + "weekDownloads": 130656, "size": 115946, "latestRelease": "3.7.0", "latestReleaseDate": "2022-07-30T03:27:24.829Z" @@ -45807,7 +45872,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.181, "topicSearchString": "react-native javascript android ios browser inappbrowser in-app-browser appbrowser chrome safari chrome-custom-tabs safariservices authenticationservices sfsafariviewcontroller customtabsintent chrometabsmanageractivity deep-linking deep-links xcode plugin" }, { @@ -45861,8 +45926,8 @@ "unmaintained": true, "npmPkg": "react-native-progress-bar-animated", "npm": { - "downloads": 9389, - "weekDownloads": 2183, + "downloads": 8963, + "weekDownloads": 2000, "latestRelease": "1.0.6", "latestReleaseDate": "2017-12-21T12:26:55.955Z" }, @@ -45871,7 +45936,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.552, + "popularity": -0.56, "topicSearchString": "react native progress bar" }, { @@ -45930,8 +45995,8 @@ "unmaintained": true, "npmPkg": "react-native-reanimated-slider", "npm": { - "downloads": 194, - "weekDownloads": 25, + "downloads": 191, + "weekDownloads": 28, "size": 21394, "latestRelease": "2.0.0", "latestReleaseDate": "2021-10-28T21:04:08.958Z" @@ -45941,7 +46006,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.389, + "popularity": -1.373, "topicSearchString": "reanimated slider seekbar video react-native ios react android slider-component" }, { @@ -45990,8 +46055,8 @@ }, "unmaintained": true, "npm": { - "downloads": 97735, - "weekDownloads": 20497, + "downloads": 94141, + "weekDownloads": 20267, "size": 101481, "latestRelease": "2.2.3", "latestReleaseDate": "2018-05-20T14:04:06.370Z" @@ -46002,7 +46067,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.572, + "popularity": -0.567, "topicSearchString": "" }, { @@ -46025,13 +46090,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-16T21:27:11Z", + "updatedAt": "2025-10-17T21:26:11Z", "createdAt": "2016-05-10T17:13:13Z", - "pushedAt": "2025-10-16T21:27:11Z", + "pushedAt": "2025-10-17T21:26:11Z", "forks": 216, "issues": 4, "subscribers": 4, - "stars": 989, + "stars": 990, "dependencies": 0 }, "name": "react-native-sensitive-info", @@ -46064,8 +46129,8 @@ }, "npmPkg": "react-native-sensitive-info", "npm": { - "downloads": 96906, - "weekDownloads": 18567, + "downloads": 94204, + "weekDownloads": 19907, "size": 1401007, "latestRelease": "5.5.8", "latestReleaseDate": "2020-07-29T19:05:04.226Z" @@ -46077,7 +46142,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.18, "topicSearchString": "react-native sensitive-info android ios-keychain ios keystore fingerprint" }, { @@ -46138,8 +46203,8 @@ }, "npmPkg": "react-native-touch-id", "npm": { - "downloads": 48771, - "weekDownloads": 9823, + "downloads": 47252, + "weekDownloads": 10171, "size": 166758, "latestRelease": "4.4.1", "latestReleaseDate": "2019-02-15T19:22:38.433Z" @@ -46151,7 +46216,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.567, "topicSearchString": "react-native react native touch-id react-component component authentication auth authenticate mobile touchid apple" }, { @@ -46205,8 +46270,8 @@ "unmaintained": true, "npmPkg": "react-native-version-number", "npm": { - "downloads": 80391, - "weekDownloads": 15427, + "downloads": 76579, + "weekDownloads": 15822, "size": 33155, "latestRelease": "0.3.6", "latestReleaseDate": "2019-05-15T09:21:18.351Z" @@ -46217,7 +46282,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.574, "topicSearchString": "react react-native ios react-component android" }, { @@ -46272,8 +46337,8 @@ "unmaintained": true, "npmPkg": "react-native-youtube", "npm": { - "downloads": 15755, - "weekDownloads": 2308, + "downloads": 15703, + "weekDownloads": 2493, "size": 310536, "latestRelease": "2.0.2", "latestReleaseDate": "2021-06-21T18:36:49.908Z" @@ -46286,7 +46351,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.625, + "popularity": -0.615, "topicSearchString": "youtube react react-native" }, { @@ -46338,8 +46403,8 @@ "unmaintained": true, "npmPkg": "react-native-powerbi", "npm": { - "downloads": 125, - "weekDownloads": 12, + "downloads": 121, + "weekDownloads": 13, "size": 6510, "latestRelease": "0.1.0", "latestReleaseDate": "2018-03-13T12:30:01.508Z" @@ -46349,7 +46414,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.667, + "popularity": -1.657, "topicSearchString": "react native powerbi" }, { @@ -46361,6 +46426,7 @@ "https://github.com/stashenergy/react-native-msal/tree/master/example" ], "unmaintained": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/stashenergy/react-native-msal", @@ -46414,8 +46480,8 @@ }, "npmPkg": "react-native-msal", "npm": { - "downloads": 18560, - "weekDownloads": 3226, + "downloads": 17936, + "weekDownloads": 3245, "size": 137229, "latestRelease": "4.0.4", "latestReleaseDate": "2021-12-23T16:16:23.393Z" @@ -46426,7 +46492,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": -0.596, "topicSearchString": "react-native ios android msal azure b2c aad expo microsoft azure-active-directory azure-active-directory-b2c" }, { @@ -46460,7 +46526,7 @@ "forks": 192, "issues": 12, "subscribers": 25, - "stars": 2027, + "stars": 2028, "dependencies": 0 }, "name": "react-native-sticky-parallax-header", @@ -46492,8 +46558,8 @@ }, "unmaintained": true, "npm": { - "downloads": 11415, - "weekDownloads": 1807, + "downloads": 11150, + "weekDownloads": 1772, "size": 1158112, "latestRelease": "1.1.1", "latestReleaseDate": "2023-05-11T15:00:21.894Z" @@ -46566,8 +46632,8 @@ "unmaintained": true, "npmPkg": "react-native-material-backdrop-modal", "npm": { - "downloads": 349, - "weekDownloads": 17, + "downloads": 343, + "weekDownloads": 14, "size": 10721, "latestRelease": "1.6.4", "latestReleaseDate": "2022-11-28T15:14:51.428Z" @@ -46577,7 +46643,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.459, + "popularity": -1.465, "topicSearchString": "react-native component ios android material-design backdrop modal expo" }, { @@ -46640,8 +46706,8 @@ "unmaintained": true, "npmPkg": "react-native-woodpicker", "npm": { - "downloads": 9270, - "weekDownloads": 1645, + "downloads": 8921, + "weekDownloads": 1629, "size": 51441, "latestRelease": "0.3.17", "latestReleaseDate": "2021-12-20T08:38:52.990Z" @@ -46651,7 +46717,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.595, "topicSearchString": "react-native picker datetimepicker react" }, { @@ -46715,8 +46781,8 @@ "unmaintained": true, "npmPkg": "react-native-ultimate-config", "npm": { - "downloads": 18393, - "weekDownloads": 3471, + "downloads": 17839, + "weekDownloads": 3690, "size": 49942, "latestRelease": "6.0.1", "latestReleaseDate": "2023-09-01T08:44:31.172Z" @@ -46727,7 +46793,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.574, "topicSearchString": "react-native ios android 12factor 12factorapp dotenv env environment config xcconfig gradle objective-c java typescript" }, { @@ -46787,8 +46853,8 @@ "unmaintained": true, "npmPkg": "rn-font-mapping", "npm": { - "downloads": 19, - "weekDownloads": 5, + "downloads": 21, + "weekDownloads": 6, "size": 468645, "latestRelease": "1.0.0", "latestReleaseDate": "2019-11-30T15:58:42.232Z" @@ -46798,7 +46864,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.5, + "popularity": -1.45, "topicSearchString": "react-native fontfamily fontweight fontscale ios android font rn" }, { @@ -46830,7 +46896,7 @@ "updatedAt": "2022-08-10T12:11:39Z", "createdAt": "2018-10-22T08:47:38Z", "pushedAt": "2022-08-10T12:11:39Z", - "forks": 290, + "forks": 291, "issues": 104, "subscribers": 16, "stars": 2892, @@ -46875,8 +46941,8 @@ "unmaintained": true, "npmPkg": "react-native-modalize", "npm": { - "downloads": 180572, - "weekDownloads": 32798, + "downloads": 174887, + "weekDownloads": 33568, "size": 65646, "latestRelease": "2.1.1", "latestReleaseDate": "2022-08-10T12:11:52.889Z" @@ -46889,7 +46955,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.587, "topicSearchString": "react-native react native modal bottom-sheet bottom sheet scrollview flatlist sectionlist scroll swipe keyboard snap android ios component" }, { @@ -46957,8 +47023,8 @@ }, "npmPkg": "rn-tourguide", "npm": { - "downloads": 19511, - "weekDownloads": 3585, + "downloads": 18939, + "weekDownloads": 3726, "size": 68929, "latestRelease": "3.3.2", "latestReleaseDate": "2024-10-30T09:27:16.950Z" @@ -46970,7 +47036,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.167, "topicSearchString": "react-native joyride react copilot intro.js intro tourguide svg-animations morphing flubber tutorial mask-svg-path rn-tourguide tooltip expo" }, { @@ -47001,13 +47067,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-19T14:31:26Z", + "updatedAt": "2025-10-20T14:19:27Z", "createdAt": "2019-02-06T16:03:45Z", - "pushedAt": "2025-08-19T14:31:26Z", + "pushedAt": "2025-10-20T14:19:27Z", "forks": 282, - "issues": 42, + "issues": 41, "subscribers": 12, - "stars": 1352, + "stars": 1354, "dependencies": 0 }, "name": "@react-native-community/slider", @@ -47034,19 +47100,20 @@ "moduleType": "turbo" }, "npm": { - "downloads": 2316122, - "weekDownloads": 457681, + "downloads": 2221097, + "weekDownloads": 463964, "size": 1038255, "latestRelease": "5.0.1", "latestReleaseDate": "2025-08-19T14:37:32.759Z" }, - "score": 68, + "score": 73, "matchingScoreModifiers": [ "Popular", "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.178, "topicSearchString": "react-native react-native slider" }, { @@ -47108,8 +47175,8 @@ }, "unmaintained": true, "npm": { - "downloads": 195, - "weekDownloads": 38, + "downloads": 207, + "weekDownloads": 37, "size": 82836, "latestRelease": "0.0.1", "latestReleaseDate": "2020-06-05T03:36:34.452Z" @@ -47119,7 +47186,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.581, + "popularity": -1.596, "topicSearchString": "react-native triangle triangle-view geometry shapes" }, { @@ -47185,8 +47252,8 @@ "unmaintained": true, "npmPkg": "reinput", "npm": { - "downloads": 548, - "weekDownloads": 149, + "downloads": 532, + "weekDownloads": 139, "size": 34734, "latestRelease": "3.7.2", "latestReleaseDate": "2020-06-15T09:55:46.651Z" @@ -47196,7 +47263,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.267, + "popularity": -1.278, "topicSearchString": "react-native input animation textinput material-design material placeholder labels icons" }, { @@ -47268,8 +47335,8 @@ }, "npmPkg": "react-native-network-logger", "npm": { - "downloads": 173454, - "weekDownloads": 34831, + "downloads": 166757, + "weekDownloads": 35444, "size": 231447, "latestRelease": "2.0.1", "latestReleaseDate": "2025-06-14T12:14:28.293Z" @@ -47279,7 +47346,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.181, "topicSearchString": "react native react-native network interceptor http monitor logging ios android debugger network-monitoring charles network-debug hacktoberfest" }, { @@ -47340,8 +47407,8 @@ }, "npmPkg": "react-native-dotenv", "npm": { - "downloads": 819603, - "weekDownloads": 159726, + "downloads": 799314, + "weekDownloads": 160217, "size": 22020, "latestRelease": "3.4.11", "latestReleaseDate": "2024-02-27T23:29:29.874Z" @@ -47353,7 +47420,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.17, "topicSearchString": "dotenv babel-plugin babel dotenv-flow react react-native config env 12factor hacktoberfest environment-variables" }, { @@ -47409,8 +47476,8 @@ "configPlugin": false }, "npm": { - "downloads": 131, - "weekDownloads": 11, + "downloads": 126, + "weekDownloads": 5, "latestRelease": "1.2.3", "latestReleaseDate": "2016-11-27T18:47:04.960Z" }, @@ -47420,7 +47487,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.427, + "popularity": -1.466, "topicSearchString": "react-component react-native dropdown ios android select-tag chooser" }, { @@ -47474,8 +47541,8 @@ }, "npmPkg": "react-native-music-metadata", "npm": { - "downloads": 51, - "weekDownloads": 12, + "downloads": 48, + "weekDownloads": 6, "latestRelease": "0.0.2", "latestReleaseDate": "2017-05-09T02:38:19.346Z" }, @@ -47484,7 +47551,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.55, + "popularity": -1.641, "topicSearchString": "react-native react-component metadata music track" }, { @@ -47544,8 +47611,8 @@ }, "npmPkg": "react-native-music-control", "npm": { - "downloads": 7850, - "weekDownloads": 2207, + "downloads": 7368, + "weekDownloads": 2001, "size": 126089, "latestRelease": "1.4.1", "latestReleaseDate": "2022-03-21T03:34:54.647Z" @@ -47557,7 +47624,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.511, + "popularity": -0.519, "topicSearchString": "react react-native remote-controls lockscreen nowplaying mpnowplayinginfocenter ios android now-playing sound" }, { @@ -47610,8 +47677,8 @@ }, "npmPkg": "react-native-mock", "npm": { - "downloads": 22280, - "weekDownloads": 3315, + "downloads": 21918, + "weekDownloads": 3733, "latestRelease": "0.3.1", "latestReleaseDate": "2017-02-03T19:52:04.086Z" }, @@ -47622,7 +47689,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.624, + "popularity": -0.605, "topicSearchString": "react react-native mock testing" }, { @@ -47674,8 +47741,8 @@ }, "npmPkg": "react-timer-mixin", "npm": { - "downloads": 653193, - "weekDownloads": 123736, + "downloads": 638578, + "weekDownloads": 123927, "size": 24636, "latestRelease": "0.13.4", "latestReleaseDate": "2018-07-17T07:08:28.416Z" @@ -47687,7 +47754,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, + "popularity": -0.585, "topicSearchString": "react timer mixin" }, { @@ -47741,7 +47808,7 @@ }, "npmPkg": "react-native-fileupload", "npm": { - "downloads": 28, + "downloads": 29, "weekDownloads": 4, "latestRelease": "1.2.0", "latestReleaseDate": "2015-12-24T15:09:22.146Z" @@ -47810,8 +47877,8 @@ "unmaintained": true, "npmPkg": "react-native-udp", "npm": { - "downloads": 151058, - "weekDownloads": 31174, + "downloads": 144557, + "weekDownloads": 29452, "size": 93456, "latestRelease": "4.1.7", "latestReleaseDate": "2023-01-26T08:05:00.363Z" @@ -47822,7 +47889,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.575, + "popularity": -0.577, "topicSearchString": "react-native dgram udp sockets ios android nodejs networking" }, { @@ -47938,8 +48005,8 @@ }, "npmPkg": "react-native-redash", "npm": { - "downloads": 577137, - "weekDownloads": 110185, + "downloads": 562379, + "weekDownloads": 114511, "size": 263051, "latestRelease": "18.1.4", "latestReleaseDate": "2025-09-21T16:47:21.107Z" @@ -47952,7 +48019,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.173, "topicSearchString": "" }, { @@ -48007,8 +48074,8 @@ }, "npmPkg": "react-native-randombytes", "npm": { - "downloads": 398670, - "weekDownloads": 88911, + "downloads": 382694, + "weekDownloads": 85015, "size": 56011, "latestRelease": "3.6.2", "latestReleaseDate": "2025-06-23T11:20:48.363Z" @@ -48018,7 +48085,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.19, + "popularity": 0.189, "topicSearchString": "react-component react-native randombytes rng ios android" }, { @@ -48073,8 +48140,8 @@ }, "npmPkg": "react-native-radial-gradient", "npm": { - "downloads": 41743, - "weekDownloads": 8662, + "downloads": 40564, + "weekDownloads": 9569, "size": 37705, "latestRelease": "1.2.1", "latestReleaseDate": "2025-02-25T04:07:15.689Z" @@ -48085,7 +48152,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.201, "topicSearchString": "react-native react native radial-gradient radial gradient" }, { @@ -48147,8 +48214,8 @@ }, "npmPkg": "react-native-qrcode-scanner", "npm": { - "downloads": 70665, - "weekDownloads": 12618, + "downloads": 69300, + "weekDownloads": 12554, "size": 37094, "latestRelease": "1.5.5", "latestReleaseDate": "2022-02-11T23:21:24.154Z" @@ -48161,7 +48228,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, + "popularity": -0.596, "topicSearchString": "react-native react ios qrcode qr scanner barcode qrcode-scanner camera" }, { @@ -48217,8 +48284,8 @@ "unmaintained": true, "npmPkg": "react-native-os", "npm": { - "downloads": 236296, - "weekDownloads": 55040, + "downloads": 226327, + "weekDownloads": 52954, "size": 91581, "latestRelease": "1.2.6", "latestReleaseDate": "2019-11-29T21:14:35.511Z" @@ -48229,7 +48296,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.802, + "popularity": -0.801, "topicSearchString": "react-component reactnative react-native os ios android" }, { @@ -48284,8 +48351,8 @@ "unmaintained": true, "npmPkg": "react-native-level-fs", "npm": { - "downloads": 252688, - "weekDownloads": 58696, + "downloads": 242249, + "weekDownloads": 56683, "size": 1738, "latestRelease": "3.0.1", "latestReleaseDate": "2018-04-20T13:00:58.290Z" @@ -48296,7 +48363,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.553, + "popularity": -0.551, "topicSearchString": "react-component react-native ios fs level filesystem" }, { @@ -48350,8 +48417,8 @@ }, "npmPkg": "react-native-iphone-x-helper", "npm": { - "downloads": 2054738, - "weekDownloads": 398102, + "downloads": 2000389, + "weekDownloads": 402664, "size": 5649, "latestRelease": "1.3.1", "latestReleaseDate": "2020-11-08T09:08:22.914Z" @@ -48363,7 +48430,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, + "popularity": -0.579, "topicSearchString": "react-native ios iphone-x iphonex stylesheet" }, { @@ -48414,8 +48481,8 @@ }, "npmPkg": "react-native-crypto", "npm": { - "downloads": 400667, - "weekDownloads": 88896, + "downloads": 385144, + "weekDownloads": 85103, "size": 9017, "latestRelease": "2.2.1", "latestReleaseDate": "2025-06-23T11:18:01.588Z" @@ -48425,7 +48492,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.189, + "popularity": 0.188, "topicSearchString": "react-native react-component ios" }, { @@ -48479,8 +48546,8 @@ "unmaintained": true, "npmPkg": "react-native-marquee", "npm": { - "downloads": 5928, - "weekDownloads": 1080, + "downloads": 5851, + "weekDownloads": 1076, "size": 12587, "latestRelease": "0.5.0", "latestReleaseDate": "2023-03-06T12:59:10.300Z" @@ -48491,7 +48558,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, + "popularity": -0.594, "topicSearchString": "react-native marquee ios android" }, { @@ -48542,8 +48609,8 @@ }, "unmaintained": true, "npm": { - "downloads": 300038, - "weekDownloads": 57521, + "downloads": 288513, + "weekDownloads": 59393, "size": 111252, "latestRelease": "2.1.12", "latestReleaseDate": "2020-05-19T21:18:51.496Z" @@ -48555,7 +48622,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.575, "topicSearchString": "image-zoom" }, { @@ -48609,8 +48676,8 @@ "unmaintained": true, "npmPkg": "react-native-skeleton-placeholder", "npm": { - "downloads": 421094, - "weekDownloads": 92967, + "downloads": 405926, + "weekDownloads": 91235, "size": 97041, "latestRelease": "5.2.4", "latestReleaseDate": "2022-11-15T18:05:28.354Z" @@ -48622,7 +48689,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.562, + "popularity": -0.559, "topicSearchString": "skeleton shimmer loading placeholder" }, { @@ -48681,8 +48748,8 @@ }, "npmPkg": "rn-fetch-blob", "npm": { - "downloads": 320959, - "weekDownloads": 62654, + "downloads": 310661, + "weekDownloads": 64024, "size": 2979619, "latestRelease": "0.12.0", "latestReleaseDate": "2019-12-19T16:40:09.142Z" @@ -48696,7 +48763,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.575, "topicSearchString": "react-native fetch blob fs upload file download filestream image-header" }, { @@ -48753,8 +48820,8 @@ "configPlugin": false }, "npm": { - "downloads": 86, - "weekDownloads": 0, + "downloads": 87, + "weekDownloads": 1, "latestRelease": "1.0.18", "latestReleaseDate": "2017-06-07T16:59:57.321Z" }, @@ -48763,7 +48830,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -1.49, "topicSearchString": "react-component reactnative react-native realtimemessaging realtime ios push-notifications realtime-messaging" }, { @@ -48898,8 +48965,8 @@ }, "npmPkg": "react-native-modalfy", "npm": { - "downloads": 17684, - "weekDownloads": 2639, + "downloads": 17582, + "weekDownloads": 3108, "size": 528958, "latestRelease": "3.7.0", "latestReleaseDate": "2025-06-30T09:48:36.849Z" @@ -48910,7 +48977,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.127, + "popularity": 0.15, "topicSearchString": "react react-native modal modals mobile ios android animations stack" }, { @@ -48978,8 +49045,8 @@ "unmaintained": true, "npmPkg": "react-navigation-collapsible", "npm": { - "downloads": 4640, - "weekDownloads": 928, + "downloads": 4565, + "weekDownloads": 955, "size": 30120, "latestRelease": "6.3.0", "latestReleaseDate": "2021-11-07T08:09:30.365Z" @@ -48991,7 +49058,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.572, "topicSearchString": "react-native react-navigation navigation collapsible collapsible-header hide-header animate-header hide-navigation" }, { @@ -49054,8 +49121,8 @@ "unmaintained": true, "npmPkg": "react-native-barcode-mask", "npm": { - "downloads": 47054, - "weekDownloads": 8148, + "downloads": 45729, + "weekDownloads": 8575, "size": 16669, "latestRelease": "1.2.4", "latestReleaseDate": "2020-06-22T13:38:16.470Z" @@ -49066,7 +49133,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, + "popularity": -0.591, "topicSearchString": "react-native barcode-mask barcode scanning style layout barcode-scanner border edges" }, { @@ -49077,6 +49144,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/auth0/react-native-auth0", @@ -49124,8 +49192,8 @@ }, "npmPkg": "react-native-auth0", "npm": { - "downloads": 292397, - "weekDownloads": 55327, + "downloads": 283909, + "weekDownloads": 58987, "size": 730844, "latestRelease": "5.0.1", "latestReleaseDate": "2025-10-03T10:57:09.735Z" @@ -49136,7 +49204,7 @@ "Known", "Recently updated" ], - "popularity": 0.161, + "popularity": 0.177, "topicSearchString": "react-native ios android dx-sdk" }, { @@ -49198,8 +49266,8 @@ }, "npmPkg": "react-native-restart", "npm": { - "downloads": 701340, - "weekDownloads": 140259, + "downloads": 671987, + "weekDownloads": 142912, "size": 599401, "latestRelease": "0.0.27", "latestReleaseDate": "2023-01-31T19:14:49.360Z" @@ -49211,7 +49279,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.181, "topicSearchString": "react-native ios android restart reload bundle" }, { @@ -49238,7 +49306,7 @@ "forks": 207, "issues": 14, "subscribers": 38, - "stars": 3607, + "stars": 3608, "dependencies": 0 }, "name": "@react-native-community/hooks", @@ -49260,8 +49328,8 @@ "configPlugin": false }, "npm": { - "downloads": 357998, - "weekDownloads": 69338, + "downloads": 346445, + "weekDownloads": 71813, "size": 46999, "latestRelease": "100.1.0", "latestReleaseDate": "2025-02-21T17:39:27.389Z" @@ -49273,7 +49341,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.176, "topicSearchString": "" }, { @@ -49334,8 +49402,8 @@ "unmaintained": true, "npmPkg": "react-native-responsive-screen", "npm": { - "downloads": 127922, - "weekDownloads": 25399, + "downloads": 126009, + "weekDownloads": 25963, "size": 796149, "latestRelease": "1.4.2", "latestReleaseDate": "2020-12-23T20:44:13.323Z" @@ -49347,7 +49415,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.581, + "popularity": -0.575, "topicSearchString": "react-native responsive-ui responsive-view responsive-screen responsive android ios responsive-layout ui" }, { @@ -49416,8 +49484,8 @@ }, "npmPkg": "react-native-ratings", "npm": { - "downloads": 663625, - "weekDownloads": 129842, + "downloads": 647692, + "weekDownloads": 133533, "size": 103752, "latestRelease": "8.1.0", "latestReleaseDate": "2021-05-23T13:58:52.855Z" @@ -49429,7 +49497,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.175, "topicSearchString": "react-native reactjs reactnative gestures ios stars android ratings ui-components" }, { @@ -49492,8 +49560,8 @@ "unmaintained": true, "npmPkg": "react-native-smooth-pincode-input", "npm": { - "downloads": 20675, - "weekDownloads": 3792, + "downloads": 19932, + "weekDownloads": 3729, "size": 534133, "latestRelease": "1.0.9", "latestReleaseDate": "2019-11-12T02:38:04.751Z" @@ -49504,7 +49572,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.591, "topicSearchString": "react-native pincode password textinput react javascript pin android ios" }, { @@ -49565,8 +49633,8 @@ "unmaintained": true, "npmPkg": "react-native-geolocation-service", "npm": { - "downloads": 396375, - "weekDownloads": 79676, + "downloads": 383938, + "weekDownloads": 80658, "size": 90943, "latestRelease": "5.3.1", "latestReleaseDate": "2022-09-23T05:57:55.248Z" @@ -49579,7 +49647,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.571, "topicSearchString": "react-native react native fused location geolocation android ios fusedlocationproviderclient" }, { @@ -49640,8 +49708,8 @@ "unmaintained": true, "npmPkg": "react-native-sensors", "npm": { - "downloads": 262632, - "weekDownloads": 60004, + "downloads": 251877, + "weekDownloads": 58389, "size": 90891, "latestRelease": "7.3.6", "latestReleaseDate": "2022-11-21T15:13:24.446Z" @@ -49653,7 +49721,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.556, + "popularity": -0.553, "topicSearchString": "react-native sensor gyroscope acceleration rxjs magnetometer barometer" }, { @@ -49714,8 +49782,8 @@ }, "npmPkg": "react-native-draggable-flatlist", "npm": { - "downloads": 584644, - "weekDownloads": 113410, + "downloads": 570140, + "weekDownloads": 113538, "size": 523106, "latestRelease": "4.0.3", "latestReleaseDate": "2025-05-06T05:05:46.134Z" @@ -49727,7 +49795,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.169, "topicSearchString": "react-native sortable draggable flatlist drag drop sort list" }, { @@ -49802,8 +49870,8 @@ }, "npmPkg": "react-native-fingerprint-scanner", "npm": { - "downloads": 20120, - "weekDownloads": 3907, + "downloads": 20072, + "weekDownloads": 4005, "size": 66869, "latestRelease": "6.0.0", "latestReleaseDate": "2020-06-20T13:54:04.348Z" @@ -49815,7 +49883,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, + "popularity": -0.58, "topicSearchString": "react-native component react-component react native touch touchid touch-id fingerprint fingerprint-scanner authentication authenticate auth face-id faceid biometrics" }, { @@ -49826,6 +49894,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/react-native-google-cast/react-native-google-cast", @@ -49876,8 +49945,8 @@ }, "npmPkg": "react-native-google-cast", "npm": { - "downloads": 86397, - "weekDownloads": 21542, + "downloads": 82753, + "weekDownloads": 23815, "size": 976622, "latestRelease": "4.9.1", "latestReleaseDate": "2025-07-26T10:41:27.347Z" @@ -49888,7 +49957,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.212, + "popularity": 0.245, "topicSearchString": "react-native ios android chromecast google cast google-cast sdk cast-library" }, { @@ -49948,8 +50017,8 @@ }, "npmPkg": "react-native-table-component", "npm": { - "downloads": 119124, - "weekDownloads": 22310, + "downloads": 114459, + "weekDownloads": 22720, "size": 34602, "latestRelease": "1.2.2", "latestReleaseDate": "2022-02-10T13:14:04.759Z" @@ -49961,7 +50030,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.581, "topicSearchString": "react-native table cell table-component" }, { @@ -49992,7 +50061,7 @@ "createdAt": "2020-06-20T08:03:51Z", "pushedAt": "2020-08-07T10:53:45Z", "forks": 19, - "issues": 12, + "issues": 11, "subscribers": 7, "stars": 233, "dependencies": 3 @@ -50017,8 +50086,8 @@ }, "unmaintained": true, "npm": { - "downloads": 5426, - "weekDownloads": 946, + "downloads": 5320, + "weekDownloads": 1090, "size": 31171, "latestRelease": "1.0.0", "latestReleaseDate": "2020-08-07T10:53:39.424Z" @@ -50029,7 +50098,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": -0.576, "topicSearchString": "" }, { @@ -50095,8 +50164,8 @@ "unmaintained": true, "npmPkg": "rn-sliding-up-panel", "npm": { - "downloads": 12652, - "weekDownloads": 2471, + "downloads": 12087, + "weekDownloads": 2438, "size": 43672, "latestRelease": "2.4.6", "latestReleaseDate": "2022-08-14T05:57:04.170Z" @@ -50108,7 +50177,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.579, "topicSearchString": "react react-native react-component ios android sliding panel sliding-up-panel" }, { @@ -50120,6 +50189,7 @@ "android": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/FormidableLabs/react-native-app-auth", @@ -50137,7 +50207,7 @@ "forks": 424, "issues": 131, "subscribers": 58, - "stars": 2198, + "stars": 2199, "dependencies": 2 }, "name": "react-native-app-auth", @@ -50169,8 +50239,8 @@ }, "npmPkg": "react-native-app-auth", "npm": { - "downloads": 509869, - "weekDownloads": 101343, + "downloads": 491294, + "weekDownloads": 107199, "size": 176559, "latestRelease": "8.1.0", "latestReleaseDate": "2025-10-17T18:36:04.768Z" @@ -50183,7 +50253,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.185, "topicSearchString": "react react-native auth authentication oauth oauth2 appauth" }, { @@ -50235,8 +50305,8 @@ "unmaintained": true, "npmPkg": "react-navigation-heavy-screen", "npm": { - "downloads": 1662, - "weekDownloads": 441, + "downloads": 1603, + "weekDownloads": 406, "size": 38385, "latestRelease": "1.2.1", "latestReleaseDate": "2021-05-08T21:36:26.089Z" @@ -50247,7 +50317,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.524, + "popularity": -0.535, "topicSearchString": "react-native ios android" }, { @@ -50275,7 +50345,7 @@ "forks": 167, "issues": 34, "subscribers": 20, - "stars": 4277, + "stars": 4276, "dependencies": 7 }, "name": "tailwind-rn", @@ -50302,8 +50372,8 @@ }, "npmPkg": "tailwind-rn", "npm": { - "downloads": 22105, - "weekDownloads": 3951, + "downloads": 21684, + "weekDownloads": 4273, "size": 36184, "latestRelease": "4.2.0", "latestReleaseDate": "2022-02-07T14:49:40.222Z" @@ -50315,7 +50385,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.168, "topicSearchString": "tailwind tailwindcss react-native" }, { @@ -50371,21 +50441,20 @@ }, "npmPkg": "react-native-url-polyfill", "npm": { - "downloads": 4598652, - "weekDownloads": 891752, + "downloads": 4466188, + "weekDownloads": 915056, "size": 28670, "latestRelease": "3.0.0", "latestReleaseDate": "2025-09-24T15:49:33.442Z" }, - "score": 97, + "score": 73, "matchingScoreModifiers": [ - "Very popular", "Popular", "Known", "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.174, "topicSearchString": "url urlsearchparams polyfill react-native whatwg-url javascript" }, { @@ -50415,7 +50484,7 @@ "forks": 417, "issues": 18, "subscribers": 83, - "stars": 13963, + "stars": 13964, "dependencies": 0 }, "name": "react-content-loader", @@ -50450,8 +50519,8 @@ }, "npmPkg": "react-content-loader", "npm": { - "downloads": 2457972, - "weekDownloads": 458988, + "downloads": 2387854, + "weekDownloads": 478280, "size": 164170, "latestRelease": "7.1.1", "latestReleaseDate": "2025-07-14T08:39:30.452Z" @@ -50463,7 +50532,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.17, "topicSearchString": "react react-native skeleton placeholder loader loading content svg facebook-cards-loaders skeleton-screen components" }, { @@ -50524,8 +50593,8 @@ "unmaintained": true, "npmPkg": "react-native-material-ripple", "npm": { - "downloads": 73262, - "weekDownloads": 14819, + "downloads": 70595, + "weekDownloads": 14352, "size": 12244, "latestRelease": "0.9.1", "latestReleaseDate": "2019-09-26T10:18:45.375Z" @@ -50536,7 +50605,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.578, + "popularity": -0.577, "topicSearchString": "react react-component react-native ios android ripple material material-design" }, { @@ -50599,8 +50668,8 @@ "configPlugin": false }, "npm": { - "downloads": 4472017, - "weekDownloads": 866183, + "downloads": 4344242, + "weekDownloads": 884745, "size": 705256, "latestRelease": "13.3.3", "latestReleaseDate": "2025-08-26T11:55:10.022Z" @@ -50613,7 +50682,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.173, "topicSearchString": "react-native react test integration testing jest hacktoberfest" }, { @@ -50649,7 +50718,7 @@ "forks": 131, "issues": 1, "subscribers": 3, - "stars": 1174, + "stars": 1176, "dependencies": 0 }, "name": "react-native-confirmation-code-field", @@ -50689,8 +50758,8 @@ }, "npmPkg": "react-native-confirmation-code-field", "npm": { - "downloads": 695322, - "weekDownloads": 147114, + "downloads": 671546, + "weekDownloads": 147873, "size": 24213, "latestRelease": "8.0.1", "latestReleaseDate": "2025-06-10T20:53:19.767Z" @@ -50701,7 +50770,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.187, "topicSearchString": "react react-component react-native component android ios code-input confirmation-code pin-code confirmation-code-input pin-code-input library code-verification web otp-inputs one-time-password" }, { @@ -50756,8 +50825,8 @@ "unmaintained": true, "npmPkg": "react-native-rate", "npm": { - "downloads": 147206, - "weekDownloads": 31796, + "downloads": 140552, + "weekDownloads": 32702, "size": 39033, "latestRelease": "1.2.12", "latestReleaseDate": "2023-01-23T06:43:23.205Z" @@ -50769,7 +50838,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.566, + "popularity": -0.552, "topicSearchString": "react-native react rate review rating rate-me" }, { @@ -50827,8 +50896,8 @@ "unmaintained": true, "npmPkg": "react-native-securerandom", "npm": { - "downloads": 509384, - "weekDownloads": 94188, + "downloads": 490573, + "weekDownloads": 99014, "size": 51400, "latestRelease": "1.0.1", "latestReleaseDate": "2022-09-22T12:11:53.796Z" @@ -50839,7 +50908,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.578, "topicSearchString": "react-native secrandomcopybytes prng csprng securerandom crypto randomnumbergenerator cryptography" }, { @@ -50910,8 +50979,8 @@ "unmaintained": true, "npmPkg": "react-native-cardview", "npm": { - "downloads": 7638, - "weekDownloads": 933, + "downloads": 7625, + "weekDownloads": 1039, "size": 1581220, "latestRelease": "2.0.5", "latestReleaseDate": "2019-10-21T05:43:37.376Z" @@ -50922,7 +50991,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.646, + "popularity": -0.634, "topicSearchString": "react react-native react-component card cardview card-view shadow shadow-view shadowview appcompat support android ios component elevation" }, { @@ -50979,8 +51048,8 @@ "unmaintained": true, "npmPkg": "react-native-barcode-builder", "npm": { - "downloads": 24137, - "weekDownloads": 5590, + "downloads": 22381, + "weekDownloads": 4272, "size": 242759539, "latestRelease": "2.0.0", "latestReleaseDate": "2020-03-29T09:13:35.558Z" @@ -50992,7 +51061,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.553, + "popularity": -0.588, "topicSearchString": "react-native barcode" }, { @@ -51025,7 +51094,7 @@ "forks": 313, "issues": 45, "subscribers": 18, - "stars": 1700, + "stars": 1701, "dependencies": 0 }, "name": "react-native-app-intro-slider", @@ -51058,8 +51127,8 @@ "unmaintained": true, "npmPkg": "react-native-app-intro-slider", "npm": { - "downloads": 72487, - "weekDownloads": 14222, + "downloads": 70555, + "weekDownloads": 14746, "size": 28526, "latestRelease": "4.0.4", "latestReleaseDate": "2020-05-26T13:35:26.877Z" @@ -51071,7 +51140,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.583, + "popularity": -0.572, "topicSearchString": "swiper app intro ios android react-component react-native slider" }, { @@ -51132,8 +51201,8 @@ "unmaintained": true, "npmPkg": "react-native-secure-key-store", "npm": { - "downloads": 41194, - "weekDownloads": 6633, + "downloads": 40954, + "weekDownloads": 6892, "size": 523934, "latestRelease": "2.0.10", "latestReleaseDate": "2022-08-18T03:01:30.247Z" @@ -51144,7 +51213,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.613, + "popularity": -0.607, "topicSearchString": "react-native ios android keychain-service keystore-service device-security keychain-services keystore-services" }, { @@ -51162,6 +51231,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/rnmapbox/maps", @@ -51213,8 +51283,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 314775, - "weekDownloads": 57702, + "downloads": 308856, + "weekDownloads": 59783, "size": 3135088, "latestRelease": "10.2.6", "latestReleaseDate": "2025-10-18T15:45:34.909Z" @@ -51228,7 +51298,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.165, "topicSearchString": "ios android mapbox react-native maps mapbox-gl-native map expo maplibre" }, { @@ -51290,8 +51360,8 @@ }, "npmPkg": "react-native-map-clustering", "npm": { - "downloads": 94174, - "weekDownloads": 18666, + "downloads": 91197, + "weekDownloads": 18699, "size": 37695, "latestRelease": "4.0.0", "latestReleaseDate": "2025-07-23T18:05:32.983Z" @@ -51303,7 +51373,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.174, "topicSearchString": "react-native react cluster android ios map clustering mapview markers maps" }, { @@ -51313,6 +51383,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/revtel/react-native-nfc-manager", @@ -51327,7 +51398,7 @@ "updatedAt": "2025-09-27T00:37:44Z", "createdAt": "2017-06-17T00:05:59Z", "pushedAt": "2025-09-27T00:37:44Z", - "forks": 331, + "forks": 330, "issues": 6, "subscribers": 31, "stars": 1552, @@ -51358,8 +51429,8 @@ }, "npmPkg": "react-native-nfc-manager", "npm": { - "downloads": 173685, - "weekDownloads": 36333, + "downloads": 168037, + "weekDownloads": 36621, "size": 227298, "latestRelease": "3.17.1", "latestReleaseDate": "2025-09-27T00:37:42.685Z" @@ -51371,7 +51442,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.185, "topicSearchString": "react-native android ios nfc" }, { @@ -51427,8 +51498,8 @@ }, "npmPkg": "react-native-watch-connectivity", "npm": { - "downloads": 50972, - "weekDownloads": 9130, + "downloads": 49774, + "weekDownloads": 9532, "size": 118589, "latestRelease": "1.1.0", "latestReleaseDate": "2022-09-29T06:08:45.964Z" @@ -51440,7 +51511,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.163, "topicSearchString": "react-native ios watch apple-watch iwatch react" }, { @@ -51493,8 +51564,8 @@ }, "npmPkg": "react-native-background-downloader", "npm": { - "downloads": 1038, - "weekDownloads": 180, + "downloads": 1021, + "weekDownloads": 174, "size": 89133, "latestRelease": "2.3.4", "latestReleaseDate": "2019-12-10T14:13:55.311Z" @@ -51505,7 +51576,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": -0.605, "topicSearchString": "react-native background download large-files" }, { @@ -51615,7 +51686,7 @@ "forks": 185, "issues": 17, "subscribers": 63, - "stars": 3052, + "stars": 3053, "dependencies": 1 }, "name": "react-native-game-engine", @@ -51647,8 +51718,8 @@ }, "npmPkg": "react-native-game-engine", "npm": { - "downloads": 8823, - "weekDownloads": 1678, + "downloads": 8676, + "weekDownloads": 1629, "size": 54003, "latestRelease": "1.2.0", "latestReleaseDate": "2020-06-09T06:13:40.275Z" @@ -51660,7 +51731,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.16, "topicSearchString": "react react-native game gaming game-dev game-development game-engine game-2d" }, { @@ -51722,8 +51793,8 @@ "unmaintained": true, "npmPkg": "react-native-font-faces", "npm": { - "downloads": 500, - "weekDownloads": 92, + "downloads": 467, + "weekDownloads": 76, "size": 260519, "latestRelease": "4.1.4", "latestReleaseDate": "2023-04-17T12:32:48.084Z" @@ -51733,7 +51804,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.593, + "popularity": -1.611, "topicSearchString": "react-native fonts font-weight font-face font-style custom-fonts expo web" }, { @@ -51763,7 +51834,7 @@ "createdAt": "2020-01-09T10:31:03Z", "pushedAt": "2025-10-16T03:57:56Z", "forks": 145, - "issues": 103, + "issues": 104, "subscribers": 14, "stars": 1880, "dependencies": 0 @@ -51809,8 +51880,8 @@ }, "npmPkg": "react-native-actions-sheet", "npm": { - "downloads": 207869, - "weekDownloads": 39561, + "downloads": 201602, + "weekDownloads": 41350, "size": 153489, "latestRelease": "0.9.8", "latestReleaseDate": "2025-10-16T03:57:29.699Z" @@ -51823,7 +51894,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.174, "topicSearchString": "bottom-animated react-native javascript actionsheet android ios action-sheet bottom-sheet bottom-drawer dialog picker modal drawer raw-bottom-sheet bottom-app-bar react native action sheet bottom" }, { @@ -51881,8 +51952,8 @@ "unmaintained": true, "npmPkg": "react-native-photo-editor", "npm": { - "downloads": 3549, - "weekDownloads": 542, + "downloads": 3486, + "weekDownloads": 567, "size": 19488820, "latestRelease": "1.0.13", "latestReleaseDate": "2022-02-08T11:18:05.990Z" @@ -51895,7 +51966,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.62, + "popularity": -0.612, "topicSearchString": "react-native android ios" }, { @@ -51928,7 +51999,7 @@ "forks": 76, "issues": 16, "subscribers": 8, - "stars": 2150, + "stars": 2151, "dependencies": 0 }, "name": "react-native-blurhash", @@ -51969,8 +52040,8 @@ }, "npmPkg": "react-native-blurhash", "npm": { - "downloads": 59439, - "weekDownloads": 11399, + "downloads": 56693, + "weekDownloads": 11501, "size": 108855, "latestRelease": "2.1.2", "latestReleaseDate": "2025-08-08T14:06:57.598Z" @@ -51981,7 +52052,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.172, "topicSearchString": "react-native blurhash image ui ux component loading placeholder swift kotlin native-module typescript node javascript library" }, { @@ -52048,8 +52119,8 @@ }, "npmPkg": "react-native-youtube-iframe", "npm": { - "downloads": 395176, - "weekDownloads": 76658, + "downloads": 382810, + "weekDownloads": 78056, "size": 74746, "latestRelease": "2.4.1", "latestReleaseDate": "2025-07-01T04:27:12.457Z" @@ -52060,7 +52131,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.173, "topicSearchString": "react-native react-component component react mobile ios android ui youtube youtube-iframe iframe youtube-api youtube-player youtube-video expo" }, { @@ -52120,8 +52191,8 @@ "unmaintained": true, "npmPkg": "react-native-notification-badge", "npm": { - "downloads": 3013, - "weekDownloads": 464, + "downloads": 2984, + "weekDownloads": 504, "size": 32594, "latestRelease": "1.0.5", "latestReleaseDate": "2020-07-29T13:22:37.555Z" @@ -52131,7 +52202,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.619, + "popularity": -0.606, "topicSearchString": "react-native notification badge count native-module notifications manager library react" }, { @@ -52196,8 +52267,8 @@ }, "npmPkg": "react-native-rooster", "npm": { - "downloads": 113, - "weekDownloads": 4, + "downloads": 114, + "weekDownloads": 5, "size": 719280, "latestRelease": "2.0.1", "latestReleaseDate": "2025-05-13T18:22:15.902Z" @@ -52206,7 +52277,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.719, + "popularity": -0.712, "topicSearchString": "react-native rooster ios android toast typescript macos windows" }, { @@ -52285,8 +52356,8 @@ }, "npmPkg": "use-count-up", "npm": { - "downloads": 144955, - "weekDownloads": 26600, + "downloads": 139655, + "weekDownloads": 28054, "size": 27496, "latestRelease": "3.0.1", "latestReleaseDate": "2021-09-05T13:22:52.417Z" @@ -52297,7 +52368,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.171, "topicSearchString": "react reactjs react-native animate-numerical-value animations count-up countup react-count-up react-countup countdown count-down counting hooks ios android use use-count-up use-countup typescript animate-counting" }, { @@ -52360,8 +52431,8 @@ "configPlugin": false }, "npm": { - "downloads": 58490, - "weekDownloads": 11024, + "downloads": 57173, + "weekDownloads": 10831, "size": 22520, "latestRelease": "3.2.1", "latestReleaseDate": "2023-03-15T07:26:20.362Z" @@ -52373,7 +52444,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.161, "topicSearchString": "react-native countdown timer circle clock svg" }, { @@ -52430,8 +52501,8 @@ "unmaintained": true, "npmPkg": "react-native-event-source", "npm": { - "downloads": 15442, - "weekDownloads": 4612, + "downloads": 14620, + "weekDownloads": 4054, "size": 16849, "latestRelease": "1.1.0", "latestReleaseDate": "2019-05-27T20:31:38.679Z" @@ -52442,7 +52513,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.246, + "popularity": -0.514, "topicSearchString": "react-native react-component event-source sse" }, { @@ -52510,8 +52581,8 @@ "unmaintained": true, "npmPkg": "react-native-zoom-bridge", "npm": { - "downloads": 143, - "weekDownloads": 8, + "downloads": 142, + "weekDownloads": 6, "size": 103880, "latestRelease": "1.0.18", "latestReleaseDate": "2020-07-14T14:11:07.347Z" @@ -52521,7 +52592,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.702, + "popularity": -1.714, "topicSearchString": "react-native zoom-sdk mobilertc zoom.us video-calls conference-calls chat-online zoom-us sdk bridge ios android confrence calls meetings" }, { @@ -52593,8 +52664,8 @@ }, "npmPkg": "react-native-jw-media-player", "npm": { - "downloads": 1286, - "weekDownloads": 181, + "downloads": 1242, + "weekDownloads": 150, "size": 1232934, "latestRelease": "0.2.46", "latestReleaseDate": "2024-04-18T16:21:07.942Z" @@ -52606,7 +52677,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.63, + "popularity": -0.647, "topicSearchString": "react react-native jwplayer media player mediaplayer media-player jw android ios audio video sdk" }, { @@ -52661,8 +52732,8 @@ "unmaintained": true, "npmPkg": "react-native-ios-kit", "npm": { - "downloads": 2338, - "weekDownloads": 373, + "downloads": 2251, + "weekDownloads": 358, "size": 289678, "latestRelease": "0.0.22", "latestReleaseDate": "2020-05-13T10:44:26.857Z" @@ -52673,7 +52744,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.614, + "popularity": -0.615, "topicSearchString": "react-native ios-ui ui-kit" }, { @@ -52728,8 +52799,8 @@ }, "npmPkg": "react-native-emoji-selector", "npm": { - "downloads": 15587, - "weekDownloads": 3259, + "downloads": 15309, + "weekDownloads": 3332, "size": 15476, "latestRelease": "0.2.0", "latestReleaseDate": "2020-12-04T19:35:57.846Z" @@ -52740,7 +52811,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.185, "topicSearchString": "emoji react react-native emoji-keyboard" }, { @@ -52803,8 +52874,8 @@ "unmaintained": true, "npmPkg": "react-native-scroll-bottom-sheet", "npm": { - "downloads": 2482, - "weekDownloads": 323, + "downloads": 2448, + "weekDownloads": 380, "size": 204895, "latestRelease": "0.7.0", "latestReleaseDate": "2020-08-24T22:22:17.293Z" @@ -52816,7 +52887,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.639, + "popularity": -0.618, "topicSearchString": "react-native react ios android bottom-sheet bottomsheet cross-platform 60fps reanimated gesture-handler" }, { @@ -52880,8 +52951,8 @@ }, "unmaintained": true, "npm": { - "downloads": 6828, - "weekDownloads": 1603, + "downloads": 6674, + "weekDownloads": 1755, "size": 4170390, "latestRelease": "1.2.2", "latestReleaseDate": "2020-10-27T01:20:57.332Z" @@ -52892,7 +52963,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.55, + "popularity": -0.526, "topicSearchString": "react-native react-component component react mobile ios android ui popup popup-ui popup-ui-design" }, { @@ -52969,7 +53040,7 @@ }, "unmaintained": true, "npm": { - "downloads": 187, + "downloads": 1055, "weekDownloads": 46, "size": 31102, "latestRelease": "1.2.0", @@ -52981,7 +53052,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.291, + "popularity": -0.713, "topicSearchString": "elegant elegant-header gorgeous gorgeous-header apple apple-header header classic modern modern-header classic-header react-native icons javascript ui-lib rn header-view view react reactjs ios mobile mobile-app-development android" }, { @@ -53045,8 +53116,8 @@ "unmaintained": true, "npmPkg": "react-native-phone-input", "npm": { - "downloads": 52442, - "weekDownloads": 10797, + "downloads": 50289, + "weekDownloads": 11095, "size": 2011977, "latestRelease": "1.3.7", "latestReleaseDate": "2023-07-28T15:10:30.658Z" @@ -53058,7 +53129,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.575, + "popularity": -0.562, "topicSearchString": "react-native phone telephone phone-input input tel input-text international component ios android country-picker" }, { @@ -53067,6 +53138,7 @@ "https://github.com/Gustash/react-native-siri-shortcut/tree/master/example" ], "ios": true, + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/react-native-siri-shortcut", "github": { "urls": { "repo": "https://github.com/Gustash/react-native-siri-shortcut", @@ -53118,8 +53190,8 @@ }, "npmPkg": "react-native-siri-shortcut", "npm": { - "downloads": 16068, - "weekDownloads": 3000, + "downloads": 15463, + "weekDownloads": 3190, "size": 67729, "latestRelease": "3.2.4", "latestReleaseDate": "2023-12-13T17:29:12.036Z" @@ -53130,7 +53202,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.175, "topicSearchString": "react-native siri ios siri-shortcuts shortcuts automation swift react-component native react" }, { @@ -53190,8 +53262,8 @@ }, "npmPkg": "react-native-image-keyboard", "npm": { - "downloads": 1050, - "weekDownloads": 167, + "downloads": 1035, + "weekDownloads": 153, "size": 35437, "latestRelease": "2.2.1", "latestReleaseDate": "2023-11-13T11:57:33.635Z" @@ -53201,7 +53273,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.135, + "popularity": 0.126, "topicSearchString": "react-native text-input gif png clipboard ime gboard stickers media" }, { @@ -53268,8 +53340,8 @@ "configPlugin": false }, "npm": { - "downloads": 320, - "weekDownloads": 19, + "downloads": 317, + "weekDownloads": 17, "size": 1496141, "latestRelease": "4.0.11", "latestReleaseDate": "2024-02-05T16:36:31.211Z" @@ -53279,7 +53351,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.699, + "popularity": -0.704, "topicSearchString": "qrcode easyqrcode qrcodejs react-native reactnative rn-qrcode reactnative-qrcode qrcode-react-native javascript-qrcode qrcode-logo qrcode-generator easyqrcodejs javascript javascript-qrcode-generator qrcode-javascript" }, { @@ -53416,8 +53488,8 @@ "unmaintained": true, "npmPkg": "react-native-responsive-linechart", "npm": { - "downloads": 7916, - "weekDownloads": 1522, + "downloads": 7657, + "weekDownloads": 1590, "size": 72429, "latestRelease": "5.7.1", "latestReleaseDate": "2021-03-30T12:01:26.776Z" @@ -53428,7 +53500,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.573, "topicSearchString": "react-native chart flex responsive linechart svg area-chart" }, { @@ -53483,8 +53555,8 @@ }, "npmPkg": "react-native-clean-project", "npm": { - "downloads": 264914, - "weekDownloads": 48199, + "downloads": 261404, + "weekDownloads": 51518, "size": 33122, "latestRelease": "4.0.3", "latestReleaseDate": "2023-12-05T19:19:52.543Z" @@ -53496,7 +53568,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.168, "topicSearchString": "react native clean react-native reactnative" }, { @@ -53550,8 +53622,8 @@ }, "npmPkg": "react-native-sass-transformer", "npm": { - "downloads": 44869, - "weekDownloads": 6503, + "downloads": 43544, + "weekDownloads": 6695, "size": 16584, "latestRelease": "3.0.0", "latestReleaseDate": "2024-05-15T13:00:22.063Z" @@ -53562,7 +53634,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.123, + "popularity": 0.131, "topicSearchString": "react-native sass scss loader transform" }, { @@ -53686,8 +53758,8 @@ "unmaintained": true, "npmPkg": "rn-tooltip", "npm": { - "downloads": 79426, - "weekDownloads": 13579, + "downloads": 76298, + "weekDownloads": 14909, "size": 21185, "latestRelease": "3.0.3", "latestReleaseDate": "2022-09-05T12:06:44.532Z" @@ -53698,7 +53770,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, + "popularity": -0.584, "topicSearchString": "" }, { @@ -53764,8 +53836,8 @@ }, "npmPkg": "react-qr-code", "npm": { - "downloads": 3734580, - "weekDownloads": 711153, + "downloads": 3626977, + "weekDownloads": 738631, "size": 13763, "latestRelease": "2.0.18", "latestReleaseDate": "2025-07-06T20:47:33.365Z" @@ -53776,7 +53848,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.173, "topicSearchString": "code generator qr react react-native qr-code component" }, { @@ -53837,8 +53909,8 @@ }, "unmaintained": true, "npm": { - "downloads": 308, - "weekDownloads": 23, + "downloads": 343, + "weekDownloads": 25, "size": 113071, "latestRelease": "0.8.0", "latestReleaseDate": "2022-09-08T13:14:14.303Z" @@ -53848,7 +53920,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.436, + "popularity": -1.438, "topicSearchString": "react-native ios android react mercadopago sdk library mercadopago-api bridge" }, { @@ -53908,8 +53980,8 @@ "unmaintained": true, "npmPkg": "react-native-material-tabs", "npm": { - "downloads": 5824, - "weekDownloads": 214, + "downloads": 5798, + "weekDownloads": 247, "size": 51971, "latestRelease": "4.2.0", "latestReleaseDate": "2021-03-29T06:11:20.573Z" @@ -53920,7 +53992,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.719, + "popularity": -0.714, "topicSearchString": "react react-native material-design tabs material component typescript" }, { @@ -53949,9 +54021,9 @@ "createdAt": "2020-01-22T15:17:28Z", "pushedAt": "2025-09-29T14:40:49Z", "forks": 173, - "issues": 31, + "issues": 30, "subscribers": 23, - "stars": 1222, + "stars": 1223, "dependencies": 13 }, "name": "@storybook/react-native", @@ -53977,8 +54049,8 @@ "configPlugin": false }, "npm": { - "downloads": 1303271, - "weekDownloads": 259746, + "downloads": 1257527, + "weekDownloads": 264021, "size": 142539, "latestRelease": "9.1.4", "latestReleaseDate": "2025-09-29T14:41:31.331Z" @@ -53990,7 +54062,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.178, "topicSearchString": "react react-native storybook" }, { @@ -54056,8 +54128,8 @@ }, "npmPkg": "react-native-apple-card-views", "npm": { - "downloads": 279, - "weekDownloads": 22, + "downloads": 277, + "weekDownloads": 23, "size": 994737, "latestRelease": "3.0.0", "latestReleaseDate": "2023-02-04T10:55:33.103Z" @@ -54067,7 +54139,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.682, + "popularity": -0.679, "topicSearchString": "bounceable bouncy apple apple-card card view card-view apple-card-view react-native icons javascript ui-lib rn" }, { @@ -54100,7 +54172,7 @@ "forks": 222, "issues": 21, "subscribers": 13, - "stars": 1547, + "stars": 1548, "dependencies": 0 }, "name": "@invertase/react-native-apple-authentication", @@ -54133,8 +54205,8 @@ "configPlugin": false }, "npm": { - "downloads": 477401, - "weekDownloads": 95437, + "downloads": 467226, + "weekDownloads": 97157, "size": 125320, "latestRelease": "2.4.1", "latestReleaseDate": "2025-04-03T17:31:38.981Z" @@ -54146,7 +54218,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.177, "topicSearchString": "react react-native apple ios button firebase aws authentication apple-auth apple-authentication" }, { @@ -54216,8 +54288,8 @@ "unmaintained": true, "npmPkg": "tape-cli", "npm": { - "downloads": 229, - "weekDownloads": 3, + "downloads": 230, + "weekDownloads": 4, "size": 106713, "latestRelease": "0.14.0", "latestReleaseDate": "2020-12-18T16:22:31.941Z" @@ -54227,7 +54299,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.489, + "popularity": -1.485, "topicSearchString": "oclif simulator ios android screen-record record share-screen gif screenshot emulator recording recorder screen-capture screenrecord screen-recorder" }, { @@ -54289,8 +54361,8 @@ "unmaintained": true, "npmPkg": "react-native-simple-logger", "npm": { - "downloads": 84, - "weekDownloads": 14, + "downloads": 86, + "weekDownloads": 15, "size": 13676, "latestRelease": "0.1.1", "latestReleaseDate": "2020-07-13T17:39:56.101Z" @@ -54300,7 +54372,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.603, + "popularity": -1.6, "topicSearchString": "simple-logger react-native logger simple" }, { @@ -54360,8 +54432,8 @@ "unmaintained": true, "npmPkg": "react-native-easy-calendar", "npm": { - "downloads": 630, - "weekDownloads": 85, + "downloads": 618, + "weekDownloads": 95, "size": 732039, "latestRelease": "0.3.0", "latestReleaseDate": "2021-02-26T14:20:47.500Z" @@ -54371,7 +54443,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.385, + "popularity": -1.369, "topicSearchString": "react-native ios android calendar" }, { @@ -54437,7 +54509,7 @@ }, "unmaintained": true, "npm": { - "downloads": 97, + "downloads": 208, "weekDownloads": 1, "size": 19015, "latestRelease": "0.2.2", @@ -54448,7 +54520,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.741, + "popularity": -1.746, "topicSearchString": "react-native react native nestedlist nestedview nested android ios simple" }, { @@ -54508,8 +54580,8 @@ "unmaintained": true, "npmPkg": "react-native-paypal", "npm": { - "downloads": 1450, - "weekDownloads": 229, + "downloads": 1476, + "weekDownloads": 235, "size": 231473012, "latestRelease": "4.1.0", "latestReleaseDate": "2021-02-14T23:30:22.494Z" @@ -54520,7 +54592,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.616, + "popularity": -0.615, "topicSearchString": "react-native paypal checkout paypal-checkout braintree android ios payment" }, { @@ -54583,8 +54655,8 @@ }, "unmaintained": true, "npm": { - "downloads": 335, - "weekDownloads": 76, + "downloads": 340, + "weekDownloads": 75, "size": 56016, "latestRelease": "1.0.0-alpha.6", "latestReleaseDate": "2021-09-20T14:29:51.799Z" @@ -54596,7 +54668,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.305, + "popularity": -1.313, "topicSearchString": "charts react native react-native animations reanimated2 reanimated" }, { @@ -54665,8 +54737,8 @@ }, "npmPkg": "rn-qr-generator", "npm": { - "downloads": 77976, - "weekDownloads": 14508, + "downloads": 76802, + "weekDownloads": 14896, "size": 121016, "latestRelease": "1.4.5", "latestReleaseDate": "2025-10-13T19:54:14.444Z" @@ -54677,7 +54749,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.165, "topicSearchString": "react-native qr qr-code decode-qr generate-qr qrcode data-matrix datamatrix qr-generator qrcode-image qr-decode detect-qr-code scan-qr-code qrcode-generator detect-qr-code-from-image qrcode-detector totp decoder" }, { @@ -54734,8 +54806,8 @@ "configPlugin": false }, "npm": { - "downloads": 5278, - "weekDownloads": 1246, + "downloads": 5018, + "weekDownloads": 1139, "size": 250346, "latestRelease": "2.4.2", "latestReleaseDate": "2025-05-23T15:52:03.009Z" @@ -54745,7 +54817,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.201, + "popularity": 0.193, "topicSearchString": "react-native pdf ios android pdf-viewer" }, { @@ -54809,8 +54881,8 @@ }, "npmPkg": "react-native-week-view", "npm": { - "downloads": 4057, - "weekDownloads": 317, + "downloads": 4067, + "weekDownloads": 287, "size": 136059, "latestRelease": "0.30.0", "latestReleaseDate": "2023-08-27T09:13:18.186Z" @@ -54821,7 +54893,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.066, + "popularity": 0.06, "topicSearchString": "android ios react-native react react-component weekview calendar component calendar-view" }, { @@ -54892,8 +54964,8 @@ }, "npmPkg": "react-native-mmkv-storage", "npm": { - "downloads": 72597, - "weekDownloads": 14948, + "downloads": 70109, + "weekDownloads": 15228, "size": 971324, "latestRelease": "12.0.0", "latestReleaseDate": "2025-08-25T19:31:15.761Z" @@ -54905,7 +54977,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.185, "topicSearchString": "react-native fast-storage react native asyncstorage async-storage mmkv-database mmkv-storage encrypted-storage encryption mmkv android ios key-value-storage database fast storage persist-storage secure-storage redux-persist-storage java objective-c" }, { @@ -54978,8 +55050,8 @@ }, "npmPkg": "react-native-bouncy-checkbox", "npm": { - "downloads": 102595, - "weekDownloads": 20967, + "downloads": 100081, + "weekDownloads": 21276, "size": 318386, "latestRelease": "4.1.2", "latestReleaseDate": "2024-08-21T07:40:46.689Z" @@ -54990,7 +55062,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.181, "topicSearchString": "toggle switch bouncy checkbox animated check customizable rn-checkbox freakycoder kuray react react-native javascript ui-lib rn reactjs ios android mobile mobile-app customizable-ui" }, { @@ -55020,10 +55092,10 @@ "updatedAt": "2025-09-05T09:25:37Z", "createdAt": "2020-07-31T12:28:32Z", "pushedAt": "2025-09-05T09:25:37Z", - "forks": 851, - "issues": 64, + "forks": 852, + "issues": 63, "subscribers": 29, - "stars": 8405, + "stars": 8411, "dependencies": 2 }, "name": "@gorhom/bottom-sheet", @@ -55055,8 +55127,8 @@ "configPlugin": false }, "npm": { - "downloads": 3039515, - "weekDownloads": 601276, + "downloads": 2951991, + "weekDownloads": 613359, "size": 1306476, "latestRelease": "5.2.6", "latestReleaseDate": "2025-09-05T09:25:52.717Z" @@ -55068,7 +55140,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.177, "topicSearchString": "react-native ios android web bottom-sheet bottomsheet reanimated sheet modal" }, { @@ -55127,8 +55199,8 @@ }, "unmaintained": true, "npm": { - "downloads": 4087, - "weekDownloads": 764, + "downloads": 3899, + "weekDownloads": 769, "size": 86118, "latestRelease": "0.6.4", "latestReleaseDate": "2022-09-30T17:31:42.704Z" @@ -55139,7 +55211,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.582, "topicSearchString": "react react-native ios android keycloak keycloak-js hacktoberfest" }, { @@ -55195,8 +55267,8 @@ }, "npmPkg": "react-native-flipper", "npm": { - "downloads": 270708, - "weekDownloads": 52893, + "downloads": 262715, + "weekDownloads": 54651, "size": 120282, "latestRelease": "0.273.0", "latestReleaseDate": "2024-11-21T15:15:45.801Z" @@ -55210,7 +55282,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.573, "topicSearchString": "react-native flipper" }, { @@ -55267,8 +55339,8 @@ }, "npmPkg": "react-native-testfairy", "npm": { - "downloads": 7789, - "weekDownloads": 1845, + "downloads": 7541, + "weekDownloads": 1834, "size": 41009591, "latestRelease": "2.65.0", "latestReleaseDate": "2025-02-27T15:30:30.523Z" @@ -55278,7 +55350,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.201, + "popularity": 0.207, "topicSearchString": "react-component testfairy react-native ios android" }, { @@ -55345,7 +55417,7 @@ "npmPkg": "react-native-gallery-toolkit", "npm": { "downloads": 35, - "weekDownloads": 6, + "weekDownloads": 7, "size": 422110, "latestRelease": "1.0.0-alpha.1.2", "latestReleaseDate": "2020-10-27T18:15:14.587Z" @@ -55356,7 +55428,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, + "popularity": -1.325, "topicSearchString": "gallery android ios react-native reanimated reanimated2 imageviewer react animations pinch-to-zoom" }, { @@ -55384,7 +55456,7 @@ "forks": 255, "issues": 13, "subscribers": 14, - "stars": 2740, + "stars": 2741, "dependencies": 10 }, "name": "react-native-rename", @@ -55416,8 +55488,8 @@ }, "npmPkg": "react-native-rename", "npm": { - "downloads": 28675, - "weekDownloads": 5495, + "downloads": 28197, + "weekDownloads": 5750, "size": 624119, "latestRelease": "3.2.17", "latestReleaseDate": "2025-07-08T15:56:50.615Z" @@ -55428,7 +55500,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.173, "topicSearchString": "react-native ios android rename renamer react space cli" }, { @@ -55495,8 +55567,8 @@ }, "npmPkg": "react-native-pkce-challenge", "npm": { - "downloads": 30206, - "weekDownloads": 7586, + "downloads": 28962, + "weekDownloads": 7587, "size": 83089, "latestRelease": "6.2.0", "latestReleaseDate": "2025-09-01T12:58:21.409Z" @@ -55505,7 +55577,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.213, + "popularity": 0.223, "topicSearchString": "react-native web macos pkce oauth2 jsi c++ react reactjs windows expo" }, { @@ -55561,8 +55633,8 @@ "configPlugin": false }, "npm": { - "downloads": 471, - "weekDownloads": 120, + "downloads": 485, + "weekDownloads": 121, "size": 49173, "latestRelease": "4.1.7", "latestReleaseDate": "2025-10-07T21:42:55.757Z" @@ -55572,7 +55644,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.532, + "popularity": -0.538, "topicSearchString": "react-native scripts utils development utilities cli development-tools" }, { @@ -55633,8 +55705,8 @@ }, "npmPkg": "react-native-color-picker-ios", "npm": { - "downloads": 378, - "weekDownloads": 65, + "downloads": 366, + "weekDownloads": 80, "size": 32413, "latestRelease": "0.1.3", "latestReleaseDate": "2024-04-17T12:28:22.027Z" @@ -55643,7 +55715,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": -0.564, "topicSearchString": "react-native ios android hacktoberfest color-picker typescript" }, { @@ -55698,8 +55770,8 @@ "unmaintained": true, "npmPkg": "react-native-in-app-utils", "npm": { - "downloads": 6918, - "weekDownloads": 1118, + "downloads": 6681, + "weekDownloads": 1101, "size": 37607, "latestRelease": "6.1.0", "latestReleaseDate": "2020-09-23T15:39:00.493Z" @@ -55712,7 +55784,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.613, + "popularity": -0.61, "topicSearchString": "react react-native react-component ios in-app payments purchases" }, { @@ -55770,8 +55842,8 @@ }, "npmPkg": "react-native-external-display", "npm": { - "downloads": 7329, - "weekDownloads": 1783, + "downloads": 6687, + "weekDownloads": 1286, "size": 90278, "latestRelease": "0.6.6", "latestReleaseDate": "2024-09-01T01:23:50.013Z" @@ -55782,7 +55854,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.207, + "popularity": 0.164, "topicSearchString": "react-native external-display uiscene native-module native-ui-component ios android" }, { @@ -55847,8 +55919,8 @@ }, "npmPkg": "react-native-carplay", "npm": { - "downloads": 3635, - "weekDownloads": 534, + "downloads": 3449, + "weekDownloads": 553, "size": 4079938, "latestRelease": "2.4.1-beta.0", "latestReleaseDate": "2024-06-12T10:22:08.199Z" @@ -55859,7 +55931,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.125, + "popularity": 0.136, "topicSearchString": "react native carplay navigation car auto" }, { @@ -55929,8 +56001,8 @@ "unmaintained": true, "npmPkg": "react-native-toast-notifications", "npm": { - "downloads": 129033, - "weekDownloads": 24723, + "downloads": 125346, + "weekDownloads": 25530, "size": 153307, "latestRelease": "3.4.0", "latestReleaseDate": "2023-08-23T14:59:59.550Z" @@ -55941,7 +56013,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.577, "topicSearchString": "component react-component react-native ios android windows toast animated animation message typescript swipe web" }, { @@ -56002,8 +56074,8 @@ "unmaintained": true, "npmPkg": "react-native-use-styles", "npm": { - "downloads": 81, - "weekDownloads": 3, + "downloads": 80, + "weekDownloads": 1, "size": 49111, "latestRelease": "1.3.7", "latestReleaseDate": "2020-12-22T14:49:36.307Z" @@ -56013,7 +56085,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.468, + "popularity": -1.489, "topicSearchString": "react react-native styles namespace hooks classes css usestyles" }, { @@ -56039,7 +56111,7 @@ "forks": 811, "issues": 171, "subscribers": 78, - "stars": 10457, + "stars": 10458, "dependencies": 28 }, "name": "react-native-debugger", @@ -56069,8 +56141,8 @@ "unmaintained": true, "npmPkg": "react-native-debugger", "npm": { - "downloads": 4542, - "weekDownloads": 993, + "downloads": 4264, + "weekDownloads": 949, "size": 21018, "latestRelease": "1.1.0", "latestReleaseDate": "2018-05-20T16:21:04.077Z" @@ -56084,7 +56156,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.564, + "popularity": -0.561, "topicSearchString": "react-native debugger react-devtools redux-devtools-extension electron" }, { @@ -56145,8 +56217,8 @@ }, "npmPkg": "react-native-spotify-remote", "npm": { - "downloads": 1075, - "weekDownloads": 201, + "downloads": 1055, + "weekDownloads": 178, "size": 17045075, "latestRelease": "0.3.10", "latestReleaseDate": "2021-07-15T14:04:06.538Z" @@ -56157,7 +56229,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.144, "topicSearchString": "react-native spotify music audio remote mobile player objective-c cocoapods xcode typescript android ios" }, { @@ -56212,8 +56284,8 @@ "unmaintained": true, "npmPkg": "redux-persist", "npm": { - "downloads": 5484734, - "weekDownloads": 1066626, + "downloads": 5330366, + "weekDownloads": 1101361, "size": 417857, "latestRelease": "6.0.0", "latestReleaseDate": "2019-09-02T00:39:26.341Z" @@ -56227,7 +56299,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, + "popularity": -0.574, "topicSearchString": "persistor storage redux redux-middleware" }, { @@ -56293,8 +56365,8 @@ }, "npmPkg": "react-native-ios-modal", "npm": { - "downloads": 5224, - "weekDownloads": 818, + "downloads": 5069, + "weekDownloads": 837, "size": 286736, "latestRelease": "0.1.8", "latestReleaseDate": "2020-10-21T03:05:04.853Z" @@ -56304,7 +56376,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.133, + "popularity": 0.14, "topicSearchString": "react-native ios android modal ios-swift native-module native-ui-component component" }, { @@ -56331,10 +56403,10 @@ "updatedAt": "2024-10-09T14:22:39Z", "createdAt": "2020-05-07T20:06:41Z", "pushedAt": "2024-10-09T14:22:39Z", - "forks": 82, + "forks": 83, "issues": 2, "subscribers": 13, - "stars": 2147, + "stars": 2148, "dependencies": 4 }, "name": "dripsy", @@ -56361,8 +56433,8 @@ }, "npmPkg": "dripsy", "npm": { - "downloads": 20463, - "weekDownloads": 3989, + "downloads": 19825, + "weekDownloads": 4081, "size": 322952, "latestRelease": "4.3.8", "latestReleaseDate": "2024-10-22T21:22:00.278Z" @@ -56374,7 +56446,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.175, "topicSearchString": "react-native ios android" }, { @@ -56438,7 +56510,7 @@ "unmaintained": true, "npmPkg": "react-native-sdkx", "npm": { - "downloads": 38, + "downloads": 39, "weekDownloads": 0, "size": 3870738, "latestRelease": "0.1.8", @@ -56505,7 +56577,7 @@ "unmaintained": true, "npmPkg": "typed-async-storage", "npm": { - "downloads": 405, + "downloads": 401, "weekDownloads": 184, "size": 32243, "latestRelease": "3.1.2", @@ -56516,7 +56588,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.363, + "popularity": -1.359, "topicSearchString": "react react-native asyncstorage storage asyncstorage-wrapper proptype-validators" }, { @@ -56526,6 +56598,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/hyochan/react-native-nitro-sound", @@ -56541,9 +56614,9 @@ "createdAt": "2018-04-11T08:37:46Z", "pushedAt": "2025-09-25T11:48:34Z", "forks": 232, - "issues": 145, + "issues": 146, "subscribers": 6, - "stars": 867, + "stars": 868, "dependencies": 1 }, "name": "react-native-nitro-sound", @@ -56581,8 +56654,8 @@ }, "npmPkg": "react-native-nitro-sound", "npm": { - "downloads": 19715, - "weekDownloads": 1685, + "downloads": 20488, + "weekDownloads": 2155, "size": 490020, "latestRelease": "0.2.8", "latestReleaseDate": "2025-09-25T14:47:23.094Z" @@ -56595,7 +56668,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.073, + "popularity": 0.089, "topicSearchString": "react-native ios android audio-player audio-recorder typescript java objective-c swift kotlin turbomodule nitromodule" }, { @@ -56667,8 +56740,8 @@ "unmaintained": true, "npmPkg": "rn-swipeable-panel", "npm": { - "downloads": 2677, - "weekDownloads": 502, + "downloads": 2612, + "weekDownloads": 493, "size": 96633, "latestRelease": "1.2.7", "latestReleaseDate": "2021-12-31T07:00:06.914Z" @@ -56680,7 +56753,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.589, "topicSearchString": "react react-native component mobile ios android swipeable panel swipeable-panel swipe-up swipe-down bottom bottom-panel bottom-up bottom-up-panel bottom-sheet sheet" }, { @@ -56736,8 +56809,8 @@ "unmaintained": true, "npmPkg": "react-native-ionicons", "npm": { - "downloads": 2856, - "weekDownloads": 484, + "downloads": 2830, + "weekDownloads": 500, "size": 141080, "latestRelease": "4.6.5", "latestReleaseDate": "2020-05-27T06:49:03.299Z" @@ -56747,7 +56820,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.6, "topicSearchString": "react-native ionicons ionic icons icon vector-icons component" }, { @@ -56807,8 +56880,8 @@ }, "npmPkg": "react-native-video-processing", "npm": { - "downloads": 5995, - "weekDownloads": 1059, + "downloads": 5935, + "weekDownloads": 1025, "size": 102821217, "latestRelease": "1.7.2", "latestReleaseDate": "2022-09-08T10:38:35.654Z" @@ -56821,7 +56894,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.147, "topicSearchString": "react react-native ios android video processing edit videoedit javascript xcode ios-video-editor android-video-editor" }, { @@ -56886,8 +56959,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 296497, - "weekDownloads": 57118, + "downloads": 288396, + "weekDownloads": 56689, "size": 124048, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-10T00:20:59.390Z" @@ -56897,7 +56970,7 @@ "Popular", "Known" ], - "popularity": 0.164, + "popularity": 0.167, "topicSearchString": "react-native ios android uimenu uiaction hacktoberfest" }, { @@ -56994,8 +57067,8 @@ }, "npmPkg": "react-native-ios-context-menu", "npm": { - "downloads": 161637, - "weekDownloads": 30791, + "downloads": 158494, + "weekDownloads": 31063, "size": 447974, "latestRelease": "3.2.1", "latestReleaseDate": "2025-09-28T15:08:00.238Z" @@ -57005,7 +57078,7 @@ "Known", "Recently updated" ], - "popularity": 0.162, + "popularity": 0.167, "topicSearchString": "react-native ios ios-context-menu reactnativeioscontextmenu component native-ui-component contextmenu" }, { @@ -57063,8 +57136,8 @@ "unmaintained": true, "npmPkg": "sharingan-rn-modal-dropdown", "npm": { - "downloads": 339, - "weekDownloads": 69, + "downloads": 337, + "weekDownloads": 66, "size": 481869, "latestRelease": "1.4.0", "latestReleaseDate": "2021-08-14T17:20:04.641Z" @@ -57074,7 +57147,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.325, + "popularity": -1.333, "topicSearchString": "react-native ios android dropdown material-dropdown group-dropdown" }, { @@ -57128,7 +57201,7 @@ "unmaintained": true, "npmPkg": "react-native-latlon", "npm": { - "downloads": 3, + "downloads": 4, "weekDownloads": 0, "size": 253499, "latestRelease": "0.1.3", @@ -57207,8 +57280,8 @@ }, "npmPkg": "react-native-simple-bottom-sheet", "npm": { - "downloads": 10969, - "weekDownloads": 2474, + "downloads": 10584, + "weekDownloads": 2367, "size": 543504, "latestRelease": "1.0.4", "latestReleaseDate": "2022-09-10T07:56:37.674Z" @@ -57218,7 +57291,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.192, + "popularity": 0.19, "topicSearchString": "react react-native component slider panel bottom-sheet sheet simple slider-panel bottom bottom-slider ios android mobile" }, { @@ -57274,8 +57347,8 @@ "unmaintained": true, "npmPkg": "react-native-widgetkit", "npm": { - "downloads": 17851, - "weekDownloads": 3021, + "downloads": 17325, + "weekDownloads": 3748, "size": 55181, "latestRelease": "1.0.9", "latestReleaseDate": "2020-11-02T17:26:01.081Z" @@ -57285,7 +57358,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.566, "topicSearchString": "react-native ios android widgetkit ios14" }, { @@ -57354,8 +57427,8 @@ }, "npmPkg": "react-native-paper-dates", "npm": { - "downloads": 143116, - "weekDownloads": 28653, + "downloads": 139524, + "weekDownloads": 29499, "size": 990972, "latestRelease": "0.22.50", "latestReleaseDate": "2025-09-05T18:50:25.832Z" @@ -57366,7 +57439,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.18, "topicSearchString": "react-native ios android material web paper material-design datepicker timepicker react picker" }, { @@ -57423,8 +57496,8 @@ }, "npmPkg": "react-native-stylex", "npm": { - "downloads": 952, - "weekDownloads": 150, + "downloads": 931, + "weekDownloads": 137, "size": 34054, "latestRelease": "4.2.1", "latestReleaseDate": "2023-01-07T21:11:32.621Z" @@ -57434,7 +57507,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.616, + "popularity": -0.625, "topicSearchString": "react-native theme style media-queries" }, { @@ -57493,8 +57566,8 @@ "unmaintained": true, "npmPkg": "react-native-fbt", "npm": { - "downloads": 85, - "weekDownloads": 3, + "downloads": 83, + "weekDownloads": 0, "size": 49577, "latestRelease": "0.0.7", "latestReleaseDate": "2021-10-07T23:52:09.831Z" @@ -57506,7 +57579,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.47, + "popularity": -1, "topicSearchString": "react-native android ios fbt" }, { @@ -57569,8 +57642,8 @@ "unmaintained": true, "npmPkg": "react-native-navigation-bar-color", "npm": { - "downloads": 73321, - "weekDownloads": 18017, + "downloads": 71336, + "weekDownloads": 18627, "size": 72034, "latestRelease": "2.0.2", "latestReleaseDate": "2022-12-28T23:06:30.475Z" @@ -57581,7 +57654,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.541, + "popularity": -0.528, "topicSearchString": "react-native component react-component react native navigation-bar navigation-bar-color navigation-theme bottom-bar bottom-bar-color" }, { @@ -57635,8 +57708,8 @@ "unmaintained": true, "npmPkg": "react-native-google-play-install-referrer", "npm": { - "downloads": 58, - "weekDownloads": 17, + "downloads": 55, + "weekDownloads": 16, "size": 1028247, "latestRelease": "1.0.0", "latestReleaseDate": "2020-11-25T14:54:22.750Z" @@ -57646,7 +57719,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.488, + "popularity": -1.483, "topicSearchString": "react-native ios android" }, { @@ -57655,6 +57728,7 @@ "android": true, "expoGo": true, "dev": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/Kudo/react-native-v8", @@ -57700,8 +57774,8 @@ }, "npmPkg": "react-native-v8", "npm": { - "downloads": 21553, - "weekDownloads": 4464, + "downloads": 20945, + "weekDownloads": 4830, "size": 184890, "latestRelease": "2.5.1", "latestReleaseDate": "2024-08-20T18:29:21.956Z" @@ -57713,7 +57787,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.196, "topicSearchString": "react-native android v8" }, { @@ -57770,8 +57844,8 @@ "unmaintained": true, "npmPkg": "react-native-bootstrap-icons", "npm": { - "downloads": 1350, - "weekDownloads": 160, + "downloads": 1369, + "weekDownloads": 170, "size": 1104992, "latestRelease": "1.5.0", "latestReleaseDate": "2021-05-19T23:38:00.768Z" @@ -57781,7 +57855,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.899, + "popularity": -0.894, "topicSearchString": "bootstrap icons react-native" }, { @@ -57852,8 +57926,8 @@ "unmaintained": true, "npmPkg": "react-native-ios-popover", "npm": { - "downloads": 111, - "weekDownloads": 4, + "downloads": 113, + "weekDownloads": 5, "size": 178102, "latestRelease": "3.0.0", "latestReleaseDate": "2022-10-29T16:06:47.151Z" @@ -57863,7 +57937,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.469, + "popularity": -1.462, "topicSearchString": "react-native ios uipopover popover popover-view component native-component" }, { @@ -57925,8 +57999,8 @@ "unmaintained": true, "npmPkg": "react-native-background-upload", "npm": { - "downloads": 16617, - "weekDownloads": 4253, + "downloads": 14865, + "weekDownloads": 3022, "size": 689594, "latestRelease": "6.6.0", "latestReleaseDate": "2022-10-07T16:23:47.912Z" @@ -57939,7 +58013,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.532, + "popularity": -0.577, "topicSearchString": "nsurlsession uploadservice background upload react-native react android ios file-upload hacktoberfest" }, { @@ -58000,8 +58074,8 @@ "unmaintained": true, "npmPkg": "react-native-tor", "npm": { - "downloads": 2634, - "weekDownloads": 594, + "downloads": 2434, + "weekDownloads": 485, "size": 118987805, "latestRelease": "0.1.8", "latestReleaseDate": "2022-02-09T21:17:40.504Z" @@ -58011,7 +58085,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.558, + "popularity": -0.58, "topicSearchString": "react-native tor socks5 streams proxy vpn privacy ios android" }, { @@ -58072,8 +58146,8 @@ "unmaintained": true, "npmPkg": "react-native-magnus", "npm": { - "downloads": 3057, - "weekDownloads": 481, + "downloads": 2999, + "weekDownloads": 538, "size": 1698217, "latestRelease": "1.0.63", "latestReleaseDate": "2022-09-22T11:53:39.251Z" @@ -58085,7 +58159,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.616, + "popularity": -0.597, "topicSearchString": "react-native ios android design-system react typescript ui-components" }, { @@ -58140,8 +58214,8 @@ }, "unmaintained": true, "npm": { - "downloads": 79357, - "weekDownloads": 19436, + "downloads": 73777, + "weekDownloads": 16531, "size": 174596, "latestRelease": "0.10.3", "latestReleaseDate": "2023-05-17T09:37:10.470Z" @@ -58152,7 +58226,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.542, + "popularity": -0.56, "topicSearchString": "react-native ios android flatlist wrapper scrollview" }, { @@ -58212,8 +58286,8 @@ }, "npmPkg": "react-native-file-access", "npm": { - "downloads": 76935, - "weekDownloads": 14694, + "downloads": 75561, + "weekDownloads": 15872, "size": 201749, "latestRelease": "3.2.0", "latestReleaseDate": "2025-08-22T20:02:49.167Z" @@ -58223,7 +58297,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.179, "topicSearchString": "react-native ios android macos download file filesystem fs" }, { @@ -58281,8 +58355,8 @@ "unmaintained": true, "npmPkg": "react-native-print", "npm": { - "downloads": 58809, - "weekDownloads": 11998, + "downloads": 57154, + "weekDownloads": 12677, "size": 145699, "latestRelease": "0.11.0", "latestReleaseDate": "2023-01-22T06:11:15.154Z" @@ -58293,7 +58367,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.577, + "popularity": -0.561, "topicSearchString": "react-native print ndef react native" }, { @@ -58321,9 +58395,9 @@ "createdAt": "2019-03-05T23:47:10Z", "pushedAt": "2025-10-10T23:03:54Z", "forks": 2279, - "issues": 89, - "subscribers": 178, - "stars": 44018, + "issues": 90, + "subscribers": 179, + "stars": 44023, "dependencies": 0 }, "name": "react-hook-form", @@ -58360,8 +58434,8 @@ }, "npmPkg": "react-hook-form", "npm": { - "downloads": 60291579, - "weekDownloads": 12328497, + "downloads": 57974397, + "weekDownloads": 12404367, "size": 1180785, "latestRelease": "7.65.0", "latestReleaseDate": "2025-10-10T22:43:28.298Z" @@ -58375,7 +58449,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.182, "topicSearchString": "react hooks form forms form-validation validation typescript react-hooks react-native form-builder dx ux reactjs" }, { @@ -58440,8 +58514,8 @@ "unmaintained": true, "npmPkg": "react-native-navigation-drawer-extension", "npm": { - "downloads": 3045, - "weekDownloads": 570, + "downloads": 3006, + "weekDownloads": 575, "size": 52119, "latestRelease": "4.3.1", "latestReleaseDate": "2022-11-02T13:19:33.526Z" @@ -58452,7 +58526,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.587, "topicSearchString": "wix navigation react-native drawer side-menu ios android native typescript" }, { @@ -58512,8 +58586,8 @@ }, "npmPkg": "reanimated-collapsible-helpers", "npm": { - "downloads": 423, - "weekDownloads": 88, + "downloads": 400, + "weekDownloads": 77, "size": 29012, "latestRelease": "2.0.1", "latestReleaseDate": "2025-06-12T13:27:55.938Z" @@ -58522,7 +58596,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.572, + "popularity": -0.586, "topicSearchString": "react-native ios android animation collapsible reanimated" }, { @@ -58583,8 +58657,8 @@ }, "npmPkg": "react-native-error-boundary", "npm": { - "downloads": 226627, - "weekDownloads": 41420, + "downloads": 221622, + "weekDownloads": 42528, "size": 25584, "latestRelease": "3.0.0", "latestReleaseDate": "2025-10-08T19:19:21.868Z" @@ -58595,7 +58669,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.163, "topicSearchString": "react-native error error-boundary error-handler componentdidcatch" }, { @@ -58654,8 +58728,8 @@ }, "npmPkg": "osmicsx", "npm": { - "downloads": 576, - "weekDownloads": 4, + "downloads": 583, + "weekDownloads": 6, "size": 141348, "latestRelease": "1.1.3", "latestReleaseDate": "2023-04-11T08:49:00.707Z" @@ -58666,7 +58740,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.744, + "popularity": -0.741, "topicSearchString": "style react-native framework javascript utility frontend hacktoberfest" }, { @@ -58726,7 +58800,7 @@ "unmaintained": true, "npm": { "downloads": 87, - "weekDownloads": 9, + "weekDownloads": 8, "size": 2942358, "latestRelease": "1.3.1", "latestReleaseDate": "2021-07-30T04:39:30.190Z" @@ -58736,7 +58810,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.41, + "popularity": -1.42, "topicSearchString": "cli react react-native boilerplate generator hacktoberfest" }, { @@ -58796,8 +58870,8 @@ "configPlugin": false }, "npm": { - "downloads": 263, - "weekDownloads": 70, + "downloads": 260, + "weekDownloads": 56, "size": 466829, "latestRelease": "3.0.1", "latestReleaseDate": "2022-04-28T20:46:35.823Z" @@ -58807,7 +58881,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.52, + "popularity": -1.566, "topicSearchString": "react-native adobe adobe-experience-platform media ios android adobe-analytics" }, { @@ -58877,8 +58951,8 @@ }, "npmPkg": "react-native-payments", "npm": { - "downloads": 11172, - "weekDownloads": 2474, + "downloads": 10897, + "weekDownloads": 2501, "size": 170548, "latestRelease": "0.8.4", "latestReleaseDate": "2021-05-25T11:04:19.845Z" @@ -58891,7 +58965,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.188, + "popularity": 0.195, "topicSearchString": "react react-native apple-pay stripe braintree payments payment-request sca strong-customer-authentication 2-factor 2fa android ios payment-intents cross-platform" }, { @@ -58916,7 +58990,7 @@ "forks": 22, "issues": 1, "subscribers": 4, - "stars": 123, + "stars": 122, "dependencies": 0 }, "name": "@kilohealth/rn-fitness-tracker", @@ -58957,8 +59031,8 @@ "configPlugin": false }, "npm": { - "downloads": 2211, - "weekDownloads": 126, + "downloads": 2296, + "weekDownloads": 125, "size": 160150, "latestRelease": "3.1.0", "latestReleaseDate": "2023-02-24T08:29:55.896Z" @@ -58968,7 +59042,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.048, + "popularity": 0.046, "topicSearchString": "react-native health-kit google-fit fitness step track tracker health android ios healthkit apple-health fit googlefit fitnessapi steps activity body" }, { @@ -59035,8 +59109,8 @@ }, "npmPkg": "react-native-signature-canvas", "npm": { - "downloads": 320703, - "weekDownloads": 66126, + "downloads": 312852, + "weekDownloads": 66953, "size": 102612, "latestRelease": "5.0.1", "latestReleaseDate": "2025-06-28T05:36:03.351Z" @@ -59048,7 +59122,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.182, "topicSearchString": "react-native react-component ios android signature signature-pad canvas expo typescript drawing webview performance error-handling undo-redo svg-export" }, { @@ -59104,8 +59178,8 @@ }, "npmPkg": "react-native-default-preference", "npm": { - "downloads": 285831, - "weekDownloads": 66886, + "downloads": 273763, + "weekDownloads": 64875, "size": 89097, "latestRelease": "1.4.4", "latestReleaseDate": "2022-04-07T14:14:17.310Z" @@ -59116,7 +59190,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.199, + "popularity": 0.201, "topicSearchString": "react-native nsuserdefaults user-defaults sharedpreferences shared-preferences ios android userdefaults" }, { @@ -59194,8 +59268,8 @@ "configPlugin": false }, "npm": { - "downloads": 4740, - "weekDownloads": 403, + "downloads": 4827, + "weekDownloads": 555, "size": 59070549, "latestRelease": "6.0.20", "latestReleaseDate": "2024-12-11T05:47:49.886Z" @@ -59206,7 +59280,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.072, + "popularity": 0.098, "topicSearchString": "2d 3d android babylon babylon.js babylonjs canvas dogz emoji font gcanvas glsl gpu ios multiple-touches native offscreen-canvas particles-bg pixel-animation-editor pixel-art-animation-editor pixel-art-editor pixel-gif-editor pixel-editor pixi proton react-native shader opengl webgl zdog" }, { @@ -59267,8 +59341,8 @@ "configPlugin": false }, "npm": { - "downloads": 33946, - "weekDownloads": 3186, + "downloads": 34341, + "weekDownloads": 3562, "size": 2139134, "latestRelease": "0.0.80", "latestReleaseDate": "2025-06-18T23:23:09.319Z" @@ -59278,7 +59352,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.08, + "popularity": 0.088, "topicSearchString": "react-native windows xaml winui uwp fluent fluent-ui windows" }, { @@ -59341,7 +59415,7 @@ "npmPkg": "react-native-blob-courier", "npm": { "downloads": 733, - "weekDownloads": 9, + "weekDownloads": 17, "size": 468860, "latestRelease": "5.0.2", "latestReleaseDate": "2024-04-12T11:57:20.726Z" @@ -59351,7 +59425,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.74, + "popularity": -0.73, "topicSearchString": "react-native ios android blob transfer files download upload courier upload-blobs" }, { @@ -59418,8 +59492,8 @@ "unmaintained": true, "npmPkg": "react-native-pinchable", "npm": { - "downloads": 6705, - "weekDownloads": 1167, + "downloads": 6633, + "weekDownloads": 1174, "size": 30979, "latestRelease": "0.2.1", "latestReleaseDate": "2021-02-14T17:39:23.795Z" @@ -59430,7 +59504,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": -0.599, "topicSearchString": "react-native react-component component react mobile ios ui gesture zoom pinch image pinch-to-zoom" }, { @@ -59490,8 +59564,8 @@ }, "npmPkg": "react-native-performance", "npm": { - "downloads": 697791, - "weekDownloads": 148539, + "downloads": 674628, + "weekDownloads": 150761, "size": 208008, "latestRelease": "5.1.4", "latestReleaseDate": "2025-06-15T22:34:24.712Z" @@ -59502,7 +59576,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.181, + "popularity": 0.19, "topicSearchString": "react-native performance perf benchmark" }, { @@ -59560,8 +59634,8 @@ "unmaintained": true, "npmPkg": "react-native-bidirectional-infinite-scroll", "npm": { - "downloads": 10203, - "weekDownloads": 2145, + "downloads": 9699, + "weekDownloads": 2053, "size": 63160, "latestRelease": "0.3.3", "latestReleaseDate": "2021-04-04T11:51:40.530Z" @@ -59572,7 +59646,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.571, + "popularity": -0.57, "topicSearchString": "react-native ios android infinite-scroll flatlist" }, { @@ -59596,13 +59670,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-15T14:01:18Z", + "updatedAt": "2025-10-20T12:43:43Z", "createdAt": "2021-02-24T07:33:00Z", - "pushedAt": "2025-10-15T14:01:18Z", + "pushedAt": "2025-10-20T12:43:43Z", "forks": 305, - "issues": 19, + "issues": 18, "subscribers": 32, - "stars": 7641, + "stars": 7649, "dependencies": 0 }, "name": "react-native-mmkv", @@ -59630,11 +59704,11 @@ }, "npmPkg": "react-native-mmkv", "npm": { - "downloads": 2039568, - "weekDownloads": 414472, - "size": 804546, - "latestRelease": "3.3.3", - "latestReleaseDate": "2025-09-18T14:54:37.543Z" + "downloads": 1973517, + "weekDownloads": 421079, + "size": 146595, + "latestRelease": "4.0.0", + "latestReleaseDate": "2025-10-20T12:43:35.712Z" }, "score": 97, "matchingScoreModifiers": [ @@ -59644,7 +59718,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.181, "topicSearchString": "react-native nitro" }, { @@ -59662,6 +59736,7 @@ "fireos": true, "newArchitecture": true, "newArchitectureNote": "Currently supported through the compatibility layer for legacy view components.", + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/mrousavy/react-native-vision-camera", @@ -59677,9 +59752,9 @@ "createdAt": "2021-02-19T14:59:44Z", "pushedAt": "2025-09-22T09:56:59Z", "forks": 1233, - "issues": 240, + "issues": 241, "subscribers": 57, - "stars": 8902, + "stars": 8907, "dependencies": 0 }, "name": "react-native-vision-camera", @@ -59727,8 +59802,8 @@ "configPlugin": true }, "npm": { - "downloads": 1257304, - "weekDownloads": 262183, + "downloads": 1219660, + "weekDownloads": 269512, "size": 1157619, "latestRelease": "4.7.2", "latestReleaseDate": "2025-09-02T20:41:12.748Z" @@ -59742,7 +59817,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.188, "topicSearchString": "react native camera react-native camera vision javascript typescript android ios library instagram snapchat ai scanner qrcode barcode qr-code jsi worklet module frame processing realtime" }, { @@ -59803,8 +59878,8 @@ }, "npmPkg": "react-native-controlled-mentions", "npm": { - "downloads": 75573, - "weekDownloads": 14861, + "downloads": 72877, + "weekDownloads": 15000, "size": 83452, "latestRelease": "3.1.0", "latestReleaseDate": "2025-06-02T12:07:17.708Z" @@ -59814,7 +59889,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.175, "topicSearchString": "react react-native mentions text text-input textinput" }, { @@ -59878,8 +59953,8 @@ }, "npmPkg": "react-native-tcp-socket", "npm": { - "downloads": 251166, - "weekDownloads": 19833, + "downloads": 249309, + "weekDownloads": 21736, "size": 233583, "latestRelease": "6.3.0", "latestReleaseDate": "2025-04-23T21:48:01.365Z" @@ -59889,7 +59964,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.067, + "popularity": 0.074, "topicSearchString": "react-native ios android tcp-socket tls ssl tcp-server tcp-client tcp library net network" }, { @@ -59954,8 +60029,8 @@ }, "npmPkg": "react-native-text-ticker", "npm": { - "downloads": 44053, - "weekDownloads": 8806, + "downloads": 42422, + "weekDownloads": 9182, "size": 19552, "latestRelease": "1.15.0", "latestReleaseDate": "2025-08-10T17:12:43.746Z" @@ -59965,7 +60040,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.184, "topicSearchString": "react-native marquee android ios text scroller ticker scrolling scroll" }, { @@ -60114,8 +60189,8 @@ }, "npmPkg": "react-native-simple-biometrics", "npm": { - "downloads": 5217, - "weekDownloads": 1083, + "downloads": 5048, + "weekDownloads": 1131, "size": 41628, "latestRelease": "2.0.0", "latestReleaseDate": "2025-08-25T15:46:01.318Z" @@ -60125,7 +60200,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.191, "topicSearchString": "react-native ios android biometrics fingerprint authentication faceid" }, { @@ -60188,8 +60263,8 @@ "unmaintained": true, "npmPkg": "react-native-animated-linear-gradient", "npm": { - "downloads": 1858, - "weekDownloads": 405, + "downloads": 1797, + "weekDownloads": 392, "size": 7567808, "latestRelease": "1.3.0", "latestReleaseDate": "2022-02-28T03:31:31.593Z" @@ -60200,7 +60275,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.565, + "popularity": -0.564, "topicSearchString": "react-native linear-gradient react background-animation ios android component animation" }, { @@ -60263,8 +60338,8 @@ "unmaintained": true, "npmPkg": "react-native-hold-menu", "npm": { - "downloads": 809, - "weekDownloads": 90, + "downloads": 800, + "weekDownloads": 96, "size": 329219, "latestRelease": "0.1.6", "latestReleaseDate": "2023-04-06T20:02:35.552Z" @@ -60276,7 +60351,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.405, + "popularity": -1.398, "topicSearchString": "react-native ios android hold-menu context-menu hold-to-open reanimated menu" }, { @@ -60336,8 +60411,8 @@ "unmaintained": true, "npmPkg": "consistencss", "npm": { - "downloads": 1396, - "weekDownloads": 229, + "downloads": 1351, + "weekDownloads": 199, "size": 137773, "latestRelease": "1.7.0", "latestReleaseDate": "2021-05-01T16:53:20.900Z" @@ -60347,7 +60422,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.61, + "popularity": -0.624, "topicSearchString": "react-native atomic-css css styles typescript" }, { @@ -60411,8 +60486,8 @@ }, "unmaintained": true, "npm": { - "downloads": 679, - "weekDownloads": 172, + "downloads": 681, + "weekDownloads": 169, "size": 70499, "latestRelease": "1.2.1", "latestReleaseDate": "2023-08-26T22:20:57.793Z" @@ -60422,7 +60497,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.284, + "popularity": -1.289, "topicSearchString": "react native datepicker date picker expo select react-native" }, { @@ -60490,8 +60565,8 @@ }, "npmPkg": "react-native-awesome-gallery", "npm": { - "downloads": 128644, - "weekDownloads": 25602, + "downloads": 124283, + "weekDownloads": 25803, "size": 271501, "latestRelease": "0.4.3", "latestReleaseDate": "2024-09-28T11:54:49.390Z" @@ -60502,7 +60577,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.176, "topicSearchString": "react-native ios android reanimated2 image-viewer pinch-to-zoom react image-gallery lightbox expo" }, { @@ -60545,8 +60620,8 @@ "unmaintained": true, "npmPkg": "react-native-head-tab-view", "npm": { - "downloads": 5013, - "weekDownloads": 1239, + "downloads": 4822, + "weekDownloads": 1225, "size": 78240, "latestRelease": "4.0.0-rc.13", "latestReleaseDate": "2021-07-18T16:58:42.353Z" @@ -60558,7 +60633,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.54, + "popularity": -0.534, "topicSearchString": "" }, { @@ -60617,8 +60692,8 @@ }, "npmPkg": "react-native-background-actions", "npm": { - "downloads": 42679, - "weekDownloads": 7975, + "downloads": 41678, + "weekDownloads": 8286, "size": 63191, "latestRelease": "4.0.1", "latestReleaseDate": "2024-07-09T09:44:41.067Z" @@ -60629,7 +60704,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.169, "topicSearchString": "react-native background service task android ios library background-task" }, { @@ -60697,8 +60772,8 @@ }, "npmPkg": "react-native-image-modal", "npm": { - "downloads": 16031, - "weekDownloads": 2591, + "downloads": 15647, + "weekDownloads": 2706, "size": 151369, "latestRelease": "3.0.13", "latestReleaseDate": "2024-11-23T13:02:03.185Z" @@ -60709,7 +60784,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.137, + "popularity": 0.147, "topicSearchString": "react-native react-component component react ios android ui image-box image gallery image-modal" }, { @@ -60767,7 +60842,7 @@ }, "unmaintained": true, "npm": { - "downloads": 3, + "downloads": 196, "weekDownloads": 0, "size": 27477, "latestRelease": "0.2.4", @@ -60840,8 +60915,8 @@ "unmaintained": true, "npmPkg": "react-native-customized-image-picker", "npm": { - "downloads": 1533, - "weekDownloads": 224, + "downloads": 1532, + "weekDownloads": 240, "size": 1082592, "latestRelease": "1.3.4", "latestReleaseDate": "2022-03-12T04:08:12.296Z" @@ -60852,7 +60927,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.626, + "popularity": -0.617, "topicSearchString": "react native react-native image picker crop cropping multiple camera" }, { @@ -60913,8 +60988,8 @@ "unmaintained": true, "npmPkg": "react-native-accessibility-engine", "npm": { - "downloads": 38783, - "weekDownloads": 7687, + "downloads": 38303, + "weekDownloads": 7934, "size": 477893, "latestRelease": "3.2.0", "latestReleaseDate": "2022-11-15T20:26:24.025Z" @@ -60925,7 +61000,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, + "popularity": -0.574, "topicSearchString": "react-native jest testing testing-library a11y accessibility ios android" }, { @@ -60933,6 +61008,7 @@ "android": true, "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/thebergamo/react-native-fbsdk-next", @@ -60947,10 +61023,10 @@ "updatedAt": "2025-01-26T12:09:44Z", "createdAt": "2021-03-09T14:38:42Z", "pushedAt": "2025-01-26T12:09:44Z", - "forks": 162, - "issues": 5, + "forks": 163, + "issues": 6, "subscribers": 13, - "stars": 757, + "stars": 758, "dependencies": 0 }, "name": "react-native-fbsdk-next", @@ -60982,8 +61058,8 @@ }, "npmPkg": "react-native-fbsdk-next", "npm": { - "downloads": 491524, - "weekDownloads": 98747, + "downloads": 468068, + "weekDownloads": 97022, "size": 657791, "latestRelease": "13.4.1", "latestReleaseDate": "2025-01-26T12:09:54.511Z" @@ -60995,7 +61071,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.176, "topicSearchString": "react react-native react-component ios android facebook core" }, { @@ -61042,8 +61118,8 @@ }, "npmPkg": "expo-next-react-navigation", "npm": { - "downloads": 6298, - "weekDownloads": 979, + "downloads": 6046, + "weekDownloads": 950, "size": 41337, "latestRelease": "2.0.2", "latestReleaseDate": "2021-09-25T19:43:55.198Z" @@ -61054,7 +61130,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.132, + "popularity": 0.134, "topicSearchString": "" }, { @@ -61112,8 +61188,8 @@ "unmaintained": true, "npmPkg": "react-native-search-box", "npm": { - "downloads": 1204, - "weekDownloads": 221, + "downloads": 1163, + "weekDownloads": 241, "size": 26465, "latestRelease": "0.0.20", "latestReleaseDate": "2020-10-03T16:06:36.368Z" @@ -61124,7 +61200,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.573, "topicSearchString": "react-native ios android anhtuank7c ctlabvn" }, { @@ -61187,8 +61263,8 @@ }, "unmaintained": true, "npm": { - "downloads": 2636, - "weekDownloads": 510, + "downloads": 2580, + "weekDownloads": 534, "size": 44118, "latestRelease": "0.4.0", "latestReleaseDate": "2022-10-28T08:59:14.432Z" @@ -61198,7 +61274,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, + "popularity": -0.574, "topicSearchString": "react-native react mobile ios android ui dark-mode accessibility css web klarna-featured" }, { @@ -61257,8 +61333,8 @@ "unmaintained": true, "npmPkg": "react-native-web-swiper", "npm": { - "downloads": 45788, - "weekDownloads": 7539, + "downloads": 44621, + "weekDownloads": 7855, "size": 53727, "latestRelease": "2.2.4", "latestReleaseDate": "2022-10-02T12:54:46.383Z" @@ -61269,7 +61345,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.61, + "popularity": -0.6, "topicSearchString": "react-native web swipe swiper slider" }, { @@ -61335,8 +61411,8 @@ "unmaintained": true, "npmPkg": "react-native-popable", "npm": { - "downloads": 17073, - "weekDownloads": 3276, + "downloads": 16477, + "weekDownloads": 3430, "size": 149855, "latestRelease": "0.4.3", "latestReleaseDate": "2021-08-27T15:50:40.651Z" @@ -61347,7 +61423,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.573, "topicSearchString": "react-native ios android web popover tooltip alert expo" }, { @@ -61406,8 +61482,8 @@ "unmaintained": true, "npmPkg": "react-native-input-outline", "npm": { - "downloads": 1087, - "weekDownloads": 151, + "downloads": 1082, + "weekDownloads": 160, "size": 170311, "latestRelease": "1.5.2", "latestReleaseDate": "2021-09-06T18:51:27.488Z" @@ -61417,7 +61493,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.632, + "popularity": -0.624, "topicSearchString": "react-native ios android" }, { @@ -61475,8 +61551,8 @@ "unmaintained": true, "npmPkg": "react-native-scalable-image", "npm": { - "downloads": 55145, - "weekDownloads": 8730, + "downloads": 53354, + "weekDownloads": 10401, "size": 8370, "latestRelease": "1.1.0", "latestReleaseDate": "2021-02-12T23:12:01.997Z" @@ -61487,7 +61563,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.615, + "popularity": -0.584, "topicSearchString": "react-native image component scalable aspect-ratio scales-width scales-height responsive reactjs" }, { @@ -61543,8 +61619,8 @@ }, "unmaintained": true, "npm": { - "downloads": 262, - "weekDownloads": 3, + "downloads": 287, + "weekDownloads": 4, "size": 1614808, "latestRelease": "1.1.0", "latestReleaseDate": "2021-07-21T22:10:56.632Z" @@ -61555,7 +61631,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.49, + "popularity": -1.488, "topicSearchString": "react-native mapbox navigation mapbox-navigation" }, { @@ -61582,10 +61658,10 @@ "updatedAt": "2025-10-01T11:57:23Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T11:57:23Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-screen-capture", @@ -61613,8 +61689,8 @@ }, "npmPkg": "expo-screen-capture", "npm": { - "downloads": 167770, - "weekDownloads": 33629, + "downloads": 163208, + "weekDownloads": 32278, "size": 109411, "latestRelease": "8.0.8", "latestReleaseDate": "2025-09-13T20:52:46.740Z" @@ -61628,7 +61704,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.168, "topicSearchString": "react-native expo expo-screen-capture" }, { @@ -61686,8 +61762,8 @@ }, "unmaintained": true, "npm": { - "downloads": 104, - "weekDownloads": 58, + "downloads": 121, + "weekDownloads": 59, "size": 131213, "latestRelease": "0.5.6", "latestReleaseDate": "2022-09-27T14:43:47.808Z" @@ -61697,7 +61773,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.267, + "popularity": -1.329, "topicSearchString": "react-native ios android stripe stripe-payments stripe-payment" }, { @@ -61750,8 +61826,8 @@ }, "npmPkg": "react-native-aes-gcm-crypto", "npm": { - "downloads": 11156, - "weekDownloads": 1331, + "downloads": 11079, + "weekDownloads": 1817, "size": 69769, "latestRelease": "0.2.2", "latestReleaseDate": "2022-07-20T05:21:17.954Z" @@ -61762,7 +61838,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.101, + "popularity": 0.139, "topicSearchString": "react-native ios android cryptography" }, { @@ -61818,8 +61894,8 @@ "unmaintained": true, "npmPkg": "react-native-sqlite-2", "npm": { - "downloads": 17505, - "weekDownloads": 2299, + "downloads": 17128, + "weekDownloads": 2229, "size": 162192, "latestRelease": "3.6.2", "latestReleaseDate": "2022-11-01T03:49:23.465Z" @@ -61830,7 +61906,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.638, + "popularity": -0.639, "topicSearchString": "react-native ios android pouchdb sqlite sqlite3" }, { @@ -61893,8 +61969,8 @@ }, "unmaintained": true, "npm": { - "downloads": 89, - "weekDownloads": 19, + "downloads": 256, + "weekDownloads": 20, "size": 185208, "latestRelease": "0.9.0", "latestReleaseDate": "2021-12-11T19:16:39.945Z" @@ -61904,7 +61980,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.31, + "popularity": -1.433, "topicSearchString": "breeffy react-native android calendar component reanimated ui" }, { @@ -61964,8 +62040,8 @@ "unmaintained": true, "npmPkg": "react-native-rapi-ui", "npm": { - "downloads": 638, - "weekDownloads": 124, + "downloads": 642, + "weekDownloads": 121, "size": 2525166, "latestRelease": "0.2.1", "latestReleaseDate": "2021-06-06T08:03:28.329Z" @@ -61975,7 +62051,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.335, + "popularity": -1.34, "topicSearchString": "react-native components ui design" }, { @@ -62047,8 +62123,8 @@ "unmaintained": true, "npmPkg": "react-native-location-enabler", "npm": { - "downloads": 2901, - "weekDownloads": 659, + "downloads": 2755, + "weekDownloads": 672, "size": 50350, "latestRelease": "4.1.1", "latestReleaseDate": "2022-04-14T02:12:09.349Z" @@ -62058,7 +62134,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.557, + "popularity": -0.543, "topicSearchString": "react-native android location settings gps wi-fi settings-enabler settingsclient resolution wifi bluetooth ble accuracy android-device" }, { @@ -62089,7 +62165,7 @@ "forks": 150, "issues": 29, "subscribers": 37, - "stars": 4453, + "stars": 4455, "dependencies": 1 }, "name": "moti", @@ -62118,8 +62194,8 @@ }, "npmPkg": "moti", "npm": { - "downloads": 680617, - "weekDownloads": 131874, + "downloads": 662933, + "weekDownloads": 133067, "size": 778634, "latestRelease": "0.30.0", "latestReleaseDate": "2025-01-29T15:16:12.794Z" @@ -62132,7 +62208,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.171, "topicSearchString": "react-native ios android web" }, { @@ -62166,7 +62242,7 @@ "forks": 720, "issues": 45, "subscribers": 316, - "stars": 6952, + "stars": 6955, "dependencies": 16 }, "name": "react-native-ui-lib", @@ -62198,8 +62274,8 @@ }, "npmPkg": "react-native-ui-lib", "npm": { - "downloads": 146625, - "weekDownloads": 18419, + "downloads": 145913, + "weekDownloads": 19765, "size": 2646666, "latestRelease": "7.46.3", "latestReleaseDate": "2025-09-04T12:51:09.210Z" @@ -62212,7 +62288,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.107, + "popularity": 0.115, "topicSearchString": "react-native ui components ios android tools hacktoberfest" }, { @@ -62284,8 +62360,8 @@ }, "unmaintained": true, "npm": { - "downloads": 662, - "weekDownloads": 90, + "downloads": 655, + "weekDownloads": 114, "size": 119256, "latestRelease": "1.2.32", "latestReleaseDate": "2022-09-07T03:12:00.836Z" @@ -62295,7 +62371,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.634, + "popularity": -1.602, "topicSearchString": "re-state restate react-re-state react-native react ios android web context react-context global-state global state react-global-state global-state-for-react expo" }, { @@ -62362,8 +62438,8 @@ "unmaintained": true, "npmPkg": "react-native-see-more-inline", "npm": { - "downloads": 489, - "weekDownloads": 88, + "downloads": 471, + "weekDownloads": 81, "size": 21143, "latestRelease": "1.3.0", "latestReleaseDate": "2020-11-11T19:20:32.689Z" @@ -62374,7 +62450,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.347, + "popularity": -1.353, "topicSearchString": "react-native see-more read-more see-less javascript binary-search read-more-less text inline" }, { @@ -62429,8 +62505,8 @@ }, "npmPkg": "react-native-lifecycle", "npm": { - "downloads": 118, - "weekDownloads": 13, + "downloads": 117, + "weekDownloads": 14, "size": 19152, "latestRelease": "2.1.2", "latestReleaseDate": "2023-10-09T16:56:53.364Z" @@ -62440,7 +62516,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.654, + "popularity": -0.646, "topicSearchString": "react-native hooks lifecycle" }, { @@ -62453,6 +62529,7 @@ "expoGo": true, "windows": true, "fireos": true, + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/react-native-blob-util", "github": { "urls": { "repo": "https://github.com/RonRadtke/react-native-blob-util", @@ -62503,8 +62580,8 @@ }, "npmPkg": "react-native-blob-util", "npm": { - "downloads": 1787182, - "weekDownloads": 344545, + "downloads": 1731941, + "weekDownloads": 352499, "size": 784336, "latestRelease": "0.22.2", "latestReleaseDate": "2025-05-28T21:18:56.200Z" @@ -62516,7 +62593,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.173, "topicSearchString": "react-native fetch blob fs upload file download filestream image-header" }, { @@ -62588,8 +62665,8 @@ }, "npmPkg": "react-native-photo-manipulator", "npm": { - "downloads": 42420, - "weekDownloads": 8756, + "downloads": 41246, + "weekDownloads": 8675, "size": 143562, "latestRelease": "1.9.2", "latestReleaseDate": "2025-01-30T14:18:35.068Z" @@ -62600,7 +62677,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.179, "topicSearchString": "react-native image-editor image-processing image-manipulator photo-editor photo-processing photo-manipulator ios android image-manipulation" }, { @@ -62612,6 +62689,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/xmartlabs/react-native-line", @@ -62664,8 +62742,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 15648, - "weekDownloads": 2078, + "downloads": 15368, + "weekDownloads": 2458, "size": 73216, "latestRelease": "5.4.0", "latestReleaseDate": "2025-09-29T18:29:39.537Z" @@ -62675,7 +62753,7 @@ "Known", "Recently updated" ], - "popularity": 0.113, + "popularity": 0.136, "topicSearchString": "auth line login react react-native social wrapper wrapper-library hybrid-apps ios android" }, { @@ -62739,7 +62817,7 @@ "unmaintained": true, "npmPkg": "react-native-weather-chart", "npm": { - "downloads": 42, + "downloads": 43, "weekDownloads": 4, "size": 476499, "latestRelease": "0.1.3", @@ -62750,7 +62828,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.661, + "popularity": -1.67, "topicSearchString": "react-native react-component component react ui weather chart weather-chart weather-forecast svg" }, { @@ -62806,8 +62884,8 @@ }, "npmPkg": "react-native-compass-heading", "npm": { - "downloads": 9417, - "weekDownloads": 2019, + "downloads": 9174, + "weekDownloads": 2147, "size": 29785, "latestRelease": "2.0.2", "latestReleaseDate": "2025-04-03T02:00:47.736Z" @@ -62818,7 +62896,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.182, + "popularity": 0.199, "topicSearchString": "react-native ios android" }, { @@ -62831,6 +62909,7 @@ "android": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/stripe/stripe-react-native", @@ -62842,9 +62921,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-16T12:52:20Z", + "updatedAt": "2025-10-20T18:12:08Z", "createdAt": "2020-12-16T23:51:01Z", - "pushedAt": "2025-10-16T12:52:20Z", + "pushedAt": "2025-10-20T18:12:08Z", "forks": 297, "issues": 139, "subscribers": 45, @@ -62877,11 +62956,11 @@ "moduleType": "turbo" }, "npm": { - "downloads": 633693, - "weekDownloads": 119305, - "size": 1968380, - "latestRelease": "0.54.1", - "latestReleaseDate": "2025-10-02T16:50:02.280Z" + "downloads": 619862, + "weekDownloads": 125202, + "size": 1953373, + "latestRelease": "0.55.0", + "latestReleaseDate": "2025-10-20T17:56:13.893Z" }, "score": 65, "matchingScoreModifiers": [ @@ -62890,7 +62969,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.16, + "popularity": 0.172, "topicSearchString": "react-native ios android stripe payments" }, { @@ -62951,8 +63030,8 @@ "unmaintained": true, "npmPkg": "react-native-swipe-cards-deck", "npm": { - "downloads": 509, - "weekDownloads": 45, + "downloads": 506, + "weekDownloads": 44, "size": 35615, "latestRelease": "0.3.0", "latestReleaseDate": "2021-06-23T09:54:05.245Z" @@ -62962,7 +63041,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.424, + "popularity": -1.426, "topicSearchString": "react-native tinder cards swipe deck" }, { @@ -63095,8 +63174,8 @@ }, "npmPkg": "react-native-radio-buttons-group", "npm": { - "downloads": 70876, - "weekDownloads": 13025, + "downloads": 68019, + "weekDownloads": 13140, "size": 111234, "latestRelease": "3.1.0", "latestReleaseDate": "2024-03-12T02:00:41.256Z" @@ -63107,7 +63186,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.164, "topicSearchString": "radio-buttons simple-radio-buttons react-native radio-buttons-group radio-group component ios android form radio button" }, { @@ -63180,8 +63259,8 @@ }, "npmPkg": "react-native-floating-label-input", "npm": { - "downloads": 21264, - "weekDownloads": 4319, + "downloads": 20707, + "weekDownloads": 4480, "size": 283978, "latestRelease": "1.4.3", "latestReleaseDate": "2023-11-04T19:29:59.841Z" @@ -63192,7 +63271,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.184, "topicSearchString": "react-native component react mobile ios android input mask floating text-input textinput customizable placeholder floating-label-input floatinglabelinput floatinglabeltextfield floating-label label" }, { @@ -63245,8 +63324,8 @@ "unmaintained": true, "npmPkg": "react-native-safe-modules", "npm": { - "downloads": 219618, - "weekDownloads": 45372, + "downloads": 213302, + "weekDownloads": 47511, "size": 42522, "latestRelease": "1.0.3", "latestReleaseDate": "2021-04-27T11:34:40.955Z" @@ -63256,7 +63335,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.824, + "popularity": -0.811, "topicSearchString": "react-native react native-modules code-push" }, { @@ -63283,10 +63362,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-status-bar", @@ -63314,8 +63393,8 @@ }, "npmPkg": "expo-status-bar", "npm": { - "downloads": 4962145, - "weekDownloads": 954939, + "downloads": 4880613, + "weekDownloads": 965196, "size": 24829, "latestRelease": "3.0.8", "latestReleaseDate": "2025-09-11T20:23:09.748Z" @@ -63328,7 +63407,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.168, "topicSearchString": "react-native expo expo-status-bar" }, { @@ -63395,8 +63474,8 @@ "unmaintained": true, "npmPkg": "react-native-styled-text", "npm": { - "downloads": 13472, - "weekDownloads": 3252, + "downloads": 12919, + "weekDownloads": 3288, "size": 26878, "latestRelease": "2.0.0", "latestReleaseDate": "2021-12-11T12:35:19.340Z" @@ -63406,7 +63485,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.545, + "popularity": -0.534, "topicSearchString": "react-native text style format fonts color mixed html css nested" }, { @@ -63460,8 +63539,8 @@ }, "npmPkg": "react-native-vector-image", "npm": { - "downloads": 5229, - "weekDownloads": 1691, + "downloads": 5025, + "weekDownloads": 1785, "size": 25937913, "latestRelease": "0.5.3", "latestReleaseDate": "2025-10-15T10:46:51.041Z" @@ -63472,7 +63551,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.275, + "popularity": 0.302, "topicSearchString": "react-native image svg vector component vector-drawable" }, { @@ -63529,8 +63608,8 @@ }, "npmPkg": "react-native-auto-height-image", "npm": { - "downloads": 28817, - "weekDownloads": 5401, + "downloads": 28171, + "weekDownloads": 5553, "size": 26364, "latestRelease": "3.2.4", "latestReleaseDate": "2021-02-04T09:41:05.673Z" @@ -63541,7 +63620,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.168, "topicSearchString": "react-native image auto-height react images" }, { @@ -63575,7 +63654,7 @@ "forks": 44, "issues": 28, "subscribers": 2, - "stars": 538, + "stars": 537, "dependencies": 1 }, "name": "react-native-big-list", @@ -63638,8 +63717,8 @@ }, "npmPkg": "react-native-big-list", "npm": { - "downloads": 14048, - "weekDownloads": 2631, + "downloads": 13522, + "weekDownloads": 2608, "size": 378632, "latestRelease": "1.6.4", "latestReleaseDate": "2025-10-08T13:42:54.767Z" @@ -63650,7 +63729,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.164, "topicSearchString": "big-list react react-native javascript ui-lib rn fast-list scroll-list large-list biglist fastlist scrolllist largelist fast scroll large bigdata big massive list performance virtualized-list infinite-scroll listview flatlist-alternative mobile-list ui-library ui component efficient-list memory-optimization recycler-view large-data-set dynamic-list custom-list expo android ios web" }, { @@ -63687,7 +63766,7 @@ "forks": 22, "issues": 8, "subscribers": 4, - "stars": 282, + "stars": 283, "dependencies": 0 }, "name": "react-native-system-navigation-bar", @@ -63749,8 +63828,8 @@ }, "npmPkg": "react-native-system-navigation-bar", "npm": { - "downloads": 49498, - "weekDownloads": 9440, + "downloads": 48129, + "weekDownloads": 9637, "size": 705089, "latestRelease": "2.6.4", "latestReleaseDate": "2024-02-01T18:15:34.541Z" @@ -63761,7 +63840,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.17, "topicSearchString": "react-native system-navigation-bar android navigation navigation-bar bar color bar-color navigation-bar-color hide show lean-back immersive stickyimmersive lowprofile barmode setbarmode light dark light-style dark-style status-bar-mode divider-color navigation-bar-divider-color contrast-enforced navigation-bar-contrast-enforced full-screen setfitssystemwindows fitssystemwindows decorfitssystemwindows setdecorfitssystemwindows navigation-hide navigation-show stiky-immersive light-navigation-bar low-profile navigation-color" }, { @@ -63821,8 +63900,8 @@ }, "npmPkg": "react-native-figma-squircle", "npm": { - "downloads": 8557, - "weekDownloads": 2393, + "downloads": 8519, + "weekDownloads": 2598, "size": 31148, "latestRelease": "0.4.0", "latestReleaseDate": "2025-03-04T08:27:56.500Z" @@ -63833,7 +63912,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.238, + "popularity": 0.259, "topicSearchString": "squircle react react-native figma expo" }, { @@ -63889,7 +63968,7 @@ "unmaintained": true, "npmPkg": "react-native-shader", "npm": { - "downloads": 14, + "downloads": 15, "weekDownloads": 0, "size": 491464, "latestRelease": "0.2.0", @@ -63975,8 +64054,8 @@ }, "npmPkg": "react-native-hole-view", "npm": { - "downloads": 22068, - "weekDownloads": 4363, + "downloads": 21740, + "weekDownloads": 4423, "size": 1581144, "latestRelease": "3.0.1", "latestReleaseDate": "2025-05-08T16:19:51.561Z" @@ -63986,7 +64065,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.173, "topicSearchString": "react-native react-component component react mobile ios android ui vector retina hole mask tutorial overlay tint animated click-through view" }, { @@ -64046,8 +64125,8 @@ "configPlugin": false }, "npm": { - "downloads": 2395, - "weekDownloads": 406, + "downloads": 2380, + "weekDownloads": 376, "size": 69256, "latestRelease": "0.4.2", "latestReleaseDate": "2025-07-07T14:10:29.647Z" @@ -64056,7 +64135,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.106, + "popularity": -0.116, "topicSearchString": "svg icons react react-native expo" }, { @@ -64086,7 +64165,7 @@ "forks": 43, "issues": 16, "subscribers": 3, - "stars": 452, + "stars": 453, "dependencies": 1 }, "name": "react-native-mask-text", @@ -64117,8 +64196,8 @@ }, "npmPkg": "react-native-mask-text", "npm": { - "downloads": 101786, - "weekDownloads": 16842, + "downloads": 100385, + "weekDownloads": 18165, "size": 153895, "latestRelease": "0.15.0", "latestReleaseDate": "2025-06-20T12:06:01.910Z" @@ -64128,7 +64207,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.141, + "popularity": 0.154, "topicSearchString": "react react-native input mask expo text-input" }, { @@ -64173,8 +64252,8 @@ }, "npmPkg": "react-native-progress-wheel", "npm": { - "downloads": 6151, - "weekDownloads": 1168, + "downloads": 6015, + "weekDownloads": 1274, "size": 16433, "latestRelease": "2.1.0", "latestReleaseDate": "2023-10-22T10:29:34.009Z" @@ -64185,7 +64264,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.18, "topicSearchString": "" }, { @@ -64216,7 +64295,7 @@ "forks": 22, "issues": 4, "subscribers": 5, - "stars": 780, + "stars": 782, "dependencies": 1 }, "name": "react-native-avoid-softinput", @@ -64249,8 +64328,8 @@ }, "npmPkg": "react-native-avoid-softinput", "npm": { - "downloads": 122189, - "weekDownloads": 26696, + "downloads": 118971, + "weekDownloads": 30228, "size": 236624, "latestRelease": "8.0.2", "latestReleaseDate": "2025-10-02T16:59:25.192Z" @@ -64261,7 +64340,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.186, + "popularity": 0.216, "topicSearchString": "react-native soft-input keyboard avoid-soft-input avoid-keyboard ios android" }, { @@ -64319,8 +64398,8 @@ "unmaintained": true, "npmPkg": "react-native-web-hooks", "npm": { - "downloads": 79057, - "weekDownloads": 15424, + "downloads": 76282, + "weekDownloads": 16108, "size": 39340, "latestRelease": "3.0.2", "latestReleaseDate": "2021-12-13T21:22:43.724Z" @@ -64331,7 +64410,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.571, "topicSearchString": "expo web utils react-native css-in-js react hooks ssr" }, { @@ -64395,8 +64474,8 @@ }, "unmaintained": true, "npm": { - "downloads": 932, - "weekDownloads": 117, + "downloads": 942, + "weekDownloads": 119, "size": 11323947, "latestRelease": "5.0.2", "latestReleaseDate": "2022-08-06T08:29:14.013Z" @@ -64407,7 +64486,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.393, + "popularity": -1.392, "topicSearchString": "react-native alipay uiwjs uiw 支付宝 ios android reactjs" }, { @@ -64467,8 +64546,8 @@ }, "npmPkg": "react-native-get-location", "npm": { - "downloads": 40313, - "weekDownloads": 8982, + "downloads": 37913, + "weekDownloads": 7791, "size": 91208, "latestRelease": "6.0.0", "latestReleaseDate": "2025-09-22T20:53:38.393Z" @@ -64479,7 +64558,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.189, + "popularity": 0.175, "topicSearchString": "react-native android ios geolocation location gps hacktoberfest" }, { @@ -64554,8 +64633,8 @@ }, "npmPkg": "realm", "npm": { - "downloads": 196964, - "weekDownloads": 35050, + "downloads": 193843, + "weekDownloads": 36425, "size": 678086505, "latestRelease": "20.2.0", "latestReleaseDate": "2025-08-11T17:17:46.164Z" @@ -64568,7 +64647,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.16, "topicSearchString": "database db storage react react-native persistence local-storage localstorage sqlite async-storage asyncstorage rocksdb leveldb realm mongodb offline-first offlinefirst localfirst local-first" }, { @@ -64601,7 +64680,7 @@ "forks": 31, "issues": 12, "subscribers": 7, - "stars": 416, + "stars": 417, "dependencies": 1 }, "name": "@georstat/react-native-image-cache", @@ -64631,8 +64710,8 @@ }, "unmaintained": true, "npm": { - "downloads": 9489, - "weekDownloads": 1927, + "downloads": 9154, + "weekDownloads": 2061, "size": 125174, "latestRelease": "3.1.0", "latestReleaseDate": "2023-09-07T05:44:25.303Z" @@ -64643,7 +64722,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.577, + "popularity": -0.559, "topicSearchString": "react-native ios android image-cache cache file-system-image-cache" }, { @@ -64706,8 +64785,8 @@ "unmaintained": true, "npmPkg": "react-native-smooth-picker", "npm": { - "downloads": 2050, - "weekDownloads": 261, + "downloads": 2004, + "weekDownloads": 336, "size": 22601, "latestRelease": "1.1.5", "latestReleaseDate": "2021-07-03T14:12:50.128Z" @@ -64718,7 +64797,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.642, + "popularity": -0.607, "topicSearchString": "react react-native picker select react-component ui form" }, { @@ -64793,8 +64872,8 @@ "unmaintained": true, "npmPkg": "react-native-version", "npm": { - "downloads": 146357, - "weekDownloads": 26786, + "downloads": 142515, + "weekDownloads": 28668, "size": 30996, "latestRelease": "4.0.0", "latestReleaseDate": "2020-03-04T22:21:32.164Z" @@ -64805,7 +64884,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.579, "topicSearchString": "cfbundleshortversionstring cfbundleversion crna current-project-version agvtool build buildnumber bump create-app expo gradle info npm-version plist react-native semver version versioncode versionname semantic-versioning hooks cli versioning release" }, { @@ -64858,8 +64937,8 @@ "unmaintained": true, "npmPkg": "react-native-events", "npm": { - "downloads": 1393, - "weekDownloads": 96, + "downloads": 1641, + "weekDownloads": 99, "size": 59703, "latestRelease": "1.0.21", "latestReleaseDate": "2022-01-17T23:18:14.119Z" @@ -64869,7 +64948,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.691, + "popularity": -0.699, "topicSearchString": "react-native event events eventemitter" }, { @@ -64939,8 +65018,8 @@ }, "unmaintained": true, "npm": { - "downloads": 1291, - "weekDownloads": 212, + "downloads": 1395, + "weekDownloads": 304, "size": 71924, "latestRelease": "1.0.0", "latestReleaseDate": "2023-04-05T11:30:56.273Z" @@ -64950,7 +65029,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.61, + "popularity": -0.565, "topicSearchString": "loading loading-image progressive lazy lazy-load fast-image image progressive-image progressive-fast-image freakycoder kuray react react-native javascript ui-lib rn mobile-app mobile" }, { @@ -64998,8 +65077,8 @@ "unmaintained": true, "npmPkg": "react-native-cache", "npm": { - "downloads": 22303, - "weekDownloads": 3721, + "downloads": 21551, + "weekDownloads": 3868, "size": 35704, "latestRelease": "2.0.3", "latestReleaseDate": "2022-12-30T19:55:16.337Z" @@ -65010,7 +65089,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, + "popularity": -0.597, "topicSearchString": "" }, { @@ -65037,7 +65116,7 @@ "updatedAt": "2022-06-23T20:49:28Z", "createdAt": "2020-12-08T21:23:01Z", "pushedAt": "2022-06-23T20:49:28Z", - "forks": 46, + "forks": 45, "issues": 27, "subscribers": 5, "stars": 759, @@ -65071,8 +65150,8 @@ }, "unmaintained": true, "npm": { - "downloads": 3027966, - "weekDownloads": 585526, + "downloads": 2942771, + "weekDownloads": 597920, "size": 94278, "latestRelease": "1.0.14", "latestReleaseDate": "2022-06-23T20:49:41.147Z" @@ -65084,7 +65163,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.577, "topicSearchString": "expo web react-native ios android portal react" }, { @@ -65155,8 +65234,8 @@ "unmaintained": true, "npmPkg": "react-native-exception-handler", "npm": { - "downloads": 201610, - "weekDownloads": 39431, + "downloads": 195044, + "weekDownloads": 39253, "size": 55914, "latestRelease": "2.10.10", "latestReleaseDate": "2021-03-23T16:53:46.116Z" @@ -65168,7 +65247,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.579, "topicSearchString": "modal react native exception handler red screen production ios android bug capture exception-handler react-native error openlibrary" }, { @@ -65185,6 +65264,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/ReactVision/viro", @@ -65202,7 +65282,7 @@ "forks": 191, "issues": 114, "subscribers": 18, - "stars": 1661, + "stars": 1663, "dependencies": 3 }, "name": "@reactvision/react-viro", @@ -65236,8 +65316,8 @@ "configPlugin": true }, "npm": { - "downloads": 11281, - "weekDownloads": 2087, + "downloads": 11125, + "weekDownloads": 2726, "size": 194568752, "latestRelease": "2.43.6", "latestReleaseDate": "2025-10-09T04:40:10.070Z" @@ -65250,7 +65330,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.208, "topicSearchString": "viroreact viro-community android ios blacklivesmatter nowar augmented-reality expo react-native ar" }, { @@ -65310,8 +65390,8 @@ }, "npmPkg": "react-native-bundle-visualizer", "npm": { - "downloads": 152107, - "weekDownloads": 28983, + "downloads": 148007, + "weekDownloads": 29650, "size": 12162, "latestRelease": "3.1.3", "latestReleaseDate": "2023-02-13T14:58:08.669Z" @@ -65323,7 +65403,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.17, "topicSearchString": "bundle-visualizer bundle-size react-native bundle visualizer size expo" }, { @@ -65384,8 +65464,8 @@ "unmaintained": true, "npmPkg": "react-native-feedback-reporter", "npm": { - "downloads": 181, - "weekDownloads": 11, + "downloads": 179, + "weekDownloads": 10, "size": 1780528, "latestRelease": "0.4.16", "latestReleaseDate": "2021-11-16T18:45:36.673Z" @@ -65395,7 +65475,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.448, + "popularity": -1.452, "topicSearchString": "react-native ios android feedback reporter" }, { @@ -65423,9 +65503,9 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-10-17T14:43:55Z", + "updatedAt": "2025-10-20T15:20:49Z", "createdAt": "2016-10-27T08:31:38Z", - "pushedAt": "2025-10-17T14:43:55Z", + "pushedAt": "2025-10-20T15:20:49Z", "forks": 1012, "issues": 47, "subscribers": 63, @@ -65453,8 +65533,8 @@ }, "npmPkg": "react-native-gesture-handler", "npm": { - "downloads": 7930504, - "weekDownloads": 1549674, + "downloads": 7755533, + "weekDownloads": 1579548, "size": 3259588, "latestRelease": "2.28.0", "latestReleaseDate": "2025-08-06T14:42:37.317Z" @@ -65467,7 +65547,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.173, "topicSearchString": "" }, { @@ -65534,8 +65614,8 @@ "unmaintained": true, "npmPkg": "react-native-responsive-dimensions", "npm": { - "downloads": 29235, - "weekDownloads": 5770, + "downloads": 28063, + "weekDownloads": 5687, "size": 47696, "latestRelease": "3.1.1", "latestReleaseDate": "2020-03-26T02:59:06.008Z" @@ -65546,7 +65626,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, + "popularity": -0.578, "topicSearchString": "react-native responsive responsive-height responsive-width responsive-font-size fontsize responsive-dimensions component font-size dimensions responsive-design hacktoberfest" }, { @@ -65598,8 +65678,8 @@ }, "npmPkg": "react-native-job-queue", "npm": { - "downloads": 11100, - "weekDownloads": 2511, + "downloads": 10594, + "weekDownloads": 2470, "size": 291556, "latestRelease": "0.5.3", "latestReleaseDate": "2025-06-04T20:31:56.765Z" @@ -65610,7 +65690,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.192, + "popularity": 0.198, "topicSearchString": "react-native" }, { @@ -65652,8 +65732,8 @@ }, "npmPkg": "react-native-quick-sqlite", "npm": { - "downloads": 18544, - "weekDownloads": 3498, + "downloads": 18254, + "weekDownloads": 2946, "size": 9358763, "latestRelease": "8.2.7", "latestReleaseDate": "2024-11-26T16:44:39.009Z" @@ -65664,7 +65744,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.84, + "popularity": -0.863, "topicSearchString": "" }, { @@ -65728,8 +65808,8 @@ "unmaintained": true, "npmPkg": "react-native-relative-popup", "npm": { - "downloads": 87, - "weekDownloads": 2, + "downloads": 89, + "weekDownloads": 4, "size": 17776984, "latestRelease": "0.1.7", "latestReleaseDate": "2021-09-10T13:04:15.905Z" @@ -65739,7 +65819,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.73, + "popularity": -1.71, "topicSearchString": "react-native ios android popup react javascript" }, { @@ -65766,7 +65846,7 @@ "forks": 166, "issues": 80, "subscribers": 42, - "stars": 1393, + "stars": 1394, "dependencies": 16 }, "name": "@fluentui/react-native", @@ -65788,8 +65868,8 @@ "configPlugin": false }, "npm": { - "downloads": 1837, - "weekDownloads": 318, + "downloads": 2276, + "weekDownloads": 182, "size": 982274, "latestRelease": "0.42.29", "latestReleaseDate": "2025-09-26T21:32:35.618Z" @@ -65802,7 +65882,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.068, "topicSearchString": "" }, { @@ -65830,10 +65910,10 @@ "updatedAt": "2024-05-09T15:51:43Z", "createdAt": "2021-07-09T19:24:24Z", "pushedAt": "2024-05-09T15:51:43Z", - "forks": 71, + "forks": 70, "issues": 29, "subscribers": 4, - "stars": 386, + "stars": 387, "dependencies": 0 }, "name": "rn-emoji-keyboard", @@ -65868,8 +65948,8 @@ }, "npmPkg": "rn-emoji-keyboard", "npm": { - "downloads": 122800, - "weekDownloads": 25414, + "downloads": 118148, + "weekDownloads": 24291, "size": 1327141, "latestRelease": "1.7.0", "latestReleaseDate": "2024-05-09T15:51:40.065Z" @@ -65880,7 +65960,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.175, "topicSearchString": "react-native ios android typescript emoji-picker emoji emoji-keyboard hacktoberfest hacktoberfest2021 hacktoberfest2022" }, { @@ -65943,8 +66023,8 @@ "unmaintained": true, "npmPkg": "react-native-encrypted-storage", "npm": { - "downloads": 180312, - "weekDownloads": 35042, + "downloads": 175165, + "weekDownloads": 36915, "size": 151222, "latestRelease": "4.0.3", "latestReleaseDate": "2022-11-03T22:39:16.710Z" @@ -65955,7 +66035,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, + "popularity": -0.571, "topicSearchString": "react-native ios android async-storage keychain sharedpreferences encryption security kotlin swift" }, { @@ -66018,8 +66098,8 @@ }, "npmPkg": "react-native-curved-bottom-bar", "npm": { - "downloads": 12548, - "weekDownloads": 2578, + "downloads": 12518, + "weekDownloads": 2599, "size": 255669, "latestRelease": "3.5.1", "latestReleaseDate": "2025-04-24T05:40:37.688Z" @@ -66029,7 +66109,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.177, "topicSearchString": "react-native elements components curved bottom tab-bar tabbar" }, { @@ -66060,7 +66140,7 @@ "forks": 278, "issues": 85, "subscribers": 19, - "stars": 935, + "stars": 937, "dependencies": 0 }, "name": "react-native-image-viewing", @@ -66092,8 +66172,8 @@ "unmaintained": true, "npmPkg": "react-native-image-viewing", "npm": { - "downloads": 163092, - "weekDownloads": 35448, + "downloads": 157196, + "weekDownloads": 33394, "size": 71366, "latestRelease": "0.2.2", "latestReleaseDate": "2022-04-18T19:38:20.779Z" @@ -66106,7 +66186,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.565, + "popularity": -0.569, "topicSearchString": "react react-native image gallery image-gallery image-viewer pinch-to-zoom" }, { @@ -66173,8 +66253,8 @@ }, "npmPkg": "animation-wrapper-view", "npm": { - "downloads": 63, - "weekDownloads": 9, + "downloads": 62, + "weekDownloads": 6, "size": 127241, "latestRelease": "1.1.2-TEST.1", "latestReleaseDate": "2022-08-02T09:51:55.528Z" @@ -66184,7 +66264,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.621, + "popularity": -0.664, "topicSearchString": "react-components animation declarative animated react-native react reactjs library react-component" }, { @@ -66248,8 +66328,8 @@ }, "unmaintained": true, "npm": { - "downloads": 1299, - "weekDownloads": 25, + "downloads": 1316, + "weekDownloads": 27, "size": 219093, "latestRelease": "0.2.3", "latestReleaseDate": "2020-03-27T18:54:45.283Z" @@ -66260,7 +66340,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.734, + "popularity": -0.733, "topicSearchString": "react react-native pager react-pager tabs react-tabs reactjs" }, { @@ -66323,8 +66403,8 @@ }, "npmPkg": "jail-monkey", "npm": { - "downloads": 312746, - "weekDownloads": 58972, + "downloads": 302650, + "weekDownloads": 60443, "size": 172215, "latestRelease": "2.8.4", "latestReleaseDate": "2025-07-01T14:44:02.840Z" @@ -66336,7 +66416,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.17, "topicSearchString": "react-native native jail break jail-break ios android mock-locations detect react trust jailbreak" }, { @@ -66402,8 +66482,8 @@ "unmaintained": true, "npmPkg": "react-native-timeline-flatlist", "npm": { - "downloads": 23524, - "weekDownloads": 4233, + "downloads": 23271, + "weekDownloads": 4600, "size": 38497, "latestRelease": "0.8.0", "latestReleaseDate": "2022-01-18T21:04:11.230Z" @@ -66414,7 +66494,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.582, "topicSearchString": "react-native timeline flatlist schedule component ios android flatlist-based cross-platform" }, { @@ -66474,8 +66554,8 @@ }, "npmPkg": "react-native-js-tableview", "npm": { - "downloads": 266, - "weekDownloads": 54, + "downloads": 265, + "weekDownloads": 60, "size": 56295, "latestRelease": "2.6.1", "latestReleaseDate": "2024-08-09T15:32:49.723Z" @@ -66485,7 +66565,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.576, + "popularity": -0.556, "topicSearchString": "react-native tableview uitableview ios android" }, { @@ -66551,8 +66631,8 @@ "configPlugin": false }, "npm": { - "downloads": 703, - "weekDownloads": 28, + "downloads": 727, + "weekDownloads": 34, "size": 24945, "latestRelease": "2.5.4", "latestReleaseDate": "2023-08-07T06:28:30.204Z" @@ -66562,7 +66642,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.966, + "popularity": -0.96, "topicSearchString": "suggestions react-native component email chip tags input mobile ios android ui javascript native" }, { @@ -66576,6 +66656,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/Giphy/giphy-react-native-sdk", @@ -66624,8 +66705,8 @@ "configPlugin": true }, "npm": { - "downloads": 53131, - "weekDownloads": 13504, + "downloads": 48987, + "weekDownloads": 11862, "size": 404592, "latestRelease": "5.0.1", "latestReleaseDate": "2025-09-26T15:12:42.036Z" @@ -66636,7 +66717,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.216, + "popularity": 0.206, "topicSearchString": "react-native ios android giphy sdk gifs giphy-sdks" }, { @@ -66714,8 +66795,8 @@ }, "npmPkg": "react-native-shadow-2", "npm": { - "downloads": 157009, - "weekDownloads": 29671, + "downloads": 152205, + "weekDownloads": 30655, "size": 61089, "latestRelease": "7.1.2", "latestReleaseDate": "2025-07-18T15:05:01.347Z" @@ -66726,7 +66807,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.171, "topicSearchString": "shadow shadows react-native native gradient ios android react cross-platform automatic typescript cross blur shadow-2 native-shadow svg borders radiuses new improved" }, { @@ -66791,8 +66872,8 @@ "unmaintained": true, "npmPkg": "react-native-turbolinks", "npm": { - "downloads": 1669, - "weekDownloads": 35, + "downloads": 1670, + "weekDownloads": 34, "size": 4079675, "latestRelease": "2.2.9", "latestReleaseDate": "2020-12-29T03:03:00.464Z" @@ -66803,7 +66884,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.732, + "popularity": -0.733, "topicSearchString": "react-native react native turbolinks pwa rails android ios webview hybrid" }, { @@ -66868,8 +66949,8 @@ }, "npmPkg": "vision-camera-image-labeler", "npm": { - "downloads": 129, - "weekDownloads": 18, + "downloads": 130, + "weekDownloads": 23, "size": 48983, "latestRelease": "0.1.6", "latestReleaseDate": "2021-08-13T08:57:12.339Z" @@ -66878,7 +66959,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.63, + "popularity": -0.597, "topicSearchString": "react-native ios android image-labeling vision-camera library vision camera ml ai frame-processor-plugin mlkit-vision" }, { @@ -66905,7 +66986,7 @@ "forks": 11, "issues": 1, "subscribers": 1, - "stars": 28, + "stars": 29, "dependencies": 0 }, "name": "react-native-barcode-creator", @@ -66937,8 +67018,8 @@ }, "npmPkg": "react-native-barcode-creator", "npm": { - "downloads": 35156, - "weekDownloads": 5177, + "downloads": 34123, + "weekDownloads": 5908, "size": 52780, "latestRelease": "0.1.8", "latestReleaseDate": "2025-01-04T15:49:00.776Z" @@ -66948,7 +67029,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.125, + "popularity": 0.147, "topicSearchString": "react-native ios android barcode barcode-generator qrcode-generator native" }, { @@ -67004,7 +67085,7 @@ }, "unmaintained": true, "npm": { - "downloads": 101, + "downloads": 228, "weekDownloads": 0, "size": 11425, "latestRelease": "1.0.0", @@ -67076,8 +67157,8 @@ }, "npmPkg": "react-native-animateable-text", "npm": { - "downloads": 46227, - "weekDownloads": 12544, + "downloads": 42817, + "weekDownloads": 10320, "size": 190393, "latestRelease": "0.16.0", "latestReleaseDate": "2025-07-27T13:31:13.169Z" @@ -67086,7 +67167,7 @@ "matchingScoreModifiers": [ "Known" ], - "popularity": 0.231, + "popularity": 0.205, "topicSearchString": "react-native ios android reanimated shared-values animated text reanimated2" }, { @@ -67142,8 +67223,8 @@ "unmaintained": true, "npmPkg": "react-native-window-view", "npm": { - "downloads": 1531, - "weekDownloads": 317, + "downloads": 1500, + "weekDownloads": 357, "size": 23280, "latestRelease": "0.3.0", "latestReleaseDate": "2021-04-28T10:01:41.022Z" @@ -67153,7 +67234,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.824, + "popularity": -0.797, "topicSearchString": "react-native ios android" }, { @@ -67213,8 +67294,8 @@ "unmaintained": true, "npmPkg": "react-native-receive-sharing-intent", "npm": { - "downloads": 8014, - "weekDownloads": 1478, + "downloads": 7716, + "weekDownloads": 1449, "size": 225951, "latestRelease": "2.0.0", "latestReleaseDate": "2021-05-17T17:42:36.848Z" @@ -67225,7 +67306,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.59, "topicSearchString": "react-native ios android" }, { @@ -67233,6 +67314,7 @@ "npmPkg": "@datadog/mobile-react-native", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/DataDog/dd-sdk-reactnative", @@ -67278,8 +67360,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 574001, - "weekDownloads": 114023, + "downloads": 552686, + "weekDownloads": 117196, "size": 2240344, "latestRelease": "2.12.3", "latestReleaseDate": "2025-10-14T16:07:36.704Z" @@ -67290,7 +67372,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.18, "topicSearchString": "datadog react-native ios android" }, { @@ -67358,7 +67440,7 @@ }, "npmPkg": "pagescrollview", "npm": { - "downloads": 225, + "downloads": 224, "weekDownloads": 7, "size": 9015, "latestRelease": "2.2.0", @@ -67426,8 +67508,8 @@ "unmaintained": true, "npmPkg": "react-native-system-bars", "npm": { - "downloads": 1593, - "weekDownloads": 310, + "downloads": 1528, + "weekDownloads": 302, "size": 994253, "latestRelease": "0.4.0", "latestReleaseDate": "2022-08-08T11:51:19.011Z" @@ -67437,7 +67519,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.582, "topicSearchString": "react-native android status-bar navigation-bar system-ui-visibility" }, { @@ -67494,8 +67576,8 @@ "unmaintained": true, "npmPkg": "react-native-detector", "npm": { - "downloads": 16671, - "weekDownloads": 3271, + "downloads": 16120, + "weekDownloads": 3392, "size": 1356124, "latestRelease": "0.2.3", "latestReleaseDate": "2022-08-20T20:03:53.011Z" @@ -67506,7 +67588,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.583, + "popularity": -0.571, "topicSearchString": "react-native ios android screenshot detector" }, { @@ -67568,8 +67650,8 @@ "configPlugin": false }, "npm": { - "downloads": 13244, - "weekDownloads": 2290, + "downloads": 12870, + "weekDownloads": 2362, "size": 775667, "latestRelease": "1.3.7", "latestReleaseDate": "2022-03-15T12:17:57.416Z" @@ -67580,7 +67662,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, + "popularity": -0.594, "topicSearchString": "react-native ios android material-design" }, { @@ -67633,8 +67715,8 @@ }, "unmaintained": true, "npm": { - "downloads": 47996, - "weekDownloads": 9642, + "downloads": 46336, + "weekDownloads": 9911, "size": 8413, "latestRelease": "0.6.7", "latestReleaseDate": "2021-01-18T11:52:11.581Z" @@ -67644,7 +67726,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.568, "topicSearchString": "react-native generator barcode generating-barcodes" }, { @@ -67711,8 +67793,8 @@ "unmaintained": true, "npmPkg": "react-native-whirlwind", "npm": { - "downloads": 271, - "weekDownloads": 44, + "downloads": 269, + "weekDownloads": 51, "size": 653996, "latestRelease": "0.3.0", "latestReleaseDate": "2022-06-21T13:50:04.561Z" @@ -67722,7 +67804,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.36, + "popularity": -1.338, "topicSearchString": "react-native css styles stylesheet tailwind tailwindcss tachyon ios android react reactnative tachyons styled-components" }, { @@ -67788,8 +67870,8 @@ "unmaintained": true, "npmPkg": "react-native-sectioned-multi-select", "npm": { - "downloads": 23238, - "weekDownloads": 3924, + "downloads": 22894, + "weekDownloads": 4143, "size": 3600424, "latestRelease": "0.10.0", "latestReleaseDate": "2023-05-11T03:17:04.505Z" @@ -67801,7 +67883,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.596, "topicSearchString": "select multiselect picker category react native reactnative" }, { @@ -67812,6 +67894,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/numandev1/react-native-compressor", @@ -67829,7 +67912,7 @@ "forks": 123, "issues": 42, "subscribers": 9, - "stars": 1202, + "stars": 1203, "dependencies": 0 }, "name": "react-native-compressor", @@ -67882,20 +67965,19 @@ }, "npmPkg": "react-native-compressor", "npm": { - "downloads": 280559, - "weekDownloads": 57202, + "downloads": 270745, + "weekDownloads": 55953, "size": 488832, "latestRelease": "1.13.0", "latestReleaseDate": "2025-09-19T15:41:30.783Z" }, - "score": 73, + "score": 68, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.176, "topicSearchString": "react-native ios android audio image compression video compress compress-images compress-videos compressor compress-audio whatsapp background nsurlsession uploader upload uploadservice downloader download thumbnail create-thumbnail video-metadata media bitrate exif metadata" }, { @@ -67965,8 +68047,8 @@ "unmaintained": true, "npmPkg": "react-native-phone-number-input", "npm": { - "downloads": 165048, - "weekDownloads": 32836, + "downloads": 160618, + "weekDownloads": 32430, "size": 23991, "latestRelease": "2.1.0", "latestReleaseDate": "2021-05-05T16:29:14.899Z" @@ -67979,7 +68061,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.581, + "popularity": -0.578, "topicSearchString": "react-native phone telephone phone-input input tel input-text international component ios android phone-number reactjs react" }, { @@ -68043,7 +68125,7 @@ }, "npmPkg": "react-native-gesture-flip-card", "npm": { - "downloads": 573, + "downloads": 564, "weekDownloads": 75, "size": 13684, "latestRelease": "1.1.0", @@ -68054,7 +68136,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.638, + "popularity": -0.636, "topicSearchString": "react-native flip-card card-flip card flip gesture gesture-flip flip-animation panresponder" }, { @@ -68120,8 +68202,8 @@ "unmaintained": true, "npmPkg": "react-native-month-year-picker", "npm": { - "downloads": 34222, - "weekDownloads": 5789, + "downloads": 33205, + "weekDownloads": 5911, "size": 62414, "latestRelease": "1.9.0", "latestReleaseDate": "2022-11-28T21:48:45.934Z" @@ -68132,7 +68214,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.599, "topicSearchString": "react-native month-picker month-year-picker ios android react java objective-c" }, { @@ -68195,7 +68277,7 @@ }, "unmaintained": true, "npm": { - "downloads": 3479, + "downloads": 3357, "weekDownloads": 715, "size": 202821, "latestRelease": "1.4.3", @@ -68207,7 +68289,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.575, + "popularity": -0.569, "topicSearchString": "chat ui react-native component ios android typescript" }, { @@ -68268,8 +68350,8 @@ }, "unmaintained": true, "npm": { - "downloads": 88, - "weekDownloads": 12, + "downloads": 207, + "weekDownloads": 10, "size": 61048, "latestRelease": "1.4.2", "latestReleaseDate": "2021-10-24T15:16:11.275Z" @@ -68279,7 +68361,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.38, + "popularity": -1.458, "topicSearchString": "chat firebase react-native ios android typescript" }, { @@ -68343,8 +68425,8 @@ }, "unmaintained": true, "npm": { - "downloads": 18259, - "weekDownloads": 3235, + "downloads": 18294, + "weekDownloads": 3293, "size": 38070, "latestRelease": "1.6.0", "latestReleaseDate": "2022-01-27T21:33:26.271Z" @@ -68355,7 +68437,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.597, "topicSearchString": "link url preview react-component react-native ios android typescript" }, { @@ -68420,8 +68502,8 @@ }, "unmaintained": true, "npm": { - "downloads": 5300, - "weekDownloads": 1035, + "downloads": 5227, + "weekDownloads": 1046, "size": 27094, "latestRelease": "2.4.0", "latestReleaseDate": "2022-01-27T20:40:42.829Z" @@ -68432,7 +68514,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, + "popularity": -0.58, "topicSearchString": "keyboard-accessory keyboard sticky react-component interactive react-native ios android typescript" }, { @@ -68490,8 +68572,8 @@ }, "unmaintained": true, "npm": { - "downloads": 4465, - "weekDownloads": 807, + "downloads": 4469, + "weekDownloads": 918, "size": 7966, "latestRelease": "2.3.0", "latestReleaseDate": "2022-01-26T21:26:02.744Z" @@ -68501,7 +68583,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.575, "topicSearchString": "android react-native kotlin absolute-path intent resolver" }, { @@ -68527,8 +68609,8 @@ "updatedAt": "2025-08-02T14:45:18Z", "createdAt": "2021-02-21T08:34:18Z", "pushedAt": "2025-08-02T14:45:18Z", - "forks": 130, - "issues": 27, + "forks": 131, + "issues": 28, "subscribers": 8, "stars": 688, "dependencies": 0 @@ -68565,8 +68647,8 @@ "moduleType": "nitro" }, "npm": { - "downloads": 4006, - "weekDownloads": 767, + "downloads": 4010, + "weekDownloads": 770, "size": 508779, "latestRelease": "2.2.4", "latestReleaseDate": "2025-08-02T14:21:39.861Z" @@ -68629,8 +68711,8 @@ "configPlugin": false }, "npm": { - "downloads": 4777, - "weekDownloads": 872, + "downloads": 4764, + "weekDownloads": 1022, "size": 65912, "latestRelease": "0.3.3", "latestReleaseDate": "2024-09-11T15:43:41.070Z" @@ -68640,7 +68722,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.182, "topicSearchString": "react react-native web web image" }, { @@ -68715,8 +68797,8 @@ "unmaintained": true, "npmPkg": "react-native-neomorph-shadows", "npm": { - "downloads": 2891, - "weekDownloads": 430, + "downloads": 2838, + "weekDownloads": 465, "size": 33081, "latestRelease": "1.1.2", "latestReleaseDate": "2020-06-17T06:31:25.630Z" @@ -68728,7 +68810,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.624, + "popularity": -0.611, "topicSearchString": "react-native react-component component react mobile ios android ui neomorph neomorphism neumorphism skeuomorphic skeuomorphism shadowbox shadow shadow-view shadowview neomorphism-view inner-shadow shadow-svg" }, { @@ -68782,7 +68864,7 @@ "unmaintained": true, "npmPkg": "react-native-idata-scanner", "npm": { - "downloads": 32, + "downloads": 33, "weekDownloads": 7, "size": 383361, "latestRelease": "1.0.0", @@ -68846,8 +68928,8 @@ "unmaintained": true, "npmPkg": "react-native-headphone-detection", "npm": { - "downloads": 7248, - "weekDownloads": 1461, + "downloads": 7032, + "weekDownloads": 1581, "size": 31225, "latestRelease": "1.3.0", "latestReleaseDate": "2020-10-01T11:22:17.657Z" @@ -68857,7 +68939,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.559, "topicSearchString": "react-native headphones audio-jack bluetooth" }, { @@ -68915,8 +68997,8 @@ }, "npmPkg": "react-native-charts-wrapper", "npm": { - "downloads": 28050, - "weekDownloads": 6239, + "downloads": 25983, + "weekDownloads": 5145, "size": 359518, "latestRelease": "0.6.0", "latestReleaseDate": "2023-10-28T07:10:38.440Z" @@ -68929,7 +69011,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.189, + "popularity": 0.168, "topicSearchString": "react-native chart android mpandroidchart ios charts" }, { @@ -68990,8 +69072,8 @@ "unmaintained": true, "npmPkg": "react-native-awesome-alerts", "npm": { - "downloads": 12059, - "weekDownloads": 2305, + "downloads": 11649, + "weekDownloads": 2132, "size": 24339, "latestRelease": "2.0.0", "latestReleaseDate": "2022-06-01T20:58:31.959Z" @@ -69002,7 +69084,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.588, + "popularity": -0.594, "topicSearchString": "react-native alerts dialog ios android alert popup" }, { @@ -69073,8 +69155,8 @@ }, "npmPkg": "react-native-swipeable-list", "npm": { - "downloads": 25687, - "weekDownloads": 5397, + "downloads": 24539, + "weekDownloads": 5351, "size": 21793, "latestRelease": "0.1.2", "latestReleaseDate": "2022-03-27T15:12:24.385Z" @@ -69084,7 +69166,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.179, + "popularity": 0.185, "topicSearchString": "react-native flatlist swipeable ux list gesture animations performant react android component ios web" }, { @@ -69214,8 +69296,8 @@ "unmaintained": true, "npmPkg": "react-native-openalpr", "npm": { - "downloads": 1009, - "weekDownloads": 142, + "downloads": 1523, + "weekDownloads": 138, "size": 480189297, "latestRelease": "2.2.0", "latestReleaseDate": "2021-05-04T09:55:40.405Z" @@ -69227,7 +69309,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.63, + "popularity": -0.673, "topicSearchString": "react-native openalpr camera camera-component opencv" }, { @@ -69291,8 +69373,8 @@ "unmaintained": true, "npmPkg": "react-native-multibar", "npm": { - "downloads": 182, - "weekDownloads": 9, + "downloads": 181, + "weekDownloads": 12, "size": 2551676, "latestRelease": "1.1.5", "latestReleaseDate": "2021-03-17T09:37:35.348Z" @@ -69303,7 +69385,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.457, + "popularity": -1.443, "topicSearchString": "react react-native navigation bar bottom-bar tab-bar multi-bar tabbar" }, { @@ -69374,7 +69456,7 @@ "unmaintained": true, "npmPkg": "react-native-ui-buttons", "npm": { - "downloads": 22, + "downloads": 23, "weekDownloads": 2, "size": 15236, "latestRelease": "2.1.1", @@ -69451,8 +69533,8 @@ }, "unmaintained": true, "npm": { - "downloads": 29539, - "weekDownloads": 5903, + "downloads": 28467, + "weekDownloads": 6130, "size": 76622, "latestRelease": "0.14.0", "latestReleaseDate": "2022-08-15T18:15:22.698Z" @@ -69463,7 +69545,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, + "popularity": -0.567, "topicSearchString": "react-component-pdf-viewer-view-android-ios-pdf react-native react-component pdf pdf-viewer javascript android ios hacktoberfest2020 hacktoberfest" }, { @@ -69521,8 +69603,8 @@ "configPlugin": false }, "npm": { - "downloads": 2288, - "weekDownloads": 480, + "downloads": 2196, + "weekDownloads": 469, "size": 141717, "latestRelease": "0.13.1", "latestReleaseDate": "2024-02-04T20:48:08.763Z" @@ -69532,7 +69614,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.182, "topicSearchString": "view-android-ios-ui-screenshot-snapshot-testing react-native testing ui view screenshot" }, { @@ -69558,7 +69640,7 @@ "forks": 33, "issues": 17, "subscribers": 15, - "stars": 1624, + "stars": 1625, "dependencies": 0 }, "name": "react-freeze", @@ -69584,8 +69666,8 @@ }, "npmPkg": "react-freeze", "npm": { - "downloads": 6834211, - "weekDownloads": 1386520, + "downloads": 6684114, + "weekDownloads": 1407502, "size": 17179, "latestRelease": "1.0.4", "latestReleaseDate": "2024-02-28T22:44:42.518Z" @@ -69598,7 +69680,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.179, "topicSearchString": "react freeze" }, { @@ -69652,7 +69734,7 @@ }, "npmPkg": "react-native-native-runtime", "npm": { - "downloads": 1, + "downloads": 3, "weekDownloads": 0, "size": 109022, "latestRelease": "0.2.0", @@ -69724,8 +69806,8 @@ "unmaintained": true, "npmPkg": "react-native-mlkit-ocr", "npm": { - "downloads": 15170, - "weekDownloads": 3266, + "downloads": 14752, + "weekDownloads": 3240, "size": 51794, "latestRelease": "0.3.0", "latestReleaseDate": "2023-04-13T03:57:44.266Z" @@ -69736,7 +69818,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.567, + "popularity": -0.563, "topicSearchString": "mlkit ocr text-recognition react-native ios android" }, { @@ -69796,8 +69878,8 @@ "configPlugin": false }, "npm": { - "downloads": 300577, - "weekDownloads": 60794, + "downloads": 290865, + "weekDownloads": 62644, "size": 101483, "latestRelease": "2.6.0", "latestReleaseDate": "2024-03-24T23:06:05.847Z" @@ -69808,7 +69890,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.183, "topicSearchString": "react-component react-native ios android slider javascript web" }, { @@ -69926,8 +70008,8 @@ }, "npmPkg": "react-native-shake", "npm": { - "downloads": 96654, - "weekDownloads": 19853, + "downloads": 94393, + "weekDownloads": 21330, "size": 47705, "latestRelease": "6.8.1", "latestReleaseDate": "2025-10-15T09:21:33.894Z" @@ -69938,7 +70020,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.192, "topicSearchString": "react-native ios android" }, { @@ -69992,8 +70074,8 @@ "unmaintained": true, "npmPkg": "react-native-home-indicator", "npm": { - "downloads": 2463, - "weekDownloads": 406, + "downloads": 2402, + "weekDownloads": 541, "size": 17161, "latestRelease": "0.2.10", "latestReleaseDate": "2022-09-20T12:51:14.777Z" @@ -70003,7 +70085,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.61, + "popularity": -0.558, "topicSearchString": "react-native home-indicator prefershomeindicatorautohidden iphonex safe-area" }, { @@ -70011,6 +70093,7 @@ "ios": true, "android": true, "expoGo": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/tschoffelen/react-native-email-link", @@ -70060,8 +70143,8 @@ }, "npmPkg": "react-native-email-link", "npm": { - "downloads": 265710, - "weekDownloads": 53980, + "downloads": 254719, + "weekDownloads": 53124, "size": 43434, "latestRelease": "1.16.1", "latestReleaseDate": "2024-06-29T13:32:37.003Z" @@ -70072,7 +70155,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.177, "topicSearchString": "react-native react-component email link linking react ios android" }, { @@ -70104,7 +70187,7 @@ "forks": 193, "issues": 138, "subscribers": 3, - "stars": 1269, + "stars": 1270, "dependencies": 1 }, "name": "react-native-element-dropdown", @@ -70141,8 +70224,8 @@ }, "npmPkg": "react-native-element-dropdown", "npm": { - "downloads": 433663, - "weekDownloads": 86746, + "downloads": 419341, + "weekDownloads": 83893, "size": 358790, "latestRelease": "2.12.4", "latestReleaseDate": "2025-01-11T03:16:34.351Z" @@ -70221,8 +70304,8 @@ }, "unmaintained": true, "npm": { - "downloads": 145, - "weekDownloads": 22, + "downloads": 409, + "weekDownloads": 32, "size": 293297, "latestRelease": "1.2.0", "latestReleaseDate": "2021-07-28T20:26:31.990Z" @@ -70234,7 +70317,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.371, + "popularity": -1.433, "topicSearchString": "onboarding paper paper-onboarding react-native ios android reanimated slider material ui redash" }, { @@ -70296,8 +70379,8 @@ "configPlugin": false }, "npm": { - "downloads": 1378, - "weekDownloads": 250, + "downloads": 1428, + "weekDownloads": 234, "size": 684037, "latestRelease": "2.3.0", "latestReleaseDate": "2024-10-18T13:59:10.773Z" @@ -70308,7 +70391,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.139, "topicSearchString": "react-native react ios android select picker dropdown menu component" }, { @@ -70364,8 +70447,8 @@ }, "npmPkg": "react-native-quick-base64", "npm": { - "downloads": 694130, - "weekDownloads": 141528, + "downloads": 673726, + "weekDownloads": 142681, "size": 42766, "latestRelease": "2.2.2", "latestReleaseDate": "2025-09-01T07:12:22.541Z" @@ -70376,7 +70459,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.18, "topicSearchString": "react-native ios android" }, { @@ -70439,8 +70522,8 @@ "unmaintained": true, "npmPkg": "react-native-cardscan", "npm": { - "downloads": 838, - "weekDownloads": 119, + "downloads": 815, + "weekDownloads": 111, "size": 5246634, "latestRelease": "2.0.0", "latestReleaseDate": "2021-10-04T22:29:31.113Z" @@ -70451,7 +70534,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.379, + "popularity": -1.384, "topicSearchString": "react-native card scan cardscan payment mobile android ios" }, { @@ -70508,8 +70591,8 @@ "unmaintained": true, "npmPkg": "vision-camera-code-scanner", "npm": { - "downloads": 27447, - "weekDownloads": 4237, + "downloads": 26723, + "weekDownloads": 4829, "size": 160020, "latestRelease": "0.2.0", "latestReleaseDate": "2022-04-01T12:40:01.176Z" @@ -70521,7 +70604,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.619, + "popularity": -0.596, "topicSearchString": "react-native ios android" }, { @@ -70580,8 +70663,8 @@ "configPlugin": false }, "npm": { - "downloads": 408, - "weekDownloads": 29, + "downloads": 415, + "weekDownloads": 18, "size": 40178415, "latestRelease": "1.2.0", "latestReleaseDate": "2021-10-09T07:58:57.328Z" @@ -70591,7 +70674,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.69, + "popularity": -0.713, "topicSearchString": "react react-native native twitter signin social-signin authentication hacktoberfest" }, { @@ -70644,8 +70727,8 @@ "unmaintained": true, "npmPkg": "react-native-svg-app-icon", "npm": { - "downloads": 2546, - "weekDownloads": 523, + "downloads": 2455, + "weekDownloads": 571, "size": 50938, "latestRelease": "0.6.1", "latestReleaseDate": "2022-04-19T18:05:44.993Z" @@ -70655,7 +70738,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.575, + "popularity": -0.552, "topicSearchString": "react-native svg app-icon" }, { @@ -70716,8 +70799,8 @@ "unmaintained": true, "npmPkg": "rn-bounceable", "npm": { - "downloads": 1080, - "weekDownloads": 218, + "downloads": 1040, + "weekDownloads": 195, "size": 9110, "latestRelease": "1.2.0", "latestReleaseDate": "2022-08-29T13:45:05.747Z" @@ -70727,7 +70810,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.578, + "popularity": -0.59, "topicSearchString": "react react-native expo bounceable reanimated bounceable-component rn-bounceable web" }, { @@ -70786,8 +70869,8 @@ }, "npmPkg": "react-native-checkbox-reanimated", "npm": { - "downloads": 8618, - "weekDownloads": 1564, + "downloads": 8298, + "weekDownloads": 1586, "size": 39288, "latestRelease": "0.1.2", "latestReleaseDate": "2025-04-04T00:29:14.276Z" @@ -70798,7 +70881,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.163, "topicSearchString": "react-native ios android ui" }, { @@ -70808,6 +70891,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/zoontek/react-native-edge-to-edge", @@ -70825,7 +70909,7 @@ "forks": 28, "issues": 3, "subscribers": 6, - "stars": 969, + "stars": 970, "dependencies": 0 }, "name": "react-native-edge-to-edge", @@ -70857,8 +70941,8 @@ }, "npmPkg": "react-native-edge-to-edge", "npm": { - "downloads": 2920565, - "weekDownloads": 602963, + "downloads": 2840132, + "weekDownloads": 603737, "size": 120168, "latestRelease": "1.7.0", "latestReleaseDate": "2025-08-28T13:02:44.060Z" @@ -70869,7 +70953,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.181, "topicSearchString": "react react-native edge-to-edge status-bar navigation-bar system-bar system-bars" }, { @@ -70924,7 +71008,7 @@ "unmaintained": true, "npmPkg": "react-native-sha", "npm": { - "downloads": 7, + "downloads": 8, "weekDownloads": 0, "size": 97336, "latestRelease": "0.1.6", @@ -70994,8 +71078,8 @@ }, "npmPkg": "react-native-customizable-toast", "npm": { - "downloads": 564, - "weekDownloads": 110, + "downloads": 554, + "weekDownloads": 100, "size": 146642, "latestRelease": "0.2.1", "latestReleaseDate": "2023-08-13T13:33:44.971Z" @@ -71005,7 +71089,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.583, + "popularity": -0.596, "topicSearchString": "react-native ios android" }, { @@ -71069,7 +71153,7 @@ "unmaintained": true, "npmPkg": "react-native-lazy-index", "npm": { - "downloads": 29, + "downloads": 30, "weekDownloads": 4, "size": 20906, "latestRelease": "2.1.4", @@ -71081,7 +71165,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.367, + "popularity": -1.386, "topicSearchString": "babel bundle codegen index.js inline lazy macro on-demand performance ram react react-native require ram-bundle lazy-loading" }, { @@ -71143,8 +71227,8 @@ "configPlugin": false }, "npm": { - "downloads": 6985, - "weekDownloads": 1392, + "downloads": 6837, + "weekDownloads": 1386, "size": 24290, "latestRelease": "1.1.2", "latestReleaseDate": "2025-09-10T14:20:53.920Z" @@ -71154,7 +71238,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.172, "topicSearchString": "react-native ios android react marquee auto-scrolling auto-scroll" }, { @@ -71220,8 +71304,8 @@ }, "npmPkg": "react-native-recaptcha-that-works", "npm": { - "downloads": 71323, - "weekDownloads": 14250, + "downloads": 69304, + "weekDownloads": 14854, "size": 39880, "latestRelease": "2.0.0", "latestReleaseDate": "2023-08-19T18:14:23.406Z" @@ -71232,7 +71316,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.182, "topicSearchString": "react-native ios android recaptcha captcha security webview hacktoberfest" }, { @@ -71299,8 +71383,8 @@ }, "npmPkg": "react-native-payment-icons", "npm": { - "downloads": 6697, - "weekDownloads": 1286, + "downloads": 6586, + "weekDownloads": 1367, "size": 53834, "latestRelease": "1.0.11", "latestReleaseDate": "2021-12-13T17:01:37.615Z" @@ -71310,7 +71394,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.087, + "popularity": -0.073, "topicSearchString": "credit card payment visa mastercard react-native credit-card native icon paypal icons logo svg image creditcard" }, { @@ -71368,8 +71452,8 @@ }, "npmPkg": "react-native-sfsymbols", "npm": { - "downloads": 9370, - "weekDownloads": 1449, + "downloads": 9218, + "weekDownloads": 1587, "size": 24204, "latestRelease": "1.2.2", "latestReleaseDate": "2024-06-12T10:16:24.735Z" @@ -71379,7 +71463,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.131, + "popularity": 0.146, "topicSearchString": "sf symbols icons react native sfsymbols symbol ios" }, { @@ -71436,7 +71520,7 @@ "unmaintained": true, "npmPkg": "react-native-platforms", "npm": { - "downloads": 94, + "downloads": 93, "weekDownloads": 16, "size": 21164, "latestRelease": "0.2.0", @@ -71447,7 +71531,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.605, + "popularity": -1.598, "topicSearchString": "react-native ios android" }, { @@ -71483,7 +71567,7 @@ "forks": 341, "issues": 24, "subscribers": 27, - "stars": 3240, + "stars": 3241, "dependencies": 0 }, "name": "react-native-reanimated-carousel", @@ -71517,8 +71601,8 @@ }, "npmPkg": "react-native-reanimated-carousel", "npm": { - "downloads": 1085266, - "weekDownloads": 206828, + "downloads": 1053478, + "weekDownloads": 212140, "size": 1764025, "latestRelease": "4.0.3", "latestReleaseDate": "2025-08-08T02:20:17.525Z" @@ -71531,7 +71615,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.171, "topicSearchString": "react-native ios android carousel reanimated infinite-scroll swiper web snap" }, { @@ -71609,8 +71693,8 @@ }, "npmPkg": "react-native-in-app-review", "npm": { - "downloads": 675329, - "weekDownloads": 134515, + "downloads": 651623, + "weekDownloads": 132685, "size": 60618, "latestRelease": "4.4.2", "latestReleaseDate": "2025-09-03T13:04:19.644Z" @@ -71621,7 +71705,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.173, "topicSearchString": "react-native review app-review in-app-review store-kit android ios app-store play-store app-gallery rate-your-app review-is-sent-to-the-play-store review-is-sent-to-the-app-store review-is-sent-to-the-app-gallery rating view react-component component in-app-comment review-api playstore appstore" }, { @@ -71680,8 +71764,8 @@ "configPlugin": false }, "npm": { - "downloads": 245, - "weekDownloads": 43, + "downloads": 261, + "weekDownloads": 36, "size": 38458, "latestRelease": "2.1.10", "latestReleaseDate": "2025-03-19T18:10:01.083Z" @@ -71692,7 +71776,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.632, "topicSearchString": "react react-native state-management hooks state-persistence shipt" }, { @@ -71754,8 +71838,8 @@ }, "npmPkg": "react-native-owl", "npm": { - "downloads": 1349, - "weekDownloads": 394, + "downloads": 1264, + "weekDownloads": 348, "size": 155902, "latestRelease": "1.5.0", "latestReleaseDate": "2025-01-14T19:34:19.293Z" @@ -71766,7 +71850,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.249, + "popularity": 0.234, "topicSearchString": "react-native ios android mobile visual-regression testing tooling react javscript typescript" }, { @@ -71822,8 +71906,8 @@ }, "npmPkg": "react-native-ticker", "npm": { - "downloads": 2460, - "weekDownloads": 382, + "downloads": 2394, + "weekDownloads": 380, "size": 14162, "latestRelease": "6.0.1", "latestReleaseDate": "2024-02-06T03:32:22.696Z" @@ -71834,12 +71918,13 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.132, + "popularity": 0.135, "topicSearchString": "react-native react ticker animated" }, { "githubUrl": "https://github.com/agencyenterprise/react-native-health", "ios": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/agencyenterprise/react-native-health", @@ -71891,8 +71976,8 @@ }, "npmPkg": "react-native-health", "npm": { - "downloads": 58977, - "weekDownloads": 10272, + "downloads": 57437, + "weekDownloads": 10214, "size": 552260, "latestRelease": "1.19.0", "latestReleaseDate": "2024-10-15T16:21:11.925Z" @@ -71905,7 +71990,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.151, "topicSearchString": "apple health-kit healthkit ios react-native react native apple-healthkit health fitness" }, { @@ -71970,8 +72055,8 @@ "unmaintained": true, "npmPkg": "react-native-interactable-reanimated", "npm": { - "downloads": 1577, - "weekDownloads": 338, + "downloads": 1554, + "weekDownloads": 322, "size": 129811, "latestRelease": "0.0.15", "latestReleaseDate": "2021-04-21T19:54:21.052Z" @@ -71981,7 +72066,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.568, + "popularity": -0.574, "topicSearchString": "reanimated interactable interactable-reanimated react native react-native" }, { @@ -72044,8 +72129,8 @@ "unmaintained": true, "npmPkg": "expo-video-player", "npm": { - "downloads": 11000, - "weekDownloads": 1668, + "downloads": 10760, + "weekDownloads": 1800, "size": 41869, "latestRelease": "2.2.0", "latestReleaseDate": "2022-09-29T19:32:53.919Z" @@ -72056,7 +72141,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.621, + "popularity": -0.608, "topicSearchString": "customizable expo player react-native video-player expo-video-player videoplayer expo-videoplayer video typescript" }, { @@ -72184,8 +72269,8 @@ "unmaintained": true, "npmPkg": "react-native-swipe-calendar", "npm": { - "downloads": 1119, - "weekDownloads": 247, + "downloads": 1078, + "weekDownloads": 259, "size": 219985, "latestRelease": "0.0.21", "latestReleaseDate": "2022-11-19T23:05:19.814Z" @@ -72195,7 +72280,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.562, + "popularity": -0.545, "topicSearchString": "react native infinite pager swipe calendar" }, { @@ -72257,8 +72342,8 @@ "unmaintained": true, "npmPkg": "react-native-pan-pinch-view", "npm": { - "downloads": 557, - "weekDownloads": 135, + "downloads": 537, + "weekDownloads": 157, "size": 66733, "latestRelease": "2.0.0", "latestReleaseDate": "2023-10-12T16:53:54.651Z" @@ -72268,7 +72353,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.294, + "popularity": -1.251, "topicSearchString": "react-native ios android component zoom" }, { @@ -72279,6 +72364,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/gobeyondidentity/bi-sdk-react-native", @@ -72329,8 +72415,8 @@ }, "unmaintained": true, "npm": { - "downloads": 111, - "weekDownloads": 18, + "downloads": 108, + "weekDownloads": 9, "size": 2437197, "latestRelease": "2.0.1", "latestReleaseDate": "2023-09-28T20:14:42.427Z" @@ -72340,7 +72426,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.612, + "popularity": -1.678, "topicSearchString": "react-native ios android oauth passkey passkeys passwordless authentication" }, { @@ -72402,7 +72488,7 @@ "npmPkg": "vision-camera-dynamsoft-barcode-reader", "npm": { "downloads": 523, - "weekDownloads": 93, + "weekDownloads": 94, "size": 77310, "latestRelease": "2.3.0", "latestReleaseDate": "2025-09-22T07:48:36.110Z" @@ -72412,7 +72498,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.597, "topicSearchString": "react-native ios android pdf417 barcode qr-code ean13 data-matrix" }, { @@ -72475,8 +72561,8 @@ }, "npmPkg": "react-native-lan-port-scanner", "npm": { - "downloads": 174, - "weekDownloads": 18, + "downloads": 170, + "weekDownloads": 21, "size": 57006, "latestRelease": "1.4.2", "latestReleaseDate": "2023-12-16T16:56:02.454Z" @@ -72486,7 +72572,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.66, + "popularity": -0.645, "topicSearchString": "react-native ios android lan scanner port lan-scan lan-scanner port-scanner wifi-scanner" }, { @@ -72550,8 +72636,8 @@ "unmaintained": true, "npmPkg": "react-native-animated-pagination-dot", "npm": { - "downloads": 10934, - "weekDownloads": 2266, + "downloads": 10626, + "weekDownloads": 2355, "size": 90946, "latestRelease": "0.4.0", "latestReleaseDate": "2022-09-15T13:52:56.667Z" @@ -72562,7 +72648,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.574, + "popularity": -0.562, "topicSearchString": "pagination dot react-native instagram scroll scrollable page paginate" }, { @@ -72618,8 +72704,8 @@ }, "npmPkg": "react-native-ad", "npm": { - "downloads": 130, - "weekDownloads": 14, + "downloads": 128, + "weekDownloads": 11, "size": 4186934, "latestRelease": "1.2.4", "latestReleaseDate": "2021-10-26T16:31:37.137Z" @@ -72629,7 +72715,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.657, + "popularity": -0.677, "topicSearchString": "react-native ads gromore ad" }, { @@ -72684,8 +72770,8 @@ }, "unmaintained": true, "npm": { - "downloads": 181, - "weekDownloads": 24, + "downloads": 238, + "weekDownloads": 25, "size": 281570979, "latestRelease": "1.0.0-beta.4", "latestReleaseDate": "2022-02-05T20:52:22.954Z" @@ -72695,7 +72781,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.386, + "popularity": -1.411, "topicSearchString": "material-you material-design react-native personalization" }, { @@ -72721,10 +72807,10 @@ "updatedAt": "2025-10-17T18:15:17Z", "createdAt": "2021-12-14T16:53:48Z", "pushedAt": "2025-10-17T18:15:17Z", - "forks": 393, - "issues": 16, + "forks": 394, + "issues": 15, "subscribers": 8, - "stars": 1580, + "stars": 1582, "dependencies": 7 }, "name": "@clerk/clerk-expo", @@ -72755,8 +72841,8 @@ "configPlugin": false }, "npm": { - "downloads": 268527, - "weekDownloads": 35625, + "downloads": 272908, + "weekDownloads": 36093, "size": 351246, "latestRelease": "2.17.0", "latestReleaseDate": "2025-10-17T18:18:49.238Z" @@ -72768,7 +72854,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.113, + "popularity": 0.112, "topicSearchString": "react react-native expo auth authentication passwordless session jwt" }, { @@ -72828,7 +72914,7 @@ "npmPkg": "react-native-hashing", "npm": { "downloads": 25, - "weekDownloads": 3, + "weekDownloads": 4, "size": 216882, "latestRelease": "0.1.5", "latestReleaseDate": "2022-03-26T17:25:02.091Z" @@ -72838,7 +72924,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.63, + "popularity": -1.59, "topicSearchString": "react-native ios android hashing jsi cpp javascript react typescript" }, { @@ -72868,7 +72954,7 @@ "forks": 21, "issues": 3, "subscribers": 4, - "stars": 240, + "stars": 241, "dependencies": 0 }, "name": "react-icomoon", @@ -72901,8 +72987,8 @@ }, "npmPkg": "react-icomoon", "npm": { - "downloads": 116418, - "weekDownloads": 21920, + "downloads": 113347, + "weekDownloads": 23567, "size": 92411, "latestRelease": "2.6.1", "latestReleaseDate": "2025-02-04T05:33:07.040Z" @@ -72913,7 +72999,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.177, "topicSearchString": "react react-native icomoon svg icon icons reactjs svg-icons hacktoberfest" }, { @@ -72980,7 +73066,7 @@ "npmPkg": "react-native-chatty", "npm": { "downloads": 5124, - "weekDownloads": 4, + "weekDownloads": 3, "size": 725887, "latestRelease": "0.4.3", "latestReleaseDate": "2022-04-20T17:39:25.101Z" @@ -72990,7 +73076,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.749, + "popularity": -0.75, "topicSearchString": "react-native ios android javascript react web chat chat-ui expo" }, { @@ -73045,8 +73131,8 @@ }, "unmaintained": true, "npm": { - "downloads": 139, - "weekDownloads": 10, + "downloads": 145, + "weekDownloads": 8, "size": 36562, "latestRelease": "0.1.2", "latestReleaseDate": "2022-03-11T18:58:40.482Z" @@ -73056,7 +73142,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.688, + "popularity": -1.703, "topicSearchString": "react-native react-native gauge" }, { @@ -73119,8 +73205,8 @@ "unmaintained": true, "npmPkg": "react-native-insta-story", "npm": { - "downloads": 3174, - "weekDownloads": 602, + "downloads": 3123, + "weekDownloads": 666, "size": 71597, "latestRelease": "1.1.9", "latestReleaseDate": "2023-04-21T02:00:47.076Z" @@ -73131,7 +73217,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, + "popularity": -0.569, "topicSearchString": "react-native insta-story story instagram ios android" }, { @@ -73195,8 +73281,8 @@ "unmaintained": true, "npmPkg": "react-native-section-alphabet-list", "npm": { - "downloads": 23083, - "weekDownloads": 4133, + "downloads": 22286, + "weekDownloads": 3919, "size": 25645, "latestRelease": "3.0.0", "latestReleaseDate": "2022-11-24T20:50:59.533Z" @@ -73207,7 +73293,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, + "popularity": -0.601, "topicSearchString": "react-native alphabet sectionlist letters address addressbook custom" }, { @@ -73271,8 +73357,8 @@ "unmaintained": true, "npmPkg": "react-native-skeleton-content", "npm": { - "downloads": 8260, - "weekDownloads": 1079, + "downloads": 8021, + "weekDownloads": 1160, "size": 42964, "latestRelease": "1.0.28", "latestReleaseDate": "2022-10-04T07:22:35.066Z" @@ -73283,7 +73369,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.639, + "popularity": -0.627, "topicSearchString": "react-native skeleton loader placeholders gradient animation component" }, { @@ -73345,8 +73431,8 @@ "unmaintained": true, "npmPkg": "react-native-skeleton-content-nonexpo", "npm": { - "downloads": 3170, - "weekDownloads": 612, + "downloads": 3057, + "weekDownloads": 649, "size": 42316, "latestRelease": "1.0.13", "latestReleaseDate": "2021-05-22T10:24:43.879Z" @@ -73357,7 +73443,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.569, "topicSearchString": "node npm react-native component loader animation skeleton" }, { @@ -73421,8 +73507,8 @@ "unmaintained": true, "npmPkg": "react-native-share-menu", "npm": { - "downloads": 10751, - "weekDownloads": 1561, + "downloads": 10573, + "weekDownloads": 1687, "size": 62433, "latestRelease": "6.0.0", "latestReleaseDate": "2022-05-12T20:35:00.093Z" @@ -73435,7 +73521,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.627, + "popularity": -0.614, "topicSearchString": "react-component react-native android ios share share-extension custom-view share-intent" }, { @@ -73487,8 +73573,8 @@ }, "npmPkg": "react-native-colo-loco", "npm": { - "downloads": 210, - "weekDownloads": 35, + "downloads": 209, + "weekDownloads": 34, "size": 40769, "latestRelease": "1.3.0", "latestReleaseDate": "2023-11-15T17:03:17.509Z" @@ -73499,7 +73585,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, + "popularity": -0.611, "topicSearchString": "react-native ios android" }, { @@ -73552,8 +73638,8 @@ "unmaintained": true, "npmPkg": "react-native-url-router", "npm": { - "downloads": 138, - "weekDownloads": 14, + "downloads": 134, + "weekDownloads": 11, "size": 63032, "latestRelease": "0.2.2", "latestReleaseDate": "2023-01-04T16:09:43.221Z" @@ -73563,7 +73649,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.413, + "popularity": -1.429, "topicSearchString": "" }, { @@ -73774,8 +73860,8 @@ }, "npmPkg": "react-native-media-console", "npm": { - "downloads": 30203, - "weekDownloads": 5320, + "downloads": 28932, + "weekDownloads": 5357, "size": 1368036, "latestRelease": "2.2.4", "latestReleaseDate": "2024-06-02T10:05:33.734Z" @@ -73786,7 +73872,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.157, "topicSearchString": "react-native video react-video-controls react-video-player react video-controls video-player community tvos media-player" }, { @@ -73844,7 +73930,7 @@ "unmaintained": true, "npmPkg": "rn-status-bar", "npm": { - "downloads": 11, + "downloads": 12, "weekDownloads": 0, "size": 84475, "latestRelease": "0.1.6", @@ -73914,8 +74000,8 @@ "unmaintained": true, "npmPkg": "react-native-virtual-keyboard", "npm": { - "downloads": 1472, - "weekDownloads": 173, + "downloads": 1427, + "weekDownloads": 180, "size": 7758, "latestRelease": "1.2.3", "latestReleaseDate": "2023-07-26T15:27:17.519Z" @@ -73925,7 +74011,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.65, + "popularity": -0.643, "topicSearchString": "keyboard react react-native" }, { @@ -73980,8 +74066,8 @@ }, "npmPkg": "react-native-record-screen", "npm": { - "downloads": 2591, - "weekDownloads": 283, + "downloads": 2494, + "weekDownloads": 235, "size": 69149, "latestRelease": "0.6.2", "latestReleaseDate": "2024-04-18T10:44:17.457Z" @@ -73992,7 +74078,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.093, + "popularity": 0.08, "topicSearchString": "react-native ios android" }, { @@ -74047,8 +74133,8 @@ "unmaintained": true, "npmPkg": "react-native-tags", "npm": { - "downloads": 3176, - "weekDownloads": 502, + "downloads": 3143, + "weekDownloads": 538, "size": 12484, "latestRelease": "2.2.1", "latestReleaseDate": "2021-10-28T16:40:41.531Z" @@ -74059,7 +74145,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.616, + "popularity": -0.604, "topicSearchString": "react-native tags tag-input" }, { @@ -74121,8 +74207,8 @@ "configPlugin": false }, "npm": { - "downloads": 4898, - "weekDownloads": 1074, + "downloads": 4785, + "weekDownloads": 1060, "size": 15225, "latestRelease": "1.0.2", "latestReleaseDate": "2020-11-09T13:50:54.003Z" @@ -74132,7 +74218,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.564, + "popularity": -0.562, "topicSearchString": "react-native react visibility visbility-sensor viewport" }, { @@ -74190,8 +74276,8 @@ "configPlugin": false }, "npm": { - "downloads": 121, - "weekDownloads": 29, + "downloads": 119, + "weekDownloads": 24, "size": 116231, "latestRelease": "0.1.7", "latestReleaseDate": "2024-09-21T17:31:01.632Z" @@ -74201,7 +74287,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.543, + "popularity": -0.579, "topicSearchString": "react-native ios android" }, { @@ -74261,8 +74347,8 @@ "unmaintained": true, "npmPkg": "react-native-flex-layout", "npm": { - "downloads": 21169, - "weekDownloads": 3435, + "downloads": 20504, + "weekDownloads": 3502, "size": 181167, "latestRelease": "0.1.5", "latestReleaseDate": "2022-03-03T15:09:07.887Z" @@ -74272,7 +74358,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, + "popularity": -0.605, "topicSearchString": "react-native ios android flexbox layout" }, { @@ -74331,8 +74417,8 @@ }, "npmPkg": "react-native-tableview-list", "npm": { - "downloads": 166, - "weekDownloads": 1, + "downloads": 167, + "weekDownloads": 0, "size": 168653, "latestRelease": "0.1.17", "latestReleaseDate": "2024-09-26T17:09:07.010Z" @@ -74342,7 +74428,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.745, + "popularity": -1, "topicSearchString": "react-native ios android" }, { @@ -74366,9 +74452,9 @@ "createdAt": "2017-06-02T09:44:41Z", "pushedAt": "2025-01-24T18:09:33Z", "forks": 252, - "issues": 30, + "issues": 29, "subscribers": 16, - "stars": 2106, + "stars": 2107, "dependencies": 0 }, "name": "@notifee/react-native", @@ -74402,8 +74488,8 @@ "configPlugin": false }, "npm": { - "downloads": 963536, - "weekDownloads": 197392, + "downloads": 930508, + "weekDownloads": 196697, "size": 919380, "latestRelease": "9.1.8", "latestReleaseDate": "2024-12-20T01:36:19.738Z" @@ -74415,7 +74501,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.18, "topicSearchString": "react react-native scheduling channels android ios firebase fcm notifee notifications onesignal" }, { @@ -74439,7 +74525,7 @@ "forks": 669, "issues": 2, "subscribers": 325, - "stars": 3319, + "stars": 3320, "dependencies": 0 }, "name": "react-native-notifications", @@ -74475,8 +74561,8 @@ "unmaintained": true, "npmPkg": "react-native-notifications", "npm": { - "downloads": 134475, - "weekDownloads": 25964, + "downloads": 130658, + "weekDownloads": 25777, "size": 2758655, "latestRelease": "5.1.0", "latestReleaseDate": "2023-09-14T07:17:44.264Z" @@ -74489,7 +74575,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.582, "topicSearchString": "react-component react-native ios push-notifications notifications notification pushkit push-kit actionable-notifications interactive-notifications" }, { @@ -74615,8 +74701,8 @@ "configPlugin": false }, "npm": { - "downloads": 184, - "weekDownloads": 2, + "downloads": 195, + "weekDownloads": 3, "size": 44909, "latestRelease": "2.0.2", "latestReleaseDate": "2025-10-10T23:45:14.019Z" @@ -74626,7 +74712,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.991, + "popularity": -0.987, "topicSearchString": "react react-native auth authentication" }, { @@ -74687,8 +74773,8 @@ "unmaintained": true, "npmPkg": "react-native-wheely", "npm": { - "downloads": 53006, - "weekDownloads": 10014, + "downloads": 51410, + "weekDownloads": 10763, "size": 20511, "latestRelease": "0.6.0", "latestReleaseDate": "2022-11-13T15:28:28.324Z" @@ -74699,7 +74785,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, + "popularity": -0.572, "topicSearchString": "react react-native wheel-picker wheel picker wheely" }, { @@ -74718,11 +74804,11 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-02-22T11:47:35Z", + "updatedAt": "2025-10-20T16:49:14Z", "createdAt": "2020-05-04T19:18:35Z", - "pushedAt": "2025-02-22T11:47:35Z", + "pushedAt": "2025-10-20T16:49:14Z", "forks": 29, - "issues": 2, + "issues": 1, "subscribers": 2, "stars": 66, "dependencies": 0 @@ -74757,19 +74843,19 @@ }, "npmPkg": "react-native-launch-arguments", "npm": { - "downloads": 605814, - "weekDownloads": 135206, - "size": 30750, - "latestRelease": "4.1.0", - "latestReleaseDate": "2025-02-22T11:50:49.412Z" + "downloads": 582981, + "weekDownloads": 135682, + "size": 30756, + "latestRelease": "4.1.1", + "latestReleaseDate": "2025-10-20T16:49:29.729Z" }, - "score": 41, + "score": 57, "matchingScoreModifiers": [ "Known", - "Not updated recently", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.19, + "popularity": 0.198, "topicSearchString": "react native react-native launch arguments detox testing appium maestro" }, { @@ -74833,8 +74919,8 @@ }, "npmPkg": "react-native-animated-numbers", "npm": { - "downloads": 16489, - "weekDownloads": 2950, + "downloads": 16007, + "weekDownloads": 3146, "size": 44605, "latestRelease": "0.6.3", "latestReleaseDate": "2024-11-15T04:57:21.111Z" @@ -74845,7 +74931,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.167, "topicSearchString": "react-native component react-component ios android react animation text number animated numbers" }, { @@ -74901,8 +74987,8 @@ "unmaintained": true, "npmPkg": "react-native-switch-selector", "npm": { - "downloads": 32262, - "weekDownloads": 5881, + "downloads": 31135, + "weekDownloads": 5659, "size": 234161, "latestRelease": "2.3.0", "latestReleaseDate": "2022-12-02T13:51:09.318Z" @@ -74922,6 +75008,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/ammarahm-ed/react-native-admob-native-ads", @@ -74980,8 +75067,8 @@ }, "npmPkg": "react-native-admob-native-ads", "npm": { - "downloads": 3621, - "weekDownloads": 468, + "downloads": 3570, + "weekDownloads": 542, "size": 757247, "latestRelease": "0.7.6", "latestReleaseDate": "2024-08-29T10:31:33.272Z" @@ -74992,7 +75079,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.11, + "popularity": 0.129, "topicSearchString": "android ios react-native admob native-ads admob-native-ads admob-ads google-admob react native advanced ads native-advanced-ads admob-native-advanced-ads objective-c java" }, { @@ -75024,7 +75111,7 @@ "forks": 123, "issues": 30, "subscribers": 17, - "stars": 2336, + "stars": 2341, "dependencies": 0 }, "name": "react-native-graph", @@ -75068,8 +75155,8 @@ }, "npmPkg": "react-native-graph", "npm": { - "downloads": 29528, - "weekDownloads": 5573, + "downloads": 28753, + "weekDownloads": 5338, "size": 264119, "latestRelease": "1.1.0", "latestReleaseDate": "2024-03-12T12:21:31.205Z" @@ -75081,7 +75168,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.158, "topicSearchString": "react-native ios android react svg chart charts library performance crypto graph animation graphs stock beautiful wallet animated skia linegraph" }, { @@ -75109,7 +75196,7 @@ "forks": 16, "issues": 9, "subscribers": 8, - "stars": 369, + "stars": 370, "dependencies": 1 }, "name": "react-native-bignumber", @@ -75151,8 +75238,8 @@ }, "npmPkg": "react-native-bignumber", "npm": { - "downloads": 665, - "weekDownloads": 175, + "downloads": 632, + "weekDownloads": 173, "size": 352235, "latestRelease": "0.3.0", "latestReleaseDate": "2025-07-21T11:09:31.601Z" @@ -75162,7 +75249,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.526, + "popularity": -0.516, "topicSearchString": "react-native ios android jsi crypto c++ fast web3 number bignumber bn big math library react native wallet" }, { @@ -75217,8 +75304,8 @@ "unmaintained": true, "npmPkg": "react-native-select-contact", "npm": { - "downloads": 38095, - "weekDownloads": 7309, + "downloads": 37728, + "weekDownloads": 7847, "size": 182975, "latestRelease": "1.6.3", "latestReleaseDate": "2021-06-04T16:00:42.223Z" @@ -75229,7 +75316,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.573, "topicSearchString": "react react-native contacts address-book people select-contact" }, { @@ -75279,8 +75366,8 @@ "unmaintained": true, "npmPkg": "react-native-shared-group-preferences", "npm": { - "downloads": 33512, - "weekDownloads": 5691, + "downloads": 32573, + "weekDownloads": 5770, "size": 36840, "latestRelease": "1.1.24", "latestReleaseDate": "2023-09-18T15:52:57.494Z" @@ -75291,7 +75378,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, + "popularity": -0.599, "topicSearchString": "react-native" }, { @@ -75353,8 +75440,8 @@ "configPlugin": false }, "npm": { - "downloads": 955, - "weekDownloads": 251, + "downloads": 937, + "weekDownloads": 234, "size": 62417, "latestRelease": "2.0.0", "latestReleaseDate": "2025-03-10T18:40:03.773Z" @@ -75364,7 +75451,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.526, + "popularity": -0.537, "topicSearchString": "react react-native ios android segmented-arc arc segmented-gauge" }, { @@ -75438,8 +75525,8 @@ "unmaintained": true, "npmPkg": "react-native-actions-sheet-picker", "npm": { - "downloads": 343, - "weekDownloads": 49, + "downloads": 335, + "weekDownloads": 55, "size": 54672, "latestRelease": "0.3.5", "latestReleaseDate": "2022-08-11T08:52:53.342Z" @@ -75449,7 +75536,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.377, + "popularity": -1.359, "topicSearchString": "react-native ios android select searchable-select picker dropdown modal selector selectbox searchable option actions-sheet actionsheet filterable react javascript" }, { @@ -75481,7 +75568,7 @@ "forks": 43, "issues": 21, "subscribers": 3, - "stars": 151, + "stars": 152, "dependencies": 0 }, "name": "react-native-leaflet-view", @@ -75510,8 +75597,8 @@ "configPlugin": false }, "npm": { - "downloads": 4606, - "weekDownloads": 1019, + "downloads": 4508, + "weekDownloads": 1035, "size": 517438, "latestRelease": "1.1.2", "latestReleaseDate": "2025-06-02T15:39:53.882Z" @@ -75521,7 +75608,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.188, + "popularity": 0.195, "topicSearchString": "react-native ios android leaflet leaflet-map" }, { @@ -75546,13 +75633,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-14T11:04:31Z", + "updatedAt": "2025-10-20T11:58:48Z", "createdAt": "2022-04-17T18:00:04Z", - "pushedAt": "2025-10-14T11:04:31Z", + "pushedAt": "2025-10-20T11:58:48Z", "forks": 123, "issues": 60, "subscribers": 14, - "stars": 2928, + "stars": 2932, "dependencies": 1 }, "name": "react-native-keyboard-controller", @@ -75599,11 +75686,11 @@ }, "npmPkg": "react-native-keyboard-controller", "npm": { - "downloads": 1446550, - "weekDownloads": 273884, - "size": 1105086, - "latestRelease": "1.19.1", - "latestReleaseDate": "2025-10-14T11:10:53.199Z" + "downloads": 1409700, + "weekDownloads": 279321, + "size": 1105230, + "latestRelease": "1.19.2", + "latestReleaseDate": "2025-10-20T12:02:07.093Z" }, "score": 73, "matchingScoreModifiers": [ @@ -75612,7 +75699,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.168, "topicSearchString": "react-native keyboard interactive dismiss animation focused-input text-changed selection-changed avoiding-view avoid-keyboard sticky-view over-keyboard-view keyboard-background-view keyboard-aware-scroll-view keyboard-toolbar keyboard-done-button keyboard-next-button keyboard-previous-button extend-keyboard ios android" }, { @@ -75671,8 +75758,8 @@ "unmaintained": true, "npmPkg": "react-native-quick-websql", "npm": { - "downloads": 364, - "weekDownloads": 52, + "downloads": 362, + "weekDownloads": 42, "size": 42762, "latestRelease": "0.3.0", "latestReleaseDate": "2023-01-17T06:12:43.872Z" @@ -75682,7 +75769,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.378, + "popularity": -1.401, "topicSearchString": "react-native ios android sqlite jsi typescript" }, { @@ -75742,8 +75829,8 @@ }, "npmPkg": "react-native-notificated", "npm": { - "downloads": 4637, - "weekDownloads": 626, + "downloads": 4587, + "weekDownloads": 682, "size": 591251, "latestRelease": "0.1.7", "latestReleaseDate": "2024-10-14T14:46:58.189Z" @@ -75754,7 +75841,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.115, + "popularity": 0.126, "topicSearchString": "react-native ios android push-notifications notifications toast toast-notifications notification" }, { @@ -75812,8 +75899,8 @@ "unmaintained": true, "npmPkg": "react-native-esbuild", "npm": { - "downloads": 238, - "weekDownloads": 5, + "downloads": 236, + "weekDownloads": 4, "size": 52997, "latestRelease": "0.6.0", "latestReleaseDate": "2023-07-11T07:12:43.301Z" @@ -75824,7 +75911,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.482, + "popularity": -1.485, "topicSearchString": "react-native esbuild dev-server development bundler" }, { @@ -75881,7 +75968,7 @@ "unmaintained": true, "npmPkg": "cross-local-storage", "npm": { - "downloads": 35, + "downloads": 36, "weekDownloads": 0, "size": 1795929, "latestRelease": "0.0.5", @@ -75952,8 +76039,8 @@ }, "npmPkg": "rn-card-scanner", "npm": { - "downloads": 4739, - "weekDownloads": 1544, + "downloads": 4520, + "weekDownloads": 1505, "size": 137603552, "latestRelease": "1.1.2", "latestReleaseDate": "2024-03-13T05:08:49.979Z" @@ -75963,7 +76050,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.277, + "popularity": 0.283, "topicSearchString": "react-native ios android card-scanner" }, { @@ -76021,7 +76108,7 @@ "unmaintained": true, "npmPkg": "react-native-cupertino-list", "npm": { - "downloads": 110, + "downloads": 111, "weekDownloads": 3, "size": 16359, "latestRelease": "0.0.8", @@ -76032,7 +76119,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.726, + "popularity": -1.727, "topicSearchString": "cupertino react-native component" }, { @@ -76089,8 +76176,8 @@ }, "npmPkg": "react-native-infinite-pager", "npm": { - "downloads": 11571, - "weekDownloads": 2151, + "downloads": 11415, + "weekDownloads": 2260, "size": 194270, "latestRelease": "0.3.18", "latestReleaseDate": "2024-08-17T00:25:09.282Z" @@ -76101,7 +76188,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.168, "topicSearchString": "react native infinite pager swipe slideshow" }, { @@ -76126,7 +76213,7 @@ "updatedAt": "2024-06-01T03:32:10Z", "createdAt": "2022-06-11T18:11:47Z", "pushedAt": "2024-06-01T03:32:10Z", - "forks": 23, + "forks": 24, "issues": 20, "subscribers": 3, "stars": 457, @@ -76156,8 +76243,8 @@ "configPlugin": false }, "npm": { - "downloads": 42879, - "weekDownloads": 7172, + "downloads": 41695, + "weekDownloads": 6841, "size": 64815, "latestRelease": "0.3.2", "latestReleaseDate": "2024-06-01T03:32:08.143Z" @@ -76168,7 +76255,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.139, "topicSearchString": "react-native react-navigation bottom-sheet" }, { @@ -76234,8 +76321,8 @@ "unmaintained": true, "npmPkg": "react-native-picky", "npm": { - "downloads": 650, - "weekDownloads": 136, + "downloads": 620, + "weekDownloads": 119, "size": 97781, "latestRelease": "0.4.0", "latestReleaseDate": "2022-07-16T06:06:24.860Z" @@ -76245,7 +76332,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.321, + "popularity": -1.336, "topicSearchString": "react-native ios android picker wheel react typescript wheelpicker" }, { @@ -76308,8 +76395,8 @@ }, "npmPkg": "react-native-place-picker", "npm": { - "downloads": 994, - "weekDownloads": 172, + "downloads": 1002, + "weekDownloads": 156, "size": 93346, "latestRelease": "3.0.8", "latestReleaseDate": "2024-09-22T11:22:54.350Z" @@ -76319,7 +76406,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": 0.133, "topicSearchString": "react-native expo place-picker reactnativeplacepicker android ios kotlin react reactjs swift typescript" }, { @@ -76347,8 +76434,8 @@ "pushedAt": "2024-04-10T19:41:42Z", "forks": 51, "issues": 15, - "subscribers": 231, - "stars": 983, + "subscribers": 230, + "stars": 984, "dependencies": 0 }, "name": "@shopify/react-native-performance", @@ -76372,8 +76459,8 @@ "configPlugin": false }, "npm": { - "downloads": 24745, - "weekDownloads": 6701, + "downloads": 22167, + "weekDownloads": 5252, "size": 881469, "latestRelease": "4.1.2", "latestReleaseDate": "2022-08-30T08:03:01.929Z" @@ -76385,12 +76472,13 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.23, + "popularity": 0.201, "topicSearchString": "react-native" }, { "githubUrl": "https://github.com/bndkt/react-native-app-clip", "expoGo": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/bndkt/react-native-app-clip", @@ -76438,8 +76526,8 @@ }, "npmPkg": "react-native-app-clip", "npm": { - "downloads": 33458, - "weekDownloads": 6394, + "downloads": 32372, + "weekDownloads": 6685, "size": 68597, "latestRelease": "0.6.1", "latestReleaseDate": "2025-05-12T16:32:11.452Z" @@ -76449,7 +76537,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.176, "topicSearchString": "react-native expo app-clip reactnativeappclip ios" }, { @@ -76506,8 +76594,8 @@ "unmaintained": true, "npmPkg": "react-native-compressed-jsbundle", "npm": { - "downloads": 417, - "weekDownloads": 80, + "downloads": 408, + "weekDownloads": 83, "size": 2151590, "latestRelease": "0.1.2", "latestReleaseDate": "2021-09-20T10:31:10.297Z" @@ -76517,7 +76605,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.337, + "popularity": -1.327, "topicSearchString": "react-native ios android brotli compression" }, { @@ -76578,8 +76666,8 @@ }, "npmPkg": "react-native-get-random-values", "npm": { - "downloads": 5300851, - "weekDownloads": 1015693, + "downloads": 5149113, + "weekDownloads": 1049032, "size": 20018, "latestRelease": "1.11.0", "latestReleaseDate": "2024-03-06T17:25:12.791Z" @@ -76592,7 +76680,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.173, "topicSearchString": "crypto.getrandomvalues crypto get-random-values getrandomvalues polyfill react-native webcrypto rng random javascript hacktoberfest" }, { @@ -76619,13 +76707,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-18T08:20:05Z", + "updatedAt": "2025-10-20T16:37:23Z", "createdAt": "2021-11-08T13:19:09Z", - "pushedAt": "2025-10-18T08:20:05Z", + "pushedAt": "2025-10-20T16:37:23Z", "forks": 521, "issues": 75, - "subscribers": 272, - "stars": 7890, + "subscribers": 271, + "stars": 7893, "dependencies": 2 }, "name": "@shopify/react-native-skia", @@ -76650,11 +76738,11 @@ "moduleType": "turbo" }, "npm": { - "downloads": 1244716, - "weekDownloads": 232438, - "size": 9254220, - "latestRelease": "2.3.4", - "latestReleaseDate": "2025-10-18T08:25:08.163Z" + "downloads": 1217461, + "weekDownloads": 237988, + "size": 9253651, + "latestRelease": "2.3.5", + "latestReleaseDate": "2025-10-20T11:47:02.112Z" }, "score": 89, "matchingScoreModifiers": [ @@ -76664,7 +76752,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.159, + "popularity": 0.166, "topicSearchString": "react-native" }, { @@ -76693,10 +76781,10 @@ "updatedAt": "2025-09-25T16:26:48Z", "createdAt": "2021-12-20T15:48:14Z", "pushedAt": "2025-09-25T16:26:48Z", - "forks": 307, - "issues": 54, - "subscribers": 249, - "stars": 6703, + "forks": 309, + "issues": 55, + "subscribers": 247, + "stars": 6706, "dependencies": 0 }, "name": "@shopify/flash-list", @@ -76729,8 +76817,8 @@ "configPlugin": false }, "npm": { - "downloads": 2300807, - "weekDownloads": 457345, + "downloads": 2236917, + "weekDownloads": 461770, "size": 804730, "latestRelease": "2.1.0", "latestReleaseDate": "2025-09-25T16:30:34.501Z" @@ -76743,7 +76831,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.175, "topicSearchString": "react-native recyclerview listview flatlist-alternative flatlist recyclerlistview 60fps cross-platform web performance" }, { @@ -76771,7 +76859,7 @@ "forks": 37, "issues": 11, "subscribers": 20, - "stars": 1390, + "stars": 1391, "dependencies": 5 }, "name": "reassure", @@ -76798,8 +76886,8 @@ }, "npmPkg": "reassure", "npm": { - "downloads": 472971, - "weekDownloads": 101608, + "downloads": 456769, + "weekDownloads": 99933, "size": 30430, "latestRelease": "1.4.0", "latestReleaseDate": "2025-03-12T09:59:52.922Z" @@ -76811,7 +76899,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.183, + "popularity": 0.186, "topicSearchString": "react-native ios android" }, { @@ -76891,9 +76979,9 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-17T16:38:00Z", + "updatedAt": "2025-10-20T12:45:03Z", "createdAt": "2020-04-24T16:50:07Z", - "pushedAt": "2025-10-17T16:38:00Z", + "pushedAt": "2025-10-20T12:45:03Z", "forks": 27, "issues": 25, "subscribers": 1, @@ -77029,10 +77117,10 @@ "updatedAt": "2025-09-17T18:59:28Z", "createdAt": "2021-07-30T13:10:45Z", "pushedAt": "2025-09-17T18:59:28Z", - "forks": 180, + "forks": 181, "issues": 101, "subscribers": 6, - "stars": 1145, + "stars": 1146, "dependencies": 1 }, "name": "react-native-gifted-charts", @@ -77078,8 +77166,8 @@ }, "npmPkg": "react-native-gifted-charts", "npm": { - "downloads": 291046, - "weekDownloads": 57742, + "downloads": 285430, + "weekDownloads": 59091, "size": 343207, "latestRelease": "1.4.64", "latestReleaseDate": "2025-08-26T19:58:16.835Z" @@ -77091,7 +77179,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.176, "topicSearchString": "chart charts graph data-visualization bar pie donut area line radar star population pyramid react react-native barchart piechart line-charts pie-chart donut-chart area-chart" }, { @@ -77154,7 +77242,7 @@ }, "npmPkg": "rxn-input", "npm": { - "downloads": 22, + "downloads": 23, "weekDownloads": 20, "size": 100091, "latestRelease": "0.0.1", @@ -77227,8 +77315,8 @@ }, "npmPkg": "rn-perfect-sketch-canvas", "npm": { - "downloads": 502, - "weekDownloads": 86, + "downloads": 472, + "weekDownloads": 85, "size": 80063, "latestRelease": "0.3.0", "latestReleaseDate": "2022-08-03T22:01:13.102Z" @@ -77238,7 +77326,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, + "popularity": -0.597, "topicSearchString": "react-native ios android sketch canvas skia react" }, { @@ -77295,7 +77383,7 @@ "unmaintained": true, "npmPkg": "rn-skia-sketch-canvas", "npm": { - "downloads": 10, + "downloads": 11, "weekDownloads": 0, "size": 57576, "latestRelease": "0.3.1", @@ -77364,7 +77452,7 @@ "unmaintained": true, "npm": { "downloads": 210, - "weekDownloads": 14, + "weekDownloads": 13, "size": 911621, "latestRelease": "1.1.2", "latestReleaseDate": "2023-06-06T17:49:16.736Z" @@ -77375,7 +77463,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.443, + "popularity": -1.447, "topicSearchString": "react react-native styling tailwind-css" }, { @@ -77442,7 +77530,7 @@ }, "npmPkg": "react-native-react-bridge", "npm": { - "downloads": 5748, + "downloads": 5635, "weekDownloads": 1033, "size": 52187, "latestRelease": "0.12.4", @@ -77453,7 +77541,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.156, "topicSearchString": "react react-native expo react-dom preact web metro webview html react-hooks webassembly" }, { @@ -77543,8 +77631,8 @@ }, "npmPkg": "reanimated-color-picker", "npm": { - "downloads": 133581, - "weekDownloads": 28039, + "downloads": 129636, + "weekDownloads": 28201, "size": 3713380, "latestRelease": "4.1.1", "latestReleaseDate": "2025-09-11T10:27:28.162Z" @@ -77554,7 +77642,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.185, "topicSearchString": "react-native color-picker expo android ios web reanimated color picker wheel slider swatches palette rgb hex hsl hsv hwb colorkit renimated" }, { @@ -77621,7 +77709,7 @@ }, "npmPkg": "react-native-material-you-colors", "npm": { - "downloads": 185, + "downloads": 178, "weekDownloads": 34, "size": 440753, "latestRelease": "0.1.2", @@ -77631,7 +77719,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.584, "topicSearchString": "web react-native palette material-you material-design ios dynamic-color colors android expo palette-generation" }, { @@ -77695,8 +77783,8 @@ "configPlugin": false }, "npm": { - "downloads": 39779, - "weekDownloads": 8093, + "downloads": 38213, + "weekDownloads": 7830, "size": 331001, "latestRelease": "0.9.5", "latestReleaseDate": "2024-04-25T15:20:35.662Z" @@ -77706,7 +77794,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.174, "topicSearchString": "react-native web maps maps ios android" }, { @@ -77782,8 +77870,8 @@ "configPlugin": false }, "npm": { - "downloads": 179592, - "weekDownloads": 31878, + "downloads": 174673, + "weekDownloads": 32999, "size": 205566, "latestRelease": "4.3.0", "latestReleaseDate": "2024-12-20T13:22:58.902Z" @@ -77794,7 +77882,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.161, "topicSearchString": "photo image picture zoom pinch pan reanimated gesture instagram react react-native image-zoom zoom-image zoomable-image zoomable javascript ui-lib rn likashefqet likashefi" }, { @@ -77803,6 +77891,7 @@ "https://github.com/barthap/expo-music-picker/tree/main/example" ], "expoGo": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/barthap/expo-music-picker", @@ -77856,8 +77945,8 @@ "unmaintained": true, "npmPkg": "expo-music-picker", "npm": { - "downloads": 101, - "weekDownloads": 16, + "downloads": 98, + "weekDownloads": 10, "size": 71006, "latestRelease": "0.1.1", "latestReleaseDate": "2022-07-14T12:21:54.392Z" @@ -77867,7 +77956,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.361, + "popularity": -1.413, "topicSearchString": "react-native expo expo-music-picker music picker music-picker expomusicpicker android ios music-metadata" }, { @@ -77892,7 +77981,7 @@ "forks": 62, "issues": 22, "subscribers": 10, - "stars": 358, + "stars": 359, "dependencies": 0 }, "name": "@ovalmoney/react-native-fitness", @@ -77925,8 +78014,8 @@ }, "unmaintained": true, "npm": { - "downloads": 591, - "weekDownloads": 127, + "downloads": 743, + "weekDownloads": 139, "size": 197655, "latestRelease": "0.5.3", "latestReleaseDate": "2021-04-19T16:27:44.896Z" @@ -77937,7 +78026,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.317, + "popularity": -1.34, "topicSearchString": "react native react-native health-kit google-fit fitness android ios apple-health" }, { @@ -77999,8 +78088,8 @@ }, "npmPkg": "react-native-outside-press", "npm": { - "downloads": 55639, - "weekDownloads": 9855, + "downloads": 53750, + "weekDownloads": 10749, "size": 50287, "latestRelease": "1.2.2", "latestReleaseDate": "2024-01-02T04:41:39.274Z" @@ -78010,7 +78099,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.17, "topicSearchString": "react-native ios android expo react macos web windows reactjs" }, { @@ -78021,6 +78110,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/WebsiteBeaver/react-native-document-scanner-plugin", @@ -78068,8 +78158,8 @@ }, "npmPkg": "react-native-document-scanner-plugin", "npm": { - "downloads": 81071, - "weekDownloads": 14503, + "downloads": 78606, + "weekDownloads": 15404, "size": 53842, "latestRelease": "2.0.2", "latestReleaseDate": "2025-09-29T22:38:03.550Z" @@ -78080,7 +78170,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.167, "topicSearchString": "react-native ios android document-scanner" }, { @@ -78102,9 +78192,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-26T18:33:25Z", + "updatedAt": "2025-08-26T02:49:33Z", "createdAt": "2018-06-03T10:26:31Z", - "pushedAt": "2025-07-26T18:33:25Z", + "pushedAt": "2025-08-26T02:49:33Z", "forks": 22, "issues": 1, "subscribers": 3, @@ -78144,8 +78234,8 @@ }, "npmPkg": "react-native-btr", "npm": { - "downloads": 10044, - "weekDownloads": 1533, + "downloads": 9852, + "weekDownloads": 1529, "size": 20186, "latestRelease": "2.2.2", "latestReleaseDate": "2025-07-25T18:47:49.602Z" @@ -78154,7 +78244,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.13, + "popularity": 0.132, "topicSearchString": "android ios bottomsheet checkbox collapsible-card color-picker radio-buttons snackbar tags ui-components ui-elements icon-picker" }, { @@ -78211,8 +78301,8 @@ "configPlugin": false }, "npm": { - "downloads": 2670, - "weekDownloads": 495, + "downloads": 2605, + "weekDownloads": 509, "size": 81407, "latestRelease": "1.2.1", "latestReleaseDate": "2025-08-07T09:10:45.848Z" @@ -78222,7 +78312,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.166, "topicSearchString": "react-native a11y accessibility" }, { @@ -78282,7 +78372,7 @@ }, "npmPkg": "vision-camera-dynamsoft-label-recognizer", "npm": { - "downloads": 338, + "downloads": 347, "weekDownloads": 34, "size": 204902, "latestRelease": "3.1.0", @@ -78292,7 +78382,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.664, + "popularity": -0.666, "topicSearchString": "react-native mrz machine-readable-zone ocr optical-character-recognition ios android" }, { @@ -78361,7 +78451,7 @@ }, "npmPkg": "react-native-fiesta", "npm": { - "downloads": 1015, + "downloads": 982, "weekDownloads": 216, "size": 300788, "latestRelease": "0.7.0", @@ -78373,7 +78463,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.182, + "popularity": -0.563, "topicSearchString": "react-native ios android @shopify/skia web skia animations react-component javascript react typescript hacktoberfest" }, { @@ -78435,8 +78525,8 @@ "unmaintained": true, "npmPkg": "vision-camera-ocr", "npm": { - "downloads": 487, - "weekDownloads": 70, + "downloads": 493, + "weekDownloads": 74, "size": 48307, "latestRelease": "1.0.0", "latestReleaseDate": "2022-02-21T22:35:39.641Z" @@ -78447,7 +78537,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.377, + "popularity": -1.372, "topicSearchString": "react-native ios android mobile camera" }, { @@ -78507,8 +78597,8 @@ "configPlugin": false }, "npm": { - "downloads": 5759, - "weekDownloads": 1668, + "downloads": 5469, + "weekDownloads": 1691, "size": 30013, "latestRelease": "0.5.1", "latestReleaseDate": "2024-02-10T13:33:14.155Z" @@ -78517,7 +78607,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": 0.246, + "popularity": 0.263, "topicSearchString": "react-native react mobile android ui vector image component" }, { @@ -78534,6 +78624,7 @@ "fireos": true, "newArchitecture": false, "newArchitectureNote": "Consider using Maestro instead to migrate to the New Architecture today.", + "configPlugin": "https://github.com/expo/config-plugins/tree/main/packages/detox", "github": { "urls": { "repo": "https://github.com/wix/Detox", @@ -78545,13 +78636,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-10-05T17:50:50Z", + "updatedAt": "2025-10-19T16:08:59Z", "createdAt": "2016-06-15T11:58:01Z", - "pushedAt": "2025-10-05T17:50:50Z", + "pushedAt": "2025-10-19T16:08:59Z", "forks": 1884, - "issues": 198, + "issues": 197, "subscribers": 370, - "stars": 11672, + "stars": 11673, "dependencies": 37 }, "name": "detox", @@ -78574,11 +78665,11 @@ }, "npmPkg": "detox", "npm": { - "downloads": 1495274, - "weekDownloads": 304936, - "size": 14943702, - "latestRelease": "20.43.0", - "latestReleaseDate": "2025-10-05T17:50:54.218Z" + "downloads": 1456349, + "weekDownloads": 316574, + "size": 14944362, + "latestRelease": "20.44.0", + "latestReleaseDate": "2025-10-19T16:09:03.654Z" }, "score": 86, "matchingScoreModifiers": [ @@ -78589,7 +78680,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.185, "topicSearchString": "" }, { @@ -78653,8 +78744,8 @@ }, "npmPkg": "react-native-wallet-manager", "npm": { - "downloads": 42881, - "weekDownloads": 5935, + "downloads": 41904, + "weekDownloads": 6967, "size": 52579, "latestRelease": "1.1.1", "latestReleaseDate": "2024-10-17T11:30:04.678Z" @@ -78665,7 +78756,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.118, + "popularity": 0.141, "topicSearchString": "react-native ios android wallet apple-wallet pkpass google-wallet google-wallet-api passkit" }, { @@ -78719,8 +78810,8 @@ "unmaintained": true, "npmPkg": "react-native-wallet-pass", "npm": { - "downloads": 523, - "weekDownloads": 86, + "downloads": 517, + "weekDownloads": 98, "size": 36611, "latestRelease": "1.0.5", "latestReleaseDate": "2021-06-09T15:09:03.102Z" @@ -78730,7 +78821,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.61, + "popularity": -1.588, "topicSearchString": "react-native ios android passkit wallet" }, { @@ -78793,8 +78884,8 @@ "moduleType": "nitro" }, "npm": { - "downloads": 29496, - "weekDownloads": 5375, + "downloads": 29263, + "weekDownloads": 5374, "size": 5784001, "latestRelease": "3.11.2", "latestReleaseDate": "2025-10-16T03:57:52.835Z" @@ -78805,7 +78896,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.156, "topicSearchString": "sendbird uikit react-native chat messaging real-time ui-components user-authentication channel-management sdk-integration customizable feature-rich social-app customer-support gaming api" }, { @@ -78882,8 +78973,8 @@ "configPlugin": false }, "npm": { - "downloads": 1693, - "weekDownloads": 276, + "downloads": 1710, + "weekDownloads": 292, "size": 1034268, "latestRelease": "1.1.10", "latestReleaseDate": "2025-10-17T05:55:37.488Z" @@ -78893,7 +78984,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.111, + "popularity": -0.105, "topicSearchString": "react-native calls audio-calls video-calls group-calls voice-calls conference-calls communication video-chat real-time webrtc voip call-kit callkeep voip-push-notification audio callkit conference javascript reactnative reactnativecalls sendbird typescript" }, { @@ -78957,8 +79048,8 @@ }, "npmPkg": "rxn-units", "npm": { - "downloads": 149, - "weekDownloads": 47, + "downloads": 148, + "weekDownloads": 53, "size": 7596, "latestRelease": "0.1.7", "latestReleaseDate": "2022-12-30T00:47:41.488Z" @@ -78967,7 +79058,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.481, + "popularity": -0.438, "topicSearchString": "react typescript react-native units web expo rxn viewport viewport-units reactjs vh" }, { @@ -79022,7 +79113,7 @@ "configPlugin": false }, "npm": { - "downloads": 1308, + "downloads": 1272, "weekDownloads": 194, "size": 64555, "latestRelease": "1.9.0", @@ -79033,7 +79124,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.126, + "popularity": 0.13, "topicSearchString": "react-native" }, { @@ -79086,8 +79177,8 @@ "unmaintained": true, "npmPkg": "react-native-video-cache", "npm": { - "downloads": 24554, - "weekDownloads": 4636, + "downloads": 23561, + "weekDownloads": 4663, "size": 80219, "latestRelease": "2.7.4", "latestReleaseDate": "2023-09-28T01:09:25.708Z" @@ -79098,7 +79189,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, + "popularity": -0.582, "topicSearchString": "react-native" }, { @@ -79153,8 +79244,8 @@ }, "npmPkg": "react-native-bluetooth-classic", "npm": { - "downloads": 17501, - "weekDownloads": 3633, + "downloads": 17165, + "weekDownloads": 3861, "size": 340030, "latestRelease": "1.73.0-rc.15", "latestReleaseDate": "2025-09-26T13:08:54.135Z" @@ -79165,12 +79256,13 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.191, "topicSearchString": "react-native bluetooth-classic bluetooth-adapter android external-accessory ios bluetooth" }, { "githubUrl": "https://github.com/XHMM/react-native-cloud-store", "ios": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/XHMM/react-native-cloud-store", @@ -79219,8 +79311,8 @@ }, "npmPkg": "react-native-cloud-store", "npm": { - "downloads": 15191, - "weekDownloads": 2291, + "downloads": 14821, + "weekDownloads": 2338, "size": 221149, "latestRelease": "0.12.0", "latestReleaseDate": "2024-04-11T05:51:23.622Z" @@ -79230,7 +79322,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.128, + "popularity": 0.134, "topicSearchString": "react-native ios android icloud swift react" }, { @@ -79296,7 +79388,7 @@ "npmPkg": "react-native-clocks", "npm": { "downloads": 24, - "weekDownloads": 2, + "weekDownloads": 1, "size": 167694, "latestRelease": "0.1.1", "latestReleaseDate": "2023-09-30T11:34:11.451Z" @@ -79306,7 +79398,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.42, + "popularity": -1.46, "topicSearchString": "react-native ios android clock react web skia time javascript typescript" }, { @@ -79364,8 +79456,8 @@ }, "unmaintained": true, "npm": { - "downloads": 150, - "weekDownloads": 15, + "downloads": 156, + "weekDownloads": 24, "size": 19730, "latestRelease": "0.3.1", "latestReleaseDate": "2023-05-30T11:40:43.640Z" @@ -79375,7 +79467,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.664, + "popularity": -1.617, "topicSearchString": "react-native react expo picker select" }, { @@ -79434,8 +79526,8 @@ }, "unmaintained": true, "npm": { - "downloads": 55, - "weekDownloads": 7, + "downloads": 57, + "weekDownloads": 11, "size": 20317, "latestRelease": "0.1.4", "latestReleaseDate": "2022-10-03T16:32:29.200Z" @@ -79445,7 +79537,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.633, + "popularity": -1.581, "topicSearchString": "react-native react expo snackbar popup notification" }, { @@ -79510,8 +79602,8 @@ }, "npmPkg": "react-native-volume-manager", "npm": { - "downloads": 97926, - "weekDownloads": 21772, + "downloads": 95506, + "weekDownloads": 21907, "size": 240484, "latestRelease": "2.0.8", "latestReleaseDate": "2024-12-23T13:58:26.362Z" @@ -79522,7 +79614,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.189, + "popularity": 0.195, "topicSearchString": "react-native ios expo volume mute silent android react" }, { @@ -79578,8 +79670,8 @@ }, "npmPkg": "amazon-ivs-react-native-player", "npm": { - "downloads": 7159, - "weekDownloads": 1075, + "downloads": 6883, + "weekDownloads": 970, "size": 204354489, "latestRelease": "1.5.0", "latestReleaseDate": "2024-02-20T20:44:39.220Z" @@ -79589,7 +79681,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.128, + "popularity": 0.12, "topicSearchString": "react-native ios android amazon-ivs" }, { @@ -79610,6 +79702,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -79621,13 +79714,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-17T14:38:55Z", + "updatedAt": "2025-10-20T16:50:41Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-10-17T14:38:55Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "pushedAt": "2025-10-20T16:50:41Z", + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 23 }, "name": "expo-router", @@ -79654,8 +79747,8 @@ }, "npmPkg": "expo-router", "npm": { - "downloads": 3678126, - "weekDownloads": 711172, + "downloads": 3621467, + "weekDownloads": 719444, "size": 2441201, "latestRelease": "6.0.12", "latestReleaseDate": "2025-10-10T18:56:30.434Z" @@ -79669,7 +79762,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.169, "topicSearchString": "react-native expo" }, { @@ -79728,7 +79821,7 @@ }, "npmPkg": "react-native-help-create", "npm": { - "downloads": 283, + "downloads": 282, "weekDownloads": 3, "size": 115710, "latestRelease": "2.7.0", @@ -79805,7 +79898,7 @@ }, "unmaintained": true, "npm": { - "downloads": 13, + "downloads": 17, "weekDownloads": 0, "size": 263300, "latestRelease": "0.1.2", @@ -79882,8 +79975,8 @@ "configPlugin": false }, "npm": { - "downloads": 550, - "weekDownloads": 62, + "downloads": 601, + "weekDownloads": 82, "size": 146257, "latestRelease": "3.0.1", "latestReleaseDate": "2025-05-09T08:30:14.759Z" @@ -79894,7 +79987,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.654, + "popularity": -0.634, "topicSearchString": "react-native basic-components tabbar react-tab reactnative reactnative-animation-challenges react-animation navigation component library easy-to-use" }, { @@ -79957,8 +80050,8 @@ "configPlugin": false }, "npm": { - "downloads": 121, - "weekDownloads": 7, + "downloads": 127, + "weekDownloads": 8, "size": 43006, "latestRelease": "0.0.4", "latestReleaseDate": "2023-12-20T10:24:44.976Z" @@ -79968,7 +80061,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.7, + "popularity": -0.695, "topicSearchString": "react-native ios android header navbar rn-header actionbar navigation-header top-navigation-bar reactnative mobile-app" }, { @@ -80037,7 +80130,7 @@ }, "unmaintained": true, "npm": { - "downloads": 118, + "downloads": 124, "weekDownloads": 0, "size": 12266, "latestRelease": "1.0.4", @@ -80114,8 +80207,8 @@ }, "unmaintained": true, "npm": { - "downloads": 358, - "weekDownloads": 58, + "downloads": 353, + "weekDownloads": 52, "size": 100280, "latestRelease": "1.2.1", "latestReleaseDate": "2022-11-22T06:23:58.376Z" @@ -80125,7 +80218,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.362, + "popularity": -1.375, "topicSearchString": "stagger-view rn-stagger-view stagger-list rn-stagger-list react-native reactnative-list-view" }, { @@ -80259,7 +80352,7 @@ }, "unmaintained": true, "npm": { - "downloads": 47, + "downloads": 51, "weekDownloads": 6, "size": 51785, "latestRelease": "1.0.2", @@ -80270,7 +80363,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.641, + "popularity": -1.65, "topicSearchString": "react-native ios android animation progress-view svg speedview speed-meter speed-progress speed-view runningspeed react" }, { @@ -80325,8 +80418,8 @@ "configPlugin": false }, "npm": { - "downloads": 50549, - "weekDownloads": 9687, + "downloads": 49144, + "weekDownloads": 9704, "size": 2175612, "latestRelease": "1.3.1", "latestReleaseDate": "2024-02-08T13:16:20.215Z" @@ -80337,7 +80430,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.168, "topicSearchString": "react-native ios android" }, { @@ -80473,8 +80566,8 @@ }, "npmPkg": "react-native-marked", "npm": { - "downloads": 46793, - "weekDownloads": 8766, + "downloads": 45110, + "weekDownloads": 8508, "size": 210930, "latestRelease": "7.0.2", "latestReleaseDate": "2025-06-28T05:46:26.001Z" @@ -80485,7 +80578,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.16, "topicSearchString": "react-native markdown react renderer marked-js typescript" }, { @@ -80538,8 +80631,8 @@ }, "npmPkg": "react-native-style-queries", "npm": { - "downloads": 53, - "weekDownloads": 3, + "downloads": 63, + "weekDownloads": 2, "size": 30464, "latestRelease": "0.1.1", "latestReleaseDate": "2022-08-29T13:34:07.724Z" @@ -80549,7 +80642,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.95, + "popularity": -0.971, "topicSearchString": "" }, { @@ -80619,8 +80712,8 @@ }, "npmPkg": "react-native-autocomplete-dropdown", "npm": { - "downloads": 68748, - "weekDownloads": 12060, + "downloads": 66824, + "weekDownloads": 11962, "size": 271247, "latestRelease": "5.0.0", "latestReleaseDate": "2025-05-07T13:31:58.206Z" @@ -80630,7 +80723,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.152, "topicSearchString": "react-native dropdown autocomplete picker typeahead select android ios dropdown-menu autocomplete-suggestions hacktoberfest" }, { @@ -80689,8 +80782,8 @@ }, "npmPkg": "react-native-fast-shadow", "npm": { - "downloads": 28078, - "weekDownloads": 5782, + "downloads": 27153, + "weekDownloads": 6220, "size": 50559, "latestRelease": "0.1.1", "latestReleaseDate": "2024-08-05T10:01:19.279Z" @@ -80700,7 +80793,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.195, "topicSearchString": "react-native shadow android" }, { @@ -80759,8 +80852,8 @@ "configPlugin": false }, "npm": { - "downloads": 10332, - "weekDownloads": 1897, + "downloads": 10211, + "weekDownloads": 2072, "size": 1984351, "latestRelease": "2.5.6", "latestReleaseDate": "2025-10-10T05:53:18.944Z" @@ -80771,7 +80864,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.173, "topicSearchString": "react-native ios android calendar-kit calendar-week-view" }, { @@ -80806,7 +80899,7 @@ "forks": 2, "issues": 2, "subscribers": 1, - "stars": 36, + "stars": 37, "dependencies": 1 }, "name": "react-native-tooltiplize", @@ -80841,8 +80934,8 @@ "unmaintained": true, "npmPkg": "react-native-tooltiplize", "npm": { - "downloads": 303, - "weekDownloads": 48, + "downloads": 289, + "weekDownloads": 40, "size": 156244, "latestRelease": "0.3.0", "latestReleaseDate": "2022-11-09T03:36:08.677Z" @@ -80852,7 +80945,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.365, + "popularity": -1.382, "topicSearchString": "react-native ios android web tooltip tooltiplize tooltip-lib popover popover-view" }, { @@ -80877,7 +80970,7 @@ "createdAt": "2022-10-31T08:02:32Z", "pushedAt": "2025-10-17T09:44:25Z", "forks": 5, - "issues": 2, + "issues": 1, "subscribers": 5, "stars": 67, "dependencies": 0 @@ -80915,8 +81008,8 @@ }, "npmPkg": "vision-camera-dynamsoft-document-normalizer", "npm": { - "downloads": 498, - "weekDownloads": 55, + "downloads": 496, + "weekDownloads": 71, "size": 87550, "latestRelease": "4.1.0", "latestReleaseDate": "2025-10-14T08:09:52.174Z" @@ -80926,7 +81019,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.656, + "popularity": -0.628, "topicSearchString": "react-native ios android document-scanning document-scanner document-scan document-detection perspective-transformation crop automatic" }, { @@ -80987,8 +81080,8 @@ "unmaintained": true, "npmPkg": "react-native-match-media-polyfill", "npm": { - "downloads": 16385, - "weekDownloads": 2189, + "downloads": 15755, + "weekDownloads": 2226, "size": 14147, "latestRelease": "1.0.3", "latestReleaseDate": "2020-01-17T19:28:00.965Z" @@ -80998,7 +81091,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.886, + "popularity": -0.88, "topicSearchString": "component react-component react-native ios media query responsive matchmedia mediaquery web react-responsive" }, { @@ -81046,8 +81139,8 @@ }, "npmPkg": "react-ridge-state", "npm": { - "downloads": 3877, - "weekDownloads": 1093, + "downloads": 3674, + "weekDownloads": 1022, "size": 28071, "latestRelease": "4.2.9", "latestReleaseDate": "2022-08-02T14:54:02.006Z" @@ -81057,7 +81150,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.24, + "popularity": 0.237, "topicSearchString": "" }, { @@ -81111,8 +81204,8 @@ "unmaintained": true, "npmPkg": "react-native-paper-autocomplete", "npm": { - "downloads": 410, - "weekDownloads": 15, + "downloads": 431, + "weekDownloads": 27, "size": 351937, "latestRelease": "0.12.0", "latestReleaseDate": "2023-09-27T06:29:22.879Z" @@ -81122,7 +81215,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.719, + "popularity": -1.697, "topicSearchString": "react-native ios android" }, { @@ -81184,8 +81277,8 @@ }, "unmaintained": true, "npm": { - "downloads": 89763, - "weekDownloads": 18481, + "downloads": 86018, + "weekDownloads": 18690, "size": 14630, "latestRelease": "0.4.0", "latestReleaseDate": "2022-10-06T20:45:28.118Z" @@ -81196,7 +81289,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.575, + "popularity": -0.565, "topicSearchString": "css css-in-js match-media expo expo-web react react-native web responsive breakpoint polyfill" }, { @@ -81267,8 +81360,8 @@ }, "npmPkg": "react-native-form-component", "npm": { - "downloads": 1138, - "weekDownloads": 54, + "downloads": 1127, + "weekDownloads": 50, "size": 265021, "latestRelease": "2.6.14", "latestReleaseDate": "2024-01-19T07:02:12.659Z" @@ -81278,7 +81371,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.04, + "popularity": 0.038, "topicSearchString": "react-native ios android form validated-form form-component component web picker pin-input otp validation declarative modal" }, { @@ -81310,7 +81403,7 @@ "forks": 59, "issues": 10, "subscribers": 5, - "stars": 514, + "stars": 515, "dependencies": 0 }, "name": "react-native-confetti-cannon", @@ -81347,8 +81440,8 @@ "unmaintained": true, "npmPkg": "react-native-confetti-cannon", "npm": { - "downloads": 352002, - "weekDownloads": 76270, + "downloads": 340566, + "weekDownloads": 74963, "size": 25243, "latestRelease": "1.5.2", "latestReleaseDate": "2021-03-03T11:57:14.300Z" @@ -81360,7 +81453,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.566, + "popularity": -0.563, "topicSearchString": "react react-native web confetti cannon explosion fall animation animated particles ios android" }, { @@ -81390,7 +81483,7 @@ "updatedAt": "2025-10-15T02:03:21Z", "createdAt": "2019-12-04T05:49:58Z", "pushedAt": "2025-10-15T02:03:21Z", - "forks": 180, + "forks": 181, "issues": 79, "subscribers": 6, "stars": 548, @@ -81424,8 +81517,8 @@ }, "npmPkg": "react-native-big-calendar", "npm": { - "downloads": 19295, - "weekDownloads": 3237, + "downloads": 18994, + "weekDownloads": 3333, "size": 619229, "latestRelease": "4.18.6", "latestReleaseDate": "2025-09-23T23:42:07.386Z" @@ -81438,7 +81531,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.149, "topicSearchString": "react react-native web cross-platform calendar calendar-view calendar-component" }, { @@ -81507,8 +81600,8 @@ "unmaintained": true, "npmPkg": "expo-image-editor", "npm": { - "downloads": 1011, - "weekDownloads": 150, + "downloads": 967, + "weekDownloads": 156, "size": 422831, "latestRelease": "1.7.1", "latestReleaseDate": "2021-10-18T13:01:07.627Z" @@ -81519,7 +81612,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.623, + "popularity": -1.363, "topicSearchString": "react react-native image image-editor image-cropping blur expo web" }, { @@ -81549,8 +81642,8 @@ "pushedAt": "2025-10-12T08:25:36Z", "forks": 366, "issues": 68, - "subscribers": 31, - "stars": 7146, + "subscribers": 30, + "stars": 7156, "dependencies": 1 }, "name": "nativewind", @@ -81584,8 +81677,8 @@ }, "npmPkg": "nativewind", "npm": { - "downloads": 1560245, - "weekDownloads": 304574, + "downloads": 1499464, + "weekDownloads": 304856, "size": 415554, "latestRelease": "4.2.1", "latestReleaseDate": "2025-09-14T22:51:13.080Z" @@ -81598,7 +81691,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.173, "topicSearchString": "react-native react native tailwind tailwindcss theme style css web nativewind" }, { @@ -81738,8 +81831,8 @@ }, "npmPkg": "react-native-snackbar-component", "npm": { - "downloads": 3167, - "weekDownloads": 581, + "downloads": 3091, + "weekDownloads": 631, "size": 310542, "latestRelease": "1.1.12", "latestReleaseDate": "2021-08-16T21:00:09.447Z" @@ -81750,7 +81843,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.174, "topicSearchString": "snackbar material design android ios notifications react-native material-design" }, { @@ -81811,8 +81904,8 @@ "unmaintained": true, "npmPkg": "expo-image-crop", "npm": { - "downloads": 1171, - "weekDownloads": 157, + "downloads": 1164, + "weekDownloads": 185, "size": 3584603, "latestRelease": "1.0.4", "latestReleaseDate": "2020-03-04T11:40:14.865Z" @@ -81822,7 +81915,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.636, + "popularity": -0.614, "topicSearchString": "expo react-native crop image rotate" }, { @@ -81884,8 +81977,8 @@ "configPlugin": false }, "npm": { - "downloads": 513, - "weekDownloads": 27, + "downloads": 528, + "weekDownloads": 25, "size": 79202, "latestRelease": "1.0.7", "latestReleaseDate": "2024-05-07T09:46:19.676Z" @@ -81895,7 +81988,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.955, + "popularity": -0.96, "topicSearchString": "expo-maps-polygon-editor maps polygon editor expo polygon-editor" }, { @@ -81960,8 +82053,8 @@ }, "unmaintained": true, "npm": { - "downloads": 247, - "weekDownloads": 35, + "downloads": 251, + "weekDownloads": 48, "size": 5247311, "latestRelease": "2.0.1", "latestReleaseDate": "2022-11-30T16:45:59.483Z" @@ -81971,7 +82064,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.379, + "popularity": -1.337, "topicSearchString": "react-native ios android maps draw maps-draw canvas polygon-overlay expo" }, { @@ -82032,8 +82125,8 @@ }, "npmPkg": "react-native-skia-gesture", "npm": { - "downloads": 1138, - "weekDownloads": 289, + "downloads": 1142, + "weekDownloads": 323, "size": 81619, "latestRelease": "0.4.0", "latestReleaseDate": "2025-05-27T09:31:59.916Z" @@ -82042,7 +82135,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.216, + "popularity": 0.241, "topicSearchString": "react-native ios android gestures skia" }, { @@ -82054,6 +82147,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -82068,10 +82162,10 @@ "updatedAt": "2025-10-09T00:03:40Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-09T00:03:40Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 2 }, "name": "expo-system-ui", @@ -82101,8 +82195,8 @@ }, "npmPkg": "expo-system-ui", "npm": { - "downloads": 3187406, - "weekDownloads": 616411, + "downloads": 3131128, + "weekDownloads": 622235, "size": 76586, "latestRelease": "6.0.7", "latestReleaseDate": "2025-09-10T18:40:26.974Z" @@ -82116,7 +82210,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.169, "topicSearchString": "react-native expo background-color user-interface appearance" }, { @@ -82174,8 +82268,8 @@ }, "unmaintained": true, "npm": { - "downloads": 425, - "weekDownloads": 45, + "downloads": 421, + "weekDownloads": 48, "size": 12910, "latestRelease": "1.0.7", "latestReleaseDate": "2023-04-09T12:56:31.280Z" @@ -82185,7 +82279,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.66, + "popularity": -1.653, "topicSearchString": "onboarding react-native flatlist swipeable indicator" }, { @@ -82251,8 +82345,8 @@ }, "unmaintained": true, "npm": { - "downloads": 321, - "weekDownloads": 37, + "downloads": 326, + "weekDownloads": 55, "size": 34079, "latestRelease": "0.0.21", "latestReleaseDate": "2022-12-16T16:23:45.281Z" @@ -82262,7 +82356,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.651, + "popularity": -1.605, "topicSearchString": "react-native react native android ios tabbed-sections tabbed-section-list scrollview flatlist sectionlist scroll tabs" }, { @@ -82318,8 +82412,8 @@ }, "npmPkg": "react-native-performance-limiter", "npm": { - "downloads": 22678, - "weekDownloads": 5769, + "downloads": 20523, + "weekDownloads": 4484, "size": 46499, "latestRelease": "0.3.0", "latestReleaseDate": "2025-04-29T14:40:58.212Z" @@ -82329,7 +82423,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.034, + "popularity": -0.064, "topicSearchString": "react-native ios android performance" }, { @@ -82398,8 +82492,8 @@ }, "npmPkg": "react-native-basic-carousel", "npm": { - "downloads": 1487, - "weekDownloads": 306, + "downloads": 1431, + "weekDownloads": 273, "size": 39177, "latestRelease": "1.1.2", "latestReleaseDate": "2024-02-01T14:37:57.718Z" @@ -82409,7 +82503,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.075, + "popularity": -0.087, "topicSearchString": "react-native carousel react slide slider swiper images scroll items snap android ios snapping autoplay" }, { @@ -82487,8 +82581,8 @@ "unmaintained": true, "npmPkg": "react-native-stories-view", "npm": { - "downloads": 4518, - "weekDownloads": 910, + "downloads": 4390, + "weekDownloads": 975, "size": 49527, "latestRelease": "1.0.9", "latestReleaseDate": "2021-12-03T12:52:15.186Z" @@ -82499,7 +82593,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.561, "topicSearchString": "react-native react-component component react mobile ios android ui story stories status whatsapp instagram cross-platform typescript hooks javascript react-hooks react-dom useeffect usestate" }, { @@ -82554,8 +82648,8 @@ }, "npmPkg": "react-native-settings", "npm": { - "downloads": 6497, - "weekDownloads": 1084, + "downloads": 6286, + "weekDownloads": 1020, "size": 42668, "latestRelease": "1.0.2", "latestReleaseDate": "2025-06-10T14:13:32.068Z" @@ -82565,7 +82659,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.138, "topicSearchString": "react-native settings android xcode" }, { @@ -82630,8 +82724,8 @@ "unmaintained": true, "npmPkg": "react-native-system-setting", "npm": { - "downloads": 65789, - "weekDownloads": 15007, + "downloads": 62660, + "weekDownloads": 14315, "size": 107553, "latestRelease": "1.7.6", "latestReleaseDate": "2020-10-11T08:08:16.557Z" @@ -82703,8 +82797,8 @@ }, "npmPkg": "react-native-actions-shortcuts", "npm": { - "downloads": 6421, - "weekDownloads": 1346, + "downloads": 6140, + "weekDownloads": 1293, "size": 1081121, "latestRelease": "1.0.1", "latestReleaseDate": "2020-07-29T06:22:41.789Z" @@ -82714,7 +82808,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.179, "topicSearchString": "react-native ios android quick-actions app-shortcuts home-screen actions uiapplicationshortcutitem shortcut shortcuts" }, { @@ -82725,6 +82819,7 @@ ], "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/kingstinct/react-native-healthkit", @@ -82772,8 +82867,8 @@ "moduleType": "nitro" }, "npm": { - "downloads": 46613, - "weekDownloads": 8312, + "downloads": 45594, + "weekDownloads": 8735, "size": 2412650, "latestRelease": "11.1.1", "latestReleaseDate": "2025-10-15T02:04:30.326Z" @@ -82784,7 +82879,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.163, "topicSearchString": "react-native nitro healthkit ios typescript" }, { @@ -82842,8 +82937,8 @@ }, "npmPkg": "react-native-hotkeys", "npm": { - "downloads": 1286, - "weekDownloads": 337, + "downloads": 1234, + "weekDownloads": 348, "size": 112904, "latestRelease": "0.5.9", "latestReleaseDate": "2024-02-03T17:45:33.671Z" @@ -82853,7 +82948,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.027, + "popularity": -0.01, "topicSearchString": "react-native expo hotkeys reactnativekeys ios web" }, { @@ -82918,8 +83013,8 @@ "unmaintained": true, "npmPkg": "react-native-chunk-upload", "npm": { - "downloads": 500, - "weekDownloads": 57, + "downloads": 482, + "weekDownloads": 41, "size": 60930, "latestRelease": "2.0.3", "latestReleaseDate": "2021-09-11T09:33:47.337Z" @@ -82929,7 +83024,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.403, + "popularity": -1.427, "topicSearchString": "upload chunk chunk-upload chunked-upload resume resumable resumable-upload component reactnative react-native android ios javascript upload-file chunked-uploads blob" }, { @@ -83014,8 +83109,8 @@ "unmaintained": true, "npmPkg": "react-native-dropdown-picker", "npm": { - "downloads": 417752, - "weekDownloads": 81882, + "downloads": 399610, + "weekDownloads": 81700, "size": 161182, "latestRelease": "5.4.6", "latestReleaseDate": "2023-03-09T23:26:38.932Z" @@ -83028,7 +83123,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.583, + "popularity": -0.576, "topicSearchString": "picker dropdown drop-down menu item multiple single theme localization customizable placeholder categorizable category search searchable sub-item context component rtl rtl-support react reactnative react-native android ios javascript select" }, { @@ -83039,6 +83134,7 @@ "ios": true, "android": true, "web": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/serenity-kit/react-native-libsodium", @@ -83087,8 +83183,8 @@ }, "npmPkg": "react-native-libsodium", "npm": { - "downloads": 4565, - "weekDownloads": 992, + "downloads": 4383, + "weekDownloads": 949, "size": 13596239, "latestRelease": "1.4.0", "latestReleaseDate": "2024-06-11T17:29:58.900Z" @@ -83098,7 +83194,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.185, + "popularity": 0.184, "topicSearchString": "react-native ios android libsodium sodium type" }, { @@ -83165,8 +83261,8 @@ }, "unmaintained": true, "npm": { - "downloads": 1351, - "weekDownloads": 248, + "downloads": 1313, + "weekDownloads": 243, "size": 52394, "latestRelease": "1.1.2", "latestReleaseDate": "2022-01-16T06:53:01.961Z" @@ -83177,7 +83273,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.592, "topicSearchString": "react-native react-component component react mobile ios android ui segmented-control typescript" }, { @@ -83228,8 +83324,8 @@ }, "npmPkg": "react-native-screenshot-prevent", "npm": { - "downloads": 43909, - "weekDownloads": 7758, + "downloads": 42580, + "weekDownloads": 8202, "size": 68966, "latestRelease": "1.2.1", "latestReleaseDate": "2024-06-02T20:47:09.480Z" @@ -83240,7 +83336,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.164, "topicSearchString": "react-native ios android" }, { @@ -83304,8 +83400,8 @@ }, "npmPkg": "react-native-hyperlinks", "npm": { - "downloads": 1503, - "weekDownloads": 337, + "downloads": 1374, + "weekDownloads": 247, "size": 35002, "latestRelease": "1.0.4", "latestReleaseDate": "2023-01-05T20:53:35.481Z" @@ -83315,7 +83411,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.191, + "popularity": 0.153, "topicSearchString": "react-native react link links hyperlink hyperlinks hyper-link hypertext rn typescript fuzzy-links hashtag mention url" }, { @@ -83379,8 +83475,8 @@ }, "npmPkg": "react-native-reanimated-image-viewer", "npm": { - "downloads": 1188, - "weekDownloads": 255, + "downloads": 1146, + "weekDownloads": 266, "size": 61616, "latestRelease": "1.0.2", "latestReleaseDate": "2023-01-05T17:30:40.752Z" @@ -83390,7 +83486,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.183, + "popularity": 0.198, "topicSearchString": "react-native react reanimated image image-viewer image-viewing viewer viewing pinch pan zoom double-tap rn typescript" }, { @@ -83463,8 +83559,8 @@ "unmaintained": true, "npmPkg": "react-native-unicorn-modals", "npm": { - "downloads": 128, - "weekDownloads": 4, + "downloads": 130, + "weekDownloads": 6, "size": 164454, "latestRelease": "0.5.1", "latestReleaseDate": "2023-03-03T14:46:06.912Z" @@ -83474,7 +83570,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.473, + "popularity": -1.46, "topicSearchString": "react-native expo modal popup react native ios android reanimated alert typescript dialog menu reanimated2" }, { @@ -83539,8 +83635,8 @@ "configPlugin": false }, "npm": { - "downloads": 2881, - "weekDownloads": 511, + "downloads": 2912, + "weekDownloads": 563, "size": 68022, "latestRelease": "1.0.0", "latestReleaseDate": "2023-09-02T15:55:00.078Z" @@ -83551,7 +83647,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.164, "topicSearchString": "react-native ios android animated scrollview expo flatlist react" }, { @@ -83611,8 +83707,8 @@ "unmaintained": true, "npmPkg": "react-native-appearance-control", "npm": { - "downloads": 2062, - "weekDownloads": 1285, + "downloads": 2028, + "weekDownloads": 1384, "size": 52885, "latestRelease": "0.3.4", "latestReleaseDate": "2023-01-10T21:45:24.203Z" @@ -83622,7 +83718,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.47, + "popularity": -0.42, "topicSearchString": "react-native ios android dark-mode night-mode appearance user-interface-style" }, { @@ -83677,8 +83773,8 @@ "unmaintained": true, "npmPkg": "react-native-code-push-dev-menu", "npm": { - "downloads": 58, - "weekDownloads": 5, + "downloads": 59, + "weekDownloads": 7, "size": 17917, "latestRelease": "1.0.1", "latestReleaseDate": "2023-01-15T20:37:16.970Z" @@ -83688,7 +83784,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.673, + "popularity": -1.642, "topicSearchString": "cicd codepush reactnative" }, { @@ -83746,8 +83842,8 @@ }, "npmPkg": "react-native-android-widget", "npm": { - "downloads": 13418, - "weekDownloads": 2942, + "downloads": 12796, + "weekDownloads": 2752, "size": 389553, "latestRelease": "0.17.2", "latestReleaseDate": "2025-10-02T17:00:09.950Z" @@ -83758,7 +83854,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.186, + "popularity": 0.183, "topicSearchString": "react-native android native react widget" }, { @@ -83816,8 +83912,8 @@ "unmaintained": true, "npmPkg": "react-native-apple-mapkit-directions", "npm": { - "downloads": 339, - "weekDownloads": 11, + "downloads": 346, + "weekDownloads": 22, "size": 27294, "latestRelease": "1.2.1", "latestReleaseDate": "2023-01-30T15:49:09.909Z" @@ -83827,7 +83923,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.722, + "popularity": -1.696, "topicSearchString": "react-native ios apple mapkit directions maps" }, { @@ -83883,8 +83979,8 @@ "unmaintained": true, "npmPkg": "react-native-circular-chart", "npm": { - "downloads": 3981, - "weekDownloads": 908, + "downloads": 3752, + "weekDownloads": 942, "size": 239516, "latestRelease": "1.0.9", "latestReleaseDate": "2023-01-25T01:42:28.064Z" @@ -83894,7 +83990,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.556, + "popularity": -0.536, "topicSearchString": "donut-chart circle-chart circular-chart chart react-native animation animation-library" }, { @@ -83924,7 +84020,7 @@ "updatedAt": "2025-10-09T12:41:28Z", "createdAt": "2019-02-15T03:37:05Z", "pushedAt": "2025-10-09T12:41:28Z", - "forks": 94, + "forks": 95, "issues": 3, "subscribers": 17, "stars": 2013, @@ -83989,8 +84085,8 @@ "configPlugin": false }, "npm": { - "downloads": 4303, - "weekDownloads": 954, + "downloads": 4236, + "weekDownloads": 956, "size": 1872886, "latestRelease": "0.14.25", "latestReleaseDate": "2025-03-12T17:52:13.394Z" @@ -84002,7 +84098,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.189, + "popularity": 0.192, "topicSearchString": "react data cache flux suspense fetch hook networking async concurrent-mode typescript async data-fetching data-cache reactive state-management api-client api normalized-cache swr query front-end mobile react-native ios android web expo expogo nextjs middleware websocket rest graphql rpc sse declarative dynamic-data mutations" }, { @@ -84060,8 +84156,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 644, - "weekDownloads": 144, + "downloads": 672, + "weekDownloads": 143, "size": 152857, "latestRelease": "2.1.0", "latestReleaseDate": "2025-07-31T16:42:51.059Z" @@ -84070,7 +84166,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.809, + "popularity": -0.819, "topicSearchString": "react-native mytracker react native my.com" }, { @@ -84128,8 +84224,8 @@ "configPlugin": false }, "npm": { - "downloads": 663, - "weekDownloads": 72, + "downloads": 690, + "weekDownloads": 73, "size": 380856, "latestRelease": "0.14.1", "latestReleaseDate": "2024-09-03T14:26:51.416Z" @@ -84139,7 +84235,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.658, + "popularity": -0.66, "topicSearchString": "react-native react maps osmdroid open-street-maps osm android" }, { @@ -84147,6 +84243,7 @@ "npmPkg": "@sparkfabrik/react-native-idfa-aaid", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/sparkfabrik/sparkfabrik-react-native-idfa-aaid", @@ -84193,8 +84290,8 @@ "configPlugin": true }, "npm": { - "downloads": 79547, - "weekDownloads": 16363, + "downloads": 77825, + "weekDownloads": 16940, "size": 558161, "latestRelease": "1.2.0", "latestReleaseDate": "2024-07-06T12:43:53.805Z" @@ -84205,7 +84302,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.185, "topicSearchString": "react-native ios android idfa aaid advertising" }, { @@ -84214,6 +84311,7 @@ "https://github.com/matinzd/react-native-health-connect/tree/main/example" ], "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/matinzd/react-native-health-connect", @@ -84228,7 +84326,7 @@ "updatedAt": "2025-09-07T17:04:19Z", "createdAt": "2023-01-07T02:59:05Z", "pushedAt": "2025-09-07T17:04:19Z", - "forks": 78, + "forks": 79, "issues": 60, "subscribers": 10, "stars": 338, @@ -84262,8 +84360,8 @@ }, "npmPkg": "react-native-health-connect", "npm": { - "downloads": 52173, - "weekDownloads": 10058, + "downloads": 49553, + "weekDownloads": 8992, "size": 435448, "latestRelease": "3.4.0", "latestReleaseDate": "2025-09-07T15:14:26.097Z" @@ -84273,7 +84371,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.154, "topicSearchString": "react-native health-connect health-sdk android fitness" }, { @@ -84338,7 +84436,7 @@ "npmPkg": "react-native-simple-line-chart", "npm": { "downloads": 3483, - "weekDownloads": 476, + "weekDownloads": 560, "size": 406533, "latestRelease": "0.39.1", "latestReleaseDate": "2025-10-07T08:07:02.743Z" @@ -84348,7 +84446,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.116, + "popularity": 0.137, "topicSearchString": "react-native line-chart charts chart-library ui-component graphs android chart ios line reanimated reanimated3" }, { @@ -84412,8 +84510,8 @@ }, "npmPkg": "react-native-qrcode-styled", "npm": { - "downloads": 87817, - "weekDownloads": 20534, + "downloads": 83285, + "weekDownloads": 18425, "size": 259634, "latestRelease": "0.4.0", "latestReleaseDate": "2025-08-27T23:53:42.745Z" @@ -84423,7 +84521,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.199, + "popularity": 0.188, "topicSearchString": "react-native qrcode svg qrcode-svg qrcode-styled qr-generator rn-qr-generator" }, { @@ -84447,10 +84545,10 @@ "updatedAt": "2025-08-15T23:19:06Z", "createdAt": "2014-03-11T06:09:42Z", "pushedAt": "2025-08-15T23:19:06Z", - "forks": 10322, - "issues": 3329, - "subscribers": 1430, - "stars": 37274, + "forks": 10323, + "issues": 3333, + "subscribers": 1431, + "stars": 37283, "dependencies": 5 }, "name": "@microsoft/signalr", @@ -84475,8 +84573,8 @@ "configPlugin": false }, "npm": { - "downloads": 3501422, - "weekDownloads": 665528, + "downloads": 3392494, + "weekDownloads": 696637, "size": 2831580, "latestRelease": "9.0.6", "latestReleaseDate": "2025-07-31T21:32:33.010Z" @@ -84489,7 +84587,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.175, "topicSearchString": "signalr aspnetcore" }, { @@ -84555,8 +84653,8 @@ }, "npmPkg": "rn-vertical-slider", "npm": { - "downloads": 3383, - "weekDownloads": 568, + "downloads": 3297, + "weekDownloads": 633, "size": 40664, "latestRelease": "4.4.1", "latestReleaseDate": "2025-07-12T23:20:45.660Z" @@ -84566,7 +84664,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.163, "topicSearchString": "react-native ios android vertical-slider column-slider rn rn-vertical-slider slider vertical" }, { @@ -84622,8 +84720,8 @@ "configPlugin": false }, "npm": { - "downloads": 2341, - "weekDownloads": 550, + "downloads": 2239, + "weekDownloads": 584, "size": 278045, "latestRelease": "0.2.1", "latestReleaseDate": "2024-02-20T09:54:28.673Z" @@ -84634,7 +84732,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.2, + "popularity": 0.222, "topicSearchString": "react-native ios android" }, { @@ -84662,7 +84760,7 @@ "forks": 80, "issues": 5, "subscribers": 12, - "stars": 581, + "stars": 580, "dependencies": 3 }, "name": "react-native-chatgpt", @@ -84694,8 +84792,8 @@ "unmaintained": true, "npmPkg": "react-native-chatgpt", "npm": { - "downloads": 1569, - "weekDownloads": 14, + "downloads": 1574, + "weekDownloads": 15, "size": 176379, "latestRelease": "0.9.0", "latestReleaseDate": "2023-01-29T21:21:45.615Z" @@ -84771,8 +84869,8 @@ }, "npmPkg": "react-native-amazing-cropper", "npm": { - "downloads": 258, - "weekDownloads": 38, + "downloads": 245, + "weekDownloads": 32, "size": 207892, "latestRelease": "0.2.8", "latestReleaseDate": "2025-03-30T15:15:47.096Z" @@ -84783,7 +84881,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.623, + "popularity": -0.638, "topicSearchString": "react-native react crop rotate image cropper rotation ios android" }, { @@ -84807,7 +84905,7 @@ "updatedAt": "2025-09-24T15:53:33Z", "createdAt": "2020-04-01T21:32:42Z", "pushedAt": "2025-09-24T15:53:33Z", - "forks": 28, + "forks": 27, "issues": 2, "subscribers": 4, "stars": 118, @@ -84836,8 +84934,8 @@ "configPlugin": false }, "npm": { - "downloads": 44181, - "weekDownloads": 940, + "downloads": 46772, + "weekDownloads": 943, "size": 281094, "latestRelease": "53.0.2", "latestReleaseDate": "2025-09-24T15:56:14.623Z" @@ -84848,7 +84946,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.018, + "popularity": 0.017, "topicSearchString": "react-native ios android" }, { @@ -84905,8 +85003,8 @@ }, "npmPkg": "css-to-react-native", "npm": { - "downloads": 30437772, - "weekDownloads": 5695745, + "downloads": 29646816, + "weekDownloads": 5887130, "size": 90021, "latestRelease": "3.2.0", "latestReleaseDate": "2023-02-14T22:20:46.436Z" @@ -84918,7 +85016,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.169, "topicSearchString": "styled-components react reactnative styles css" }, { @@ -84967,8 +85065,8 @@ }, "npmPkg": "babel-plugin-react-native-web", "npm": { - "downloads": 7745469, - "weekDownloads": 1485641, + "downloads": 7609124, + "weekDownloads": 1510761, "size": 17221, "latestRelease": "0.21.2", "latestReleaseDate": "2025-10-16T15:09:50.060Z" @@ -84982,7 +85080,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.169, "topicSearchString": "" }, { @@ -85041,8 +85139,8 @@ }, "npmPkg": "react-native-month", "npm": { - "downloads": 11819, - "weekDownloads": 2656, + "downloads": 11462, + "weekDownloads": 2661, "size": 510510, "latestRelease": "1.7.0", "latestReleaseDate": "2024-03-07T23:01:25.087Z" @@ -85052,7 +85150,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.191, + "popularity": 0.197, "topicSearchString": "react-native month component" }, { @@ -85126,8 +85224,8 @@ }, "npmPkg": "react-native-flex-grid", "npm": { - "downloads": 36375, - "weekDownloads": 8429, + "downloads": 34644, + "weekDownloads": 8694, "size": 142879, "latestRelease": "1.0.6", "latestReleaseDate": "2025-05-31T14:03:13.864Z" @@ -85136,7 +85234,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.197, + "popularity": 0.213, "topicSearchString": "react react-native web grid layout flex flexbox design style bootstrap 12-columns n-columns demo storybook typescript flowtype expo framework customizable configurable zero-dependency" }, { @@ -85198,8 +85296,8 @@ "unmaintained": true, "npmPkg": "react-native-amap3d", "npm": { - "downloads": 1914, - "weekDownloads": 258, + "downloads": 1896, + "weekDownloads": 276, "size": 84469, "latestRelease": "3.2.4", "latestReleaseDate": "2023-07-10T03:46:54.253Z" @@ -85212,7 +85310,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.635, + "popularity": -0.626, "topicSearchString": "react-native amap maps mapview" }, { @@ -85242,7 +85340,7 @@ "forks": 53, "issues": 21, "subscribers": 40, - "stars": 122, + "stars": 123, "dependencies": 3 }, "name": "mixpanel-react-native", @@ -85277,8 +85375,8 @@ }, "npmPkg": "mixpanel-react-native", "npm": { - "downloads": 381964, - "weekDownloads": 79639, + "downloads": 368230, + "weekDownloads": 78520, "size": 40243541, "latestRelease": "3.1.2", "latestReleaseDate": "2025-06-05T17:13:47.708Z" @@ -85288,7 +85386,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.181, "topicSearchString": "mixpanel react native ios android analytics tracking sdk react-native analytics-tracking mixpanel-sdk" }, { @@ -85343,8 +85441,8 @@ "unmaintained": true, "npmPkg": "react-native-block-store", "npm": { - "downloads": 62, - "weekDownloads": 13, + "downloads": 61, + "weekDownloads": 12, "size": 20287, "latestRelease": "0.1.1", "latestReleaseDate": "2023-03-03T11:29:55.262Z" @@ -85354,7 +85452,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.564, + "popularity": -1.579, "topicSearchString": "react-native ios android" }, { @@ -85417,8 +85515,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 1042, - "weekDownloads": 62, + "downloads": 1058, + "weekDownloads": 70, "size": 101319, "latestRelease": "2.0.0", "latestReleaseDate": "2025-10-17T19:29:03.243Z" @@ -85428,7 +85526,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.051, + "popularity": 0.056, "topicSearchString": "react-native ios android barcode barcode-scanner qrcode qrcode-scanner bar qr scanner" }, { @@ -85487,8 +85585,8 @@ }, "npmPkg": "react-native-ssl-public-key-pinning", "npm": { - "downloads": 78479, - "weekDownloads": 14387, + "downloads": 75741, + "weekDownloads": 14873, "size": 59538, "latestRelease": "1.2.6", "latestReleaseDate": "2025-07-05T13:50:23.821Z" @@ -85498,7 +85596,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.167, "topicSearchString": "react-native ios android ssl ssl-pinning network pki" }, { @@ -85559,8 +85657,8 @@ }, "npmPkg": "react-native-a11y-slider", "npm": { - "downloads": 5216, - "weekDownloads": 1027, + "downloads": 5030, + "weekDownloads": 992, "size": 68265, "latestRelease": "1.3.2", "latestReleaseDate": "2023-10-26T20:40:56.688Z" @@ -85570,7 +85668,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.083, + "popularity": -0.082, "topicSearchString": "a11y accessibility react-native slider" }, { @@ -85632,8 +85730,8 @@ }, "npmPkg": "react-fancy-qrcode", "npm": { - "downloads": 6644, - "weekDownloads": 1788, + "downloads": 6356, + "weekDownloads": 2143, "size": 38561, "latestRelease": "1.0.4", "latestReleaseDate": "2024-10-11T19:36:44.268Z" @@ -85643,7 +85741,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.229, + "popularity": 0.287, "topicSearchString": "qrcode react react-native" }, { @@ -85713,7 +85811,7 @@ "configPlugin": false }, "npm": { - "downloads": 10, + "downloads": 15, "weekDownloads": 0, "size": 236973, "latestRelease": "1.0.0", @@ -85753,9 +85851,9 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-11T19:40:21Z", + "updatedAt": "2025-10-20T06:07:48Z", "createdAt": "2022-01-04T07:33:01Z", - "pushedAt": "2025-10-11T19:40:21Z", + "pushedAt": "2025-10-20T06:07:48Z", "forks": 28, "issues": 6, "subscribers": 2, @@ -85799,8 +85897,8 @@ "configPlugin": false }, "npm": { - "downloads": 14822, - "weekDownloads": 2667, + "downloads": 14390, + "weekDownloads": 2658, "size": 347835, "latestRelease": "2.1.8", "latestReleaseDate": "2025-08-24T06:43:40.828Z" @@ -85811,7 +85909,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.157, "topicSearchString": "react-native ios android dropdown selection dropdown-menu multiple-select picker pull-down-menu combo-box list-box react select multi-select multipleselection search" }, { @@ -85867,8 +85965,8 @@ "unmaintained": true, "npmPkg": "react-native-animated-bottom-drawer", "npm": { - "downloads": 2437, - "weekDownloads": 432, + "downloads": 2338, + "weekDownloads": 437, "size": 22114, "latestRelease": "0.0.23", "latestReleaseDate": "2023-08-11T08:03:52.877Z" @@ -85878,7 +85976,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.591, "topicSearchString": "react-native bottom-drawer bottom-sheet react bottom-modal modal typescript" }, { @@ -85936,8 +86034,8 @@ }, "npmPkg": "react-native-is-maestro", "npm": { - "downloads": 1396, - "weekDownloads": 296, + "downloads": 1351, + "weekDownloads": 318, "size": 43348, "latestRelease": "3.0.1", "latestReleaseDate": "2024-06-27T12:13:40.428Z" @@ -85947,7 +86045,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.201, "topicSearchString": "react-native ios android web maestro" }, { @@ -86010,8 +86108,8 @@ }, "npmPkg": "react-native-pdf-renderer", "npm": { - "downloads": 57730, - "weekDownloads": 9961, + "downloads": 56873, + "weekDownloads": 10356, "size": 174403, "latestRelease": "2.3.0", "latestReleaseDate": "2025-08-12T20:32:04.137Z" @@ -86021,7 +86119,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.155, "topicSearchString": "react-native android ios pdf pdfrenderer pdfkit" }, { @@ -86082,7 +86180,7 @@ "unmaintained": true, "npmPkg": "react-native-use-list", "npm": { - "downloads": 124, + "downloads": 125, "weekDownloads": 10, "size": 55355, "latestRelease": "0.2.1", @@ -86224,8 +86322,8 @@ }, "npmPkg": "react-native-code-highlighter", "npm": { - "downloads": 12624, - "weekDownloads": 2017, + "downloads": 12120, + "weekDownloads": 1943, "size": 32860, "latestRelease": "1.3.0", "latestReleaseDate": "2025-07-01T15:00:49.859Z" @@ -86255,10 +86353,10 @@ "updatedAt": "2025-07-21T07:30:28Z", "createdAt": "2023-06-02T12:05:48Z", "pushedAt": "2025-07-21T07:30:28Z", - "forks": 30, + "forks": 31, "issues": 1, "subscribers": 3, - "stars": 293, + "stars": 294, "dependencies": 0 }, "name": "react-native-screenguard", @@ -86308,8 +86406,8 @@ }, "npmPkg": "react-native-screenguard", "npm": { - "downloads": 35351, - "weekDownloads": 8650, + "downloads": 33083, + "weekDownloads": 7589, "size": 292591, "latestRelease": "1.1.0", "latestReleaseDate": "2025-07-09T16:37:42.032Z" @@ -86319,7 +86417,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.208, + "popularity": 0.195, "topicSearchString": "screenguard detector screen-capture capture protection prevent screenshot capture-protection screenshot-prevent screenshot-blocker screenshot-detector screenshot-protection screenshot-prevention screenshot-blocking screenshot-block screenshot-blocking-ios screenshot-blocking-android screenshot-block-ios screenshot-block-android screenshot-blocker-ios screenshot-blocker-android react native ios android" }, { @@ -86381,8 +86479,8 @@ }, "npmPkg": "react-native-totp-utils", "npm": { - "downloads": 130, - "weekDownloads": 91, + "downloads": 131, + "weekDownloads": 99, "size": 74309, "latestRelease": "1.0.6", "latestReleaseDate": "2025-09-23T15:09:09.666Z" @@ -86391,7 +86489,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -1.143, + "popularity": -1.09, "topicSearchString": "react-native ios android totp totp-utils" }, { @@ -86442,8 +86540,8 @@ "unmaintained": true, "npmPkg": "react-native-hardwired", "npm": { - "downloads": 10, - "weekDownloads": 0, + "downloads": 11, + "weekDownloads": 1, "size": 702204, "latestRelease": "0.10.2", "latestReleaseDate": "2023-07-26T12:42:25.101Z" @@ -86453,7 +86551,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -1.65, "topicSearchString": "" }, { @@ -86506,8 +86604,8 @@ }, "npmPkg": "react-native-maps-routes", "npm": { - "downloads": 2070, - "weekDownloads": 424, + "downloads": 2008, + "weekDownloads": 394, "size": 21932, "latestRelease": "1.3.5", "latestReleaseDate": "2025-10-08T04:08:03.957Z" @@ -86517,7 +86615,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.167, "topicSearchString": "react-native maps ios android" }, { @@ -86572,7 +86670,7 @@ "unmaintained": true, "npmPkg": "react-native-esper-sdk", "npm": { - "downloads": 27, + "downloads": 28, "weekDownloads": 0, "size": 32692, "latestRelease": "0.2.2", @@ -86594,6 +86692,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/vonovak/react-native-theme-control", @@ -86644,8 +86743,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 3375, - "weekDownloads": 489, + "downloads": 3201, + "weekDownloads": 411, "size": 117704, "latestRelease": "7.0.2", "latestReleaseDate": "2025-07-06T17:52:16.885Z" @@ -86654,7 +86753,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.123, + "popularity": 0.109, "topicSearchString": "react-native ios android theme dark dark-mode apearance hacktoberfest" }, { @@ -86710,7 +86809,7 @@ "npmPkg": "react-native-rsa-signer", "npm": { "downloads": 9, - "weekDownloads": 2, + "weekDownloads": 3, "size": 80881, "latestRelease": "1.5.1", "latestReleaseDate": "2023-07-28T00:44:37.843Z" @@ -86720,7 +86819,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.55, + "popularity": -1.45, "topicSearchString": "react-native rsa jwt encryption security numero" }, { @@ -86780,8 +86879,8 @@ }, "npmPkg": "react-native-pie-chart", "npm": { - "downloads": 38923, - "weekDownloads": 7326, + "downloads": 37960, + "weekDownloads": 7557, "size": 337223, "latestRelease": "4.0.1", "latestReleaseDate": "2025-02-06T22:54:12.919Z" @@ -86791,7 +86890,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.169, "topicSearchString": "react react-native chart pie-chart visualization" }, { @@ -86854,8 +86953,8 @@ }, "unmaintained": true, "npm": { - "downloads": 456, - "weekDownloads": 92, + "downloads": 441, + "weekDownloads": 103, "size": 52463, "latestRelease": "0.0.2", "latestReleaseDate": "2023-06-23T12:07:18.324Z" @@ -86865,7 +86964,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.578, + "popularity": -1.55, "topicSearchString": "react-native autofocus next-field enter onenter input textfield" }, { @@ -86921,7 +87020,7 @@ }, "npmPkg": "react-native-web-jsonschema-form", "npm": { - "downloads": 521, + "downloads": 519, "weekDownloads": 22, "size": 191929, "latestRelease": "4.0.0", @@ -86985,7 +87084,7 @@ }, "unmaintained": true, "npm": { - "downloads": 160, + "downloads": 156, "weekDownloads": 32, "size": 2390368, "latestRelease": "1.0.3", @@ -86996,7 +87095,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.577, + "popularity": -1.572, "topicSearchString": "react-native ios apple-music apple-music-api music apple" }, { @@ -87006,6 +87105,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/numandev1/react-native-keys", @@ -87067,8 +87167,8 @@ }, "npmPkg": "react-native-keys", "npm": { - "downloads": 15683, - "weekDownloads": 3210, + "downloads": 15130, + "weekDownloads": 3288, "size": 45454803, "latestRelease": "0.7.13", "latestReleaseDate": "2025-09-07T15:48:03.636Z" @@ -87078,7 +87178,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.185, "topicSearchString": "react-native ios android config environment environment-variables secure env jsi jni keys jni-android jni-ios dotenv config-var 12factor protected undecryptable envs" }, { @@ -87142,8 +87242,8 @@ "configPlugin": false }, "npm": { - "downloads": 74972, - "weekDownloads": 12657, + "downloads": 72814, + "weekDownloads": 13955, "size": 103674, "latestRelease": "11.0.11", "latestReleaseDate": "2025-08-27T22:34:39.778Z" @@ -87153,7 +87253,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.163, "topicSearchString": "react-native react native web slider range" }, { @@ -87183,7 +87283,7 @@ "forks": 416, "issues": 41, "subscribers": 32, - "stars": 5425, + "stars": 5427, "dependencies": 2 }, "name": "@lingui/react", @@ -87219,8 +87319,8 @@ "configPlugin": false }, "npm": { - "downloads": 1290835, - "weekDownloads": 247009, + "downloads": 1252229, + "weekDownloads": 263795, "size": 36126, "latestRelease": "5.5.1", "latestReleaseDate": "2025-10-10T09:43:52.512Z" @@ -87233,7 +87333,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.179, "topicSearchString": "react component react-component react-native i18n internationalization i9n translation icu messageformat multilingual localization l10n" }, { @@ -87292,8 +87392,8 @@ "unmaintained": true, "npmPkg": "react-native-ultimate-icons", "npm": { - "downloads": 3, - "weekDownloads": 0, + "downloads": 4, + "weekDownloads": 1, "size": 24333, "latestRelease": "0.2.0", "latestReleaseDate": "2023-07-15T11:36:55.862Z" @@ -87364,8 +87464,8 @@ "unmaintained": true, "npmPkg": "react-native-click-outside", "npm": { - "downloads": 24538, - "weekDownloads": 4285, + "downloads": 23747, + "weekDownloads": 4655, "size": 39515, "latestRelease": "0.1.1", "latestReleaseDate": "2023-07-21T20:00:49.916Z" @@ -87375,7 +87475,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": -0.583, "topicSearchString": "react-native ios android click-outside open-source hacktoberfest" }, { @@ -87385,6 +87485,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/jakex7/react-native-localization-settings", @@ -87438,8 +87539,8 @@ }, "npmPkg": "react-native-localization-settings", "npm": { - "downloads": 34930, - "weekDownloads": 6403, + "downloads": 34335, + "weekDownloads": 6929, "size": 63171, "latestRelease": "1.2.0", "latestReleaseDate": "2024-11-12T17:47:50.621Z" @@ -87449,7 +87550,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.172, "topicSearchString": "react-native ios android i18n i18next i18n-react l10n language per-app hacktoberfest" }, { @@ -87518,8 +87619,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 33604, - "weekDownloads": 5703, + "downloads": 32403, + "weekDownloads": 5428, "size": 475635, "latestRelease": "1.6.2", "latestReleaseDate": "2025-08-01T16:13:58.249Z" @@ -87528,7 +87629,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.142, "topicSearchString": "react react-native apple-pay google-pay payment-request payments android ios android-pay apple-pay payment-intents cross-platform payments expo expo-plugin" }, { @@ -87587,8 +87688,8 @@ }, "npmPkg": "react-native-detect-maestro", "npm": { - "downloads": 387, - "weekDownloads": 62, + "downloads": 379, + "weekDownloads": 66, "size": 18277, "latestRelease": "1.0.7", "latestReleaseDate": "2023-11-14T22:27:25.844Z" @@ -87598,7 +87699,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.864, + "popularity": -0.852, "topicSearchString": "react react-native component android ios maestro e2e is-e2e is-maestro" }, { @@ -87654,8 +87755,8 @@ }, "npmPkg": "react-native-widget-picker", "npm": { - "downloads": 1552, - "weekDownloads": 354, + "downloads": 1548, + "weekDownloads": 355, "size": 20301, "latestRelease": "1.1.0", "latestReleaseDate": "2025-08-01T09:31:00.302Z" @@ -87664,7 +87765,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.056, + "popularity": -0.055, "topicSearchString": "react react-native component android android-widget widget home-screen home-screen-widget" }, { @@ -87721,8 +87822,8 @@ }, "npmPkg": "react-native-zoom-reanimated", "npm": { - "downloads": 23873, - "weekDownloads": 3812, + "downloads": 23066, + "weekDownloads": 3640, "size": 26705, "latestRelease": "1.4.10", "latestReleaseDate": "2025-08-13T08:48:47.191Z" @@ -87732,7 +87833,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.136, + "popularity": 0.134, "topicSearchString": "zoom react-native reanimated gesture-handler" }, { @@ -87801,8 +87902,8 @@ "configPlugin": false }, "npm": { - "downloads": 235, - "weekDownloads": 9, + "downloads": 249, + "weekDownloads": 15, "size": 499557, "latestRelease": "2.1.0", "latestReleaseDate": "2023-11-10T17:25:29.232Z" @@ -87812,7 +87913,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.967, + "popularity": -0.948, "topicSearchString": "android ios web react-native reactjs native react ui-library responsive-ui bootstrap dark-mode mergerefs ui kit component" }, { @@ -87874,8 +87975,8 @@ "configPlugin": false }, "npm": { - "downloads": 2388, - "weekDownloads": 312, + "downloads": 2334, + "weekDownloads": 342, "size": 862741, "latestRelease": "3.16.0", "latestReleaseDate": "2025-10-15T07:56:06.477Z" @@ -87885,7 +87986,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.111, + "popularity": 0.125, "topicSearchString": "react-native situm indoor-positioning indoor-maps wayfinding ios android" }, { @@ -88090,8 +88191,8 @@ "unmaintained": true, "npmPkg": "react-native-palette-picker", "npm": { - "downloads": 61, - "weekDownloads": 32, + "downloads": 39, + "weekDownloads": 11, "size": 42415, "latestRelease": "0.2.1", "latestReleaseDate": "2023-08-19T09:04:25.836Z" @@ -88101,7 +88202,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.293, + "popularity": -1.506, "topicSearchString": "react-native android react palette image-colors dominant image color palette-api" }, { @@ -88163,8 +88264,8 @@ }, "npmPkg": "react-native-vimeo-iframe", "npm": { - "downloads": 29980, - "weekDownloads": 5887, + "downloads": 28908, + "weekDownloads": 5791, "size": 41476, "latestRelease": "1.2.1", "latestReleaseDate": "2023-01-02T20:12:10.641Z" @@ -88174,7 +88275,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.17, "topicSearchString": "android ios react-native component-library vimeo videos hacktoberfest video-player javascript video" }, { @@ -88230,8 +88331,8 @@ "unmaintained": true, "npmPkg": "react-native-components-tracking", "npm": { - "downloads": 62, - "weekDownloads": 5, + "downloads": 61, + "weekDownloads": 4, "size": 63148, "latestRelease": "1.1.2", "latestReleaseDate": "2023-03-25T17:33:46.735Z" @@ -88241,7 +88342,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.679, + "popularity": -1.693, "topicSearchString": "react-native ios android" }, { @@ -88299,7 +88400,7 @@ "unmaintained": true, "npmPkg": "react-native-squish-button", "npm": { - "downloads": 11, + "downloads": 12, "weekDownloads": 0, "size": 27945, "latestRelease": "0.3.0", @@ -88340,13 +88441,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-09T06:39:36Z", + "updatedAt": "2025-10-19T15:18:02Z", "createdAt": "2023-08-10T10:55:24Z", - "pushedAt": "2025-10-09T06:39:36Z", + "pushedAt": "2025-10-19T15:18:02Z", "forks": 22, "issues": 1, "subscribers": 1, - "stars": 202, + "stars": 203, "dependencies": 0 }, "name": "react-native-timer-picker", @@ -88397,11 +88498,11 @@ }, "npmPkg": "react-native-timer-picker", "npm": { - "downloads": 22917, - "weekDownloads": 4038, - "size": 1264291, - "latestRelease": "2.2.1", - "latestReleaseDate": "2025-10-09T06:53:18.137Z" + "downloads": 22556, + "weekDownloads": 4132, + "size": 1266770, + "latestRelease": "2.2.3", + "latestReleaseDate": "2025-10-19T15:22:27.949Z" }, "score": 57, "matchingScoreModifiers": [ @@ -88409,7 +88510,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.156, "topicSearchString": "react react-native expo duration picker time timer alarm modal durationpicker duration-picker duration-picker-modal timepicker time-picker alarmpicker alarm-picker alarm-picker-modal timerpicker timer-picker timer-picker-modal expo-duration-picker expo-time-picker expo-timepicker expo-durationpicker component components" }, { @@ -88464,8 +88565,8 @@ }, "npmPkg": "react-native-simple-keypad", "npm": { - "downloads": 521, - "weekDownloads": 113, + "downloads": 517, + "weekDownloads": 148, "size": 77129, "latestRelease": "0.5.2", "latestReleaseDate": "2025-09-07T18:53:14.298Z" @@ -88474,7 +88575,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.565, + "popularity": -0.505, "topicSearchString": "react-native ios android" }, { @@ -88537,8 +88638,8 @@ "unmaintained": true, "npmPkg": "react-native-responsive-scalability", "npm": { - "downloads": 29, - "weekDownloads": 4, + "downloads": 28, + "weekDownloads": 2, "size": 68546, "latestRelease": "1.2.0", "latestReleaseDate": "2023-09-09T14:58:29.863Z" @@ -88548,7 +88649,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.617, + "popularity": -1.683, "topicSearchString": "react-native ios android package responsive expo" }, { @@ -88607,8 +88708,8 @@ }, "npmPkg": "react-native-http-bridge-refurbished", "npm": { - "downloads": 1533, - "weekDownloads": 167, + "downloads": 1492, + "weekDownloads": 224, "size": 69452, "latestRelease": "1.2.9", "latestReleaseDate": "2023-09-22T14:55:05.401Z" @@ -88618,7 +88719,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.093, + "popularity": 0.128, "topicSearchString": "react-component react-native nanohttpd gcdhttpserver http server bridge webserver http-server rest-api typescript" }, { @@ -88677,8 +88778,8 @@ "unmaintained": true, "npmPkg": "react-native-simple-bcrypt", "npm": { - "downloads": 57, - "weekDownloads": 24, + "downloads": 55, + "weekDownloads": 23, "size": 47929, "latestRelease": "0.3.0", "latestReleaseDate": "2023-08-31T20:28:53.716Z" @@ -88688,7 +88789,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.381, + "popularity": -1.367, "topicSearchString": "react-native bcrypt native hash ios android" }, { @@ -88757,8 +88858,8 @@ "configPlugin": false }, "npm": { - "downloads": 8016, - "weekDownloads": 1471, + "downloads": 7926, + "weekDownloads": 1591, "size": 30875, "latestRelease": "0.3.0", "latestReleaseDate": "2024-02-12T09:46:16.358Z" @@ -88768,7 +88869,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.171, "topicSearchString": "react-native ios android stagger exit-animation enter-animation animation stagger-view reanimated2 reanimated3 layout-animation stagger-animation" }, { @@ -88836,8 +88937,8 @@ "configPlugin": false }, "npm": { - "downloads": 54040, - "weekDownloads": 10992, + "downloads": 51433, + "weekDownloads": 10876, "size": 42746, "latestRelease": "0.5.2", "latestReleaseDate": "2025-02-11T13:09:25.360Z" @@ -88848,7 +88949,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.18, "topicSearchString": "react-native ios android marquee carousel slider ticker horizontal-scrolling-carousels infinite-ticker expo news-ticker typescript reanimated reanimated3" }, { @@ -88912,8 +89013,8 @@ }, "npmPkg": "expo-drag-drop-content-view", "npm": { - "downloads": 14423, - "weekDownloads": 3967, + "downloads": 13300, + "weekDownloads": 3543, "size": 139828, "latestRelease": "0.9.0", "latestReleaseDate": "2025-06-29T16:51:37.012Z" @@ -88923,7 +89024,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.234, + "popularity": 0.226, "topicSearchString": "react-native expo expo-drag-drop-content-view expodragdropcontentview" }, { @@ -88987,8 +89088,8 @@ "unmaintained": true, "npmPkg": "rn-wave-bottom-bar", "npm": { - "downloads": 918, - "weekDownloads": 130, + "downloads": 898, + "weekDownloads": 141, "size": 214359, "latestRelease": "2.2.36", "latestReleaseDate": "2023-04-17T18:12:22.056Z" @@ -88999,7 +89100,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.38, + "popularity": -1.366, "topicSearchString": "react-native react-navigation bottom-bar tab-bar animation bottom-tabs curved wave" }, { @@ -89017,6 +89118,7 @@ "android": true, "newArchitecture": true, "newArchitectureNote": "Supported from v10 release using the interop layer.", + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/maplibre/maplibre-react-native", @@ -89032,7 +89134,7 @@ "createdAt": "2022-11-03T10:37:07Z", "pushedAt": "2025-09-24T06:20:17Z", "forks": 88, - "issues": 59, + "issues": 61, "subscribers": 9, "stars": 433, "dependencies": 5 @@ -89065,8 +89167,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 35889, - "weekDownloads": 6239, + "downloads": 35500, + "weekDownloads": 6711, "size": 1963845, "latestRelease": "10.2.1", "latestReleaseDate": "2025-08-15T17:35:43.511Z" @@ -89077,7 +89179,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.161, "topicSearchString": "maps ios android maplibre react-native mapbox react" }, { @@ -89112,7 +89214,7 @@ "forks": 114, "issues": 29, "subscribers": 8, - "stars": 394, + "stars": 395, "dependencies": 1 }, "name": "react-tinder-card", @@ -89152,8 +89254,8 @@ }, "npmPkg": "react-tinder-card", "npm": { - "downloads": 28846, - "weekDownloads": 5388, + "downloads": 28568, + "weekDownloads": 5351, "size": 30606, "latestRelease": "1.6.4", "latestReleaseDate": "2023-11-07T07:43:18.210Z" @@ -89197,7 +89299,7 @@ "forks": 37, "issues": 21, "subscribers": 20, - "stars": 454, + "stars": 455, "dependencies": 3 }, "name": "react-native-spotlight-tour", @@ -89230,8 +89332,8 @@ "configPlugin": false }, "npm": { - "downloads": 7459, - "weekDownloads": 1229, + "downloads": 7352, + "weekDownloads": 1403, "size": 142400, "latestRelease": "4.0.0", "latestReleaseDate": "2025-06-23T22:01:05.813Z" @@ -89241,7 +89343,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.14, + "popularity": 0.162, "topicSearchString": "app-tour android customizable ios react-native step-by-step spotlight spotlight-tour tour user-guide" }, { @@ -89318,8 +89420,8 @@ }, "npmPkg": "react-native-international-phone-number", "npm": { - "downloads": 62638, - "weekDownloads": 13096, + "downloads": 61169, + "weekDownloads": 13439, "size": 108953, "latestRelease": "0.11.0", "latestReleaseDate": "2025-10-01T10:19:21.858Z" @@ -89330,7 +89432,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.187, "topicSearchString": "mobile ios android react-native expo components typescript react-hook-form mask-input phone-input international-number-phone picker country-picker country flag custom-lib codes search animated input flags" }, { @@ -89359,10 +89461,10 @@ "updatedAt": "2025-10-16T11:11:14Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-16T11:11:14Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-image", @@ -89388,8 +89490,8 @@ }, "npmPkg": "expo-image", "npm": { - "downloads": 3239848, - "weekDownloads": 633664, + "downloads": 3174927, + "weekDownloads": 637184, "size": 839673, "latestRelease": "3.0.9", "latestReleaseDate": "2025-10-07T08:47:12.254Z" @@ -89403,7 +89505,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.171, "topicSearchString": "react-native" }, { @@ -89460,8 +89562,8 @@ }, "unmaintained": true, "npm": { - "downloads": 803, - "weekDownloads": 79, + "downloads": 811, + "weekDownloads": 90, "size": 387379, "latestRelease": "2.6.1", "latestReleaseDate": "2024-08-16T11:52:33.020Z" @@ -89471,7 +89573,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.416, + "popularity": -1.405, "topicSearchString": "react-native android braintree hacktoberfest ios" }, { @@ -89569,7 +89671,7 @@ "forks": 79, "issues": 13, "subscribers": 11, - "stars": 524, + "stars": 526, "dependencies": 0 }, "name": "@react-native-ml-kit/text-recognition", @@ -89593,8 +89695,8 @@ "configPlugin": false }, "npm": { - "downloads": 20255, - "weekDownloads": 3167, + "downloads": 20352, + "weekDownloads": 3380, "size": 32527, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-01T22:08:45.303Z" @@ -89604,7 +89706,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.133, + "popularity": 0.141, "topicSearchString": "react-native" }, { @@ -89629,7 +89731,7 @@ "forks": 79, "issues": 13, "subscribers": 11, - "stars": 524, + "stars": 526, "dependencies": 0 }, "name": "@react-native-ml-kit/face-detection", @@ -89653,8 +89755,8 @@ "configPlugin": false }, "npm": { - "downloads": 5772, - "weekDownloads": 1323, + "downloads": 5469, + "weekDownloads": 1260, "size": 42493, "latestRelease": "2.0.1", "latestReleaseDate": "2025-09-01T22:34:38.556Z" @@ -89664,7 +89766,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.195, + "popularity": 0.196, "topicSearchString": "react-native" }, { @@ -89689,7 +89791,7 @@ "forks": 79, "issues": 13, "subscribers": 11, - "stars": 524, + "stars": 526, "dependencies": 0 }, "name": "@react-native-ml-kit/image-labeling", @@ -89713,8 +89815,8 @@ "configPlugin": false }, "npm": { - "downloads": 506, - "weekDownloads": 113, + "downloads": 510, + "weekDownloads": 102, "size": 22870, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-01T22:09:46.327Z" @@ -89724,7 +89826,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.56, + "popularity": -0.58, "topicSearchString": "react-native" }, { @@ -89749,7 +89851,7 @@ "forks": 79, "issues": 13, "subscribers": 11, - "stars": 524, + "stars": 526, "dependencies": 0 }, "name": "@react-native-ml-kit/barcode-scanning", @@ -89773,8 +89875,8 @@ "configPlugin": false }, "npm": { - "downloads": 7213, - "weekDownloads": 1237, + "downloads": 7081, + "weekDownloads": 1308, "size": 48399, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-01T22:09:27.943Z" @@ -89784,7 +89886,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.157, "topicSearchString": "react-native" }, { @@ -89809,7 +89911,7 @@ "forks": 79, "issues": 13, "subscribers": 11, - "stars": 524, + "stars": 526, "dependencies": 0 }, "name": "@react-native-ml-kit/identify-languages", @@ -89833,8 +89935,8 @@ "configPlugin": false }, "npm": { - "downloads": 1246, - "weekDownloads": 213, + "downloads": 1216, + "weekDownloads": 279, "size": 22758, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-01T22:10:08.433Z" @@ -89844,7 +89946,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.145, + "popularity": 0.195, "topicSearchString": "react-native" }, { @@ -89868,7 +89970,7 @@ "forks": 79, "issues": 13, "subscribers": 11, - "stars": 524, + "stars": 526, "dependencies": 0 }, "name": "@react-native-ml-kit/translate-text", @@ -89893,7 +89995,7 @@ }, "npm": { "downloads": 165, - "weekDownloads": 43, + "weekDownloads": 37, "size": 23994, "latestRelease": "0.5.0", "latestReleaseDate": "2025-09-01T22:10:31.791Z" @@ -89903,7 +90005,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.524, + "popularity": -0.555, "topicSearchString": "react-native" }, { @@ -89962,8 +90064,8 @@ }, "npmPkg": "react-native-vis-network", "npm": { - "downloads": 307, - "weekDownloads": 12, + "downloads": 308, + "weekDownloads": 20, "size": 2985762, "latestRelease": "2.0.0", "latestReleaseDate": "2024-03-10T10:35:42.889Z" @@ -89973,7 +90075,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.967, + "popularity": -0.944, "topicSearchString": "react-native ios android" }, { @@ -90006,7 +90108,7 @@ "forks": 43, "issues": 7, "subscribers": 2, - "stars": 395, + "stars": 396, "dependencies": 0 }, "name": "react-native-otp-entry", @@ -90047,8 +90149,8 @@ }, "npmPkg": "react-native-otp-entry", "npm": { - "downloads": 215900, - "weekDownloads": 44258, + "downloads": 209677, + "weekDownloads": 43017, "size": 28641, "latestRelease": "1.8.5", "latestReleaseDate": "2025-06-20T19:54:17.347Z" @@ -90089,7 +90191,7 @@ "forks": 26, "issues": 17, "subscribers": 3, - "stars": 360, + "stars": 361, "dependencies": 0 }, "name": "@baronha/ting", @@ -90121,8 +90223,8 @@ "configPlugin": false }, "npm": { - "downloads": 1559, - "weekDownloads": 357, + "downloads": 1517, + "weekDownloads": 412, "size": 151748, "latestRelease": "1.2.3", "latestReleaseDate": "2024-11-10T17:04:04.638Z" @@ -90133,7 +90235,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.195, + "popularity": 0.231, "topicSearchString": "react-native ios android native-module new-architecture toast alert toast-notifications" }, { @@ -90161,7 +90263,7 @@ "updatedAt": "2024-05-15T09:15:35Z", "createdAt": "2021-07-30T16:41:44Z", "pushedAt": "2024-05-15T09:15:35Z", - "forks": 152, + "forks": 151, "issues": 43, "subscribers": 6, "stars": 528, @@ -90195,8 +90297,8 @@ "configPlugin": false }, "npm": { - "downloads": 3013, - "weekDownloads": 551, + "downloads": 2932, + "weekDownloads": 550, "size": 3918263, "latestRelease": "1.1.6", "latestReleaseDate": "2023-01-02T15:24:54.818Z" @@ -90207,7 +90309,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.16, "topicSearchString": "react-native ios android photo photoeditor imageeditor photoedit" }, { @@ -90271,8 +90373,8 @@ }, "npmPkg": "react-native-skia-shadow", "npm": { - "downloads": 130, - "weekDownloads": 6, + "downloads": 131, + "weekDownloads": 7, "size": 41904, "latestRelease": "1.2.0", "latestReleaseDate": "2024-05-15T17:26:58.741Z" @@ -90282,7 +90384,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.71, + "popularity": -0.703, "topicSearchString": "react-native ios android expo shadow skia package" }, { @@ -90340,8 +90442,8 @@ }, "npmPkg": "react-native-orientation-manager", "npm": { - "downloads": 911, - "weekDownloads": 138, + "downloads": 878, + "weekDownloads": 131, "size": 243088, "latestRelease": "1.1.2", "latestReleaseDate": "2023-11-12T11:15:15.657Z" @@ -90351,7 +90453,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.871, + "popularity": -0.873, "topicSearchString": "react-native ios android windows orientation" }, { @@ -90427,8 +90529,8 @@ "configPlugin": false }, "npm": { - "downloads": 12301, - "weekDownloads": 2503, + "downloads": 11666, + "weekDownloads": 2518, "size": 232673, "latestRelease": "0.4.3", "latestReleaseDate": "2024-10-29T17:24:31.757Z" @@ -90439,7 +90541,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.184, "topicSearchString": "react-native ios android bottom-sheet devvie-bottom-sheet @devvie/bottom-sheet tiny-bottom-sheet flexible-bottom-sheet modal-bottom-sheet sheet ui-sheet bottom-sheets bottomsheet bottomsheet-android bottomsheetios" }, { @@ -90474,7 +90576,7 @@ "forks": 89, "issues": 35, "subscribers": 5, - "stars": 770, + "stars": 772, "dependencies": 5 }, "name": "react-native-ui-datepicker", @@ -90515,8 +90617,8 @@ }, "npmPkg": "react-native-ui-datepicker", "npm": { - "downloads": 125121, - "weekDownloads": 21788, + "downloads": 122162, + "weekDownloads": 22482, "size": 765502, "latestRelease": "3.1.2", "latestReleaseDate": "2025-03-20T15:20:46.804Z" @@ -90528,7 +90630,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.156, "topicSearchString": "react-native ios android ui-datetpicker datetime datetime-picker datetpicker datet-picker timepicker time-picker calendar daterange datepicker datetimepicker picker web" }, { @@ -90591,8 +90693,8 @@ }, "npmPkg": "react-native-highlighter", "npm": { - "downloads": 2189, - "weekDownloads": 555, + "downloads": 2042, + "weekDownloads": 483, "size": 60015, "latestRelease": "1.0.7", "latestReleaseDate": "2024-04-09T20:51:37.002Z" @@ -90602,7 +90704,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.216, + "popularity": 0.201, "topicSearchString": "react-native ios android highlight keywords web" }, { @@ -90659,8 +90761,8 @@ }, "npmPkg": "react-native-vercel-ai", "npm": { - "downloads": 926, - "weekDownloads": 162, + "downloads": 901, + "weekDownloads": 171, "size": 155473, "latestRelease": "0.1.2", "latestReleaseDate": "2023-12-05T17:30:49.278Z" @@ -90671,7 +90773,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, + "popularity": -0.589, "topicSearchString": "react-native ios android" }, { @@ -90732,7 +90834,7 @@ }, "npmPkg": "react-native-animated-blur-view", "npm": { - "downloads": 126, + "downloads": 127, "weekDownloads": 10, "size": 10198, "latestRelease": "0.1.4", @@ -90753,6 +90855,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/mrousavy/react-native-fast-tflite", @@ -90816,8 +90919,8 @@ }, "npmPkg": "react-native-fast-tflite", "npm": { - "downloads": 14711, - "weekDownloads": 2313, + "downloads": 14337, + "weekDownloads": 2423, "size": 189018, "latestRelease": "1.6.1", "latestReleaseDate": "2025-04-08T08:31:24.369Z" @@ -90828,7 +90931,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.134, + "popularity": 0.144, "topicSearchString": "react-native tensorflow vision-camera tflite lite tensorflowlite tensorflow-lite visioncamera vision camera ios android ai arraybuffer detection facial-recognition fast ml native object-detection react" }, { @@ -90893,8 +90996,8 @@ }, "npmPkg": "react-native-worklets-core", "npm": { - "downloads": 269679, - "weekDownloads": 42523, + "downloads": 266356, + "weekDownloads": 44506, "size": 401802, "latestRelease": "1.6.2", "latestReleaseDate": "2025-08-06T15:31:51.354Z" @@ -90906,7 +91009,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.134, + "popularity": 0.142, "topicSearchString": "react-native ios android async background multithreading native react threads worklet worklets hacktoberfest" }, { @@ -90962,8 +91065,8 @@ "unmaintained": true, "npmPkg": "vision-camera-face-detector", "npm": { - "downloads": 887, - "weekDownloads": 155, + "downloads": 872, + "weekDownloads": 161, "size": 105636, "latestRelease": "0.1.8", "latestReleaseDate": "2021-10-14T18:41:23.142Z" @@ -90974,7 +91077,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.351, + "popularity": -1.343, "topicSearchString": "react-native ios android" }, { @@ -91038,8 +91141,8 @@ }, "npmPkg": "react-native-awesome-slider", "npm": { - "downloads": 127395, - "weekDownloads": 29481, + "downloads": 123412, + "weekDownloads": 27310, "size": 183923, "latestRelease": "2.9.0", "latestReleaseDate": "2024-12-30T13:17:41.647Z" @@ -91050,7 +91153,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.197, + "popularity": 0.188, "topicSearchString": "react-native reanimted gesture-handle slider scrubber slider-haptics-feedback component reanimated gesture-handler" }, { @@ -91080,7 +91183,7 @@ "forks": 88, "issues": 10, "subscribers": 10, - "stars": 2557, + "stars": 2559, "dependencies": 0 }, "name": "react-native-unistyles", @@ -91116,8 +91219,8 @@ }, "npmPkg": "react-native-unistyles", "npm": { - "downloads": 221999, - "weekDownloads": 39712, + "downloads": 216141, + "weekDownloads": 40540, "size": 1396377, "latestRelease": "3.0.15", "latestReleaseDate": "2025-10-12T06:30:13.362Z" @@ -91128,7 +91231,7 @@ "Known", "Recently updated" ], - "popularity": 0.152, + "popularity": 0.159, "topicSearchString": "react-native ios android web expo fabric react typescript macos windows" }, { @@ -91189,8 +91292,8 @@ }, "npmPkg": "react-native-theme-switch-animation", "npm": { - "downloads": 5624, - "weekDownloads": 1391, + "downloads": 5445, + "weekDownloads": 1646, "size": 75820, "latestRelease": "0.8.0", "latestReleaseDate": "2024-08-16T22:04:30.829Z" @@ -91201,7 +91304,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.21, + "popularity": 0.257, "topicSearchString": "react-native ios android animation theme dark-mode darkmode lightmode" }, { @@ -91265,8 +91368,8 @@ }, "npmPkg": "react-native-drop-shadow", "npm": { - "downloads": 84846, - "weekDownloads": 18301, + "downloads": 80807, + "weekDownloads": 17822, "size": 49455, "latestRelease": "1.0.3", "latestReleaseDate": "2025-02-12T04:07:28.064Z" @@ -91277,7 +91380,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.183, + "popularity": 0.187, "topicSearchString": "react-native shadow android drop-shadow new shadow-android-react-native shadow-react-native shadow-react" }, { @@ -91288,6 +91391,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/AppAndFlow/expo-camera-characteristics", @@ -91334,8 +91438,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 137, - "weekDownloads": 19, + "downloads": 138, + "weekDownloads": 12, "size": 43272, "latestRelease": "1.1.0", "latestReleaseDate": "2024-01-29T17:01:22.562Z" @@ -91345,7 +91449,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.881, + "popularity": -0.925, "topicSearchString": "react-native expo expo-camera-characteristics expocameracharacteristics camera" }, { @@ -91378,7 +91482,7 @@ "forks": 201, "issues": 182, "subscribers": 6, - "stars": 1024, + "stars": 1025, "dependencies": 1 }, "name": "react-native-collapsible-tab-view", @@ -91416,8 +91520,8 @@ }, "npmPkg": "react-native-collapsible-tab-view", "npm": { - "downloads": 162384, - "weekDownloads": 32434, + "downloads": 155904, + "weekDownloads": 30824, "size": 417002, "latestRelease": "8.0.1", "latestReleaseDate": "2025-03-29T18:43:59.338Z" @@ -91430,7 +91534,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.168, "topicSearchString": "component react-component react-native ios android tab swipe scrollable coverflow react expo tabs tabview" }, { @@ -91491,8 +91595,8 @@ }, "npmPkg": "react-native-easing-gradient", "npm": { - "downloads": 41052, - "weekDownloads": 5947, + "downloads": 39863, + "weekDownloads": 6503, "size": 978254, "latestRelease": "1.1.1", "latestReleaseDate": "2024-02-27T09:35:28.020Z" @@ -91503,7 +91607,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.123, + "popularity": 0.139, "topicSearchString": "react react-native gradients easing smooth expo" }, { @@ -91569,7 +91673,7 @@ }, "npmPkg": "expo-stable-diffusion", "npm": { - "downloads": 55, + "downloads": 54, "weekDownloads": 8, "size": 147000, "latestRelease": "0.2.0", @@ -91644,8 +91748,8 @@ }, "npmPkg": "react-native-bullet-graph", "npm": { - "downloads": 154, - "weekDownloads": 42, + "downloads": 142, + "weekDownloads": 34, "size": 900516, "latestRelease": "1.0.3", "latestReleaseDate": "2023-11-23T11:04:11.290Z" @@ -91655,7 +91759,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.767, + "popularity": -0.794, "topicSearchString": "react-native chart charts graph graphs data-visualization bullet-graph bullet-chart stats analysis analytics visualization" }, { @@ -91714,8 +91818,8 @@ }, "npmPkg": "react-native-liquid-gauge", "npm": { - "downloads": 289, - "weekDownloads": 68, + "downloads": 282, + "weekDownloads": 64, "size": 225234, "latestRelease": "0.1.3", "latestReleaseDate": "2023-10-20T08:16:20.100Z" @@ -91725,7 +91829,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.55, + "popularity": -0.556, "topicSearchString": "react-native ios android" }, { @@ -91733,6 +91837,7 @@ "npmPkg": "@azesmway/react-native-unity", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/azesmway/react-native-unity", @@ -91779,8 +91884,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 5048, - "weekDownloads": 950, + "downloads": 4848, + "weekDownloads": 919, "size": 73930, "latestRelease": "1.0.11", "latestReleaseDate": "2024-12-12T16:33:43.257Z" @@ -91792,7 +91897,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.161, "topicSearchString": "react-native ios android unity" }, { @@ -91825,7 +91930,7 @@ "forks": 61, "issues": 29, "subscribers": 9, - "stars": 2078, + "stars": 2079, "dependencies": 3 }, "name": "zeego", @@ -91854,8 +91959,8 @@ }, "npmPkg": "zeego", "npm": { - "downloads": 128188, - "weekDownloads": 24208, + "downloads": 123395, + "weekDownloads": 24540, "size": 781298, "latestRelease": "3.0.6", "latestReleaseDate": "2025-03-21T16:38:57.917Z" @@ -91866,7 +91971,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.169, "topicSearchString": "react-native ios android" }, { @@ -91922,8 +92027,8 @@ }, "npmPkg": "react-native-video-duration", "npm": { - "downloads": 2166, - "weekDownloads": 486, + "downloads": 2053, + "weekDownloads": 468, "size": 16103, "latestRelease": "0.1.2", "latestReleaseDate": "2023-11-30T08:01:17.163Z" @@ -91933,7 +92038,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.059, + "popularity": -0.056, "topicSearchString": "react-native ios android" }, { @@ -91961,7 +92066,7 @@ "updatedAt": "2025-05-27T08:53:58Z", "createdAt": "2023-09-19T06:55:15Z", "pushedAt": "2025-05-27T08:53:58Z", - "forks": 14, + "forks": 15, "issues": 6, "subscribers": 7, "stars": 48, @@ -91998,8 +92103,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 1709, - "weekDownloads": 225, + "downloads": 1694, + "weekDownloads": 273, "size": 148577, "latestRelease": "0.4.6", "latestReleaseDate": "2025-05-27T08:52:49.986Z" @@ -92008,7 +92113,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.112, + "popularity": 0.137, "topicSearchString": "react-native ios android ble esp32 esp32-idf provisioning softap wifi-configuration" }, { @@ -92037,7 +92142,7 @@ "forks": 70, "issues": 6, "subscribers": 11, - "stars": 847, + "stars": 849, "dependencies": 0 }, "name": "@op-engineering/op-sqlite", @@ -92067,8 +92172,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 102061, - "weekDownloads": 17513, + "downloads": 99372, + "weekDownloads": 19453, "size": 319518114, "latestRelease": "15.0.7", "latestReleaseDate": "2025-10-10T19:41:15.970Z" @@ -92079,7 +92184,7 @@ "Known", "Recently updated" ], - "popularity": 0.146, + "popularity": 0.166, "topicSearchString": "react-native ios android sqlite jsi" }, { @@ -92135,8 +92240,8 @@ }, "npmPkg": "native-wechat", "npm": { - "downloads": 267, - "weekDownloads": 23, + "downloads": 266, + "weekDownloads": 26, "size": 135276, "latestRelease": "1.0.21", "latestReleaseDate": "2025-01-05T15:45:15.682Z" @@ -92146,7 +92251,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.676, + "popularity": -0.666, "topicSearchString": "react-native ios android wechat" }, { @@ -92212,7 +92317,7 @@ "npmPkg": "react-native-zendesk-unified", "npm": { "downloads": 23, - "weekDownloads": 2, + "weekDownloads": 1, "size": 90388, "latestRelease": "0.0.1-alpha.0", "latestReleaseDate": "2023-12-14T16:19:44.479Z" @@ -92222,7 +92327,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.92, + "popularity": -0.96, "topicSearchString": "react-native ios android expo library native-module react support unified zendesk hacktoberfest" }, { @@ -92280,8 +92385,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 4590, - "weekDownloads": 736, + "downloads": 4489, + "weekDownloads": 701, "size": 252656, "latestRelease": "4.0.0", "latestReleaseDate": "2025-01-02T14:42:01.056Z" @@ -92291,7 +92396,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.136, + "popularity": 0.133, "topicSearchString": "bugfender logging debug android ios react-native web" }, { @@ -92349,7 +92454,7 @@ "npmPkg": "react-native-auto-route", "npm": { "downloads": 70, - "weekDownloads": 12, + "weekDownloads": 15, "size": 511657, "latestRelease": "0.3.3", "latestReleaseDate": "2024-04-06T19:57:55.829Z" @@ -92359,7 +92464,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, + "popularity": -1.313, "topicSearchString": "react-native ios android auto-route" }, { @@ -92419,8 +92524,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 5333, - "weekDownloads": 1082, + "downloads": 5176, + "weekDownloads": 1155, "size": 23484, "latestRelease": "1.2.0", "latestReleaseDate": "2024-06-26T16:29:05.123Z" @@ -92430,7 +92535,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.077, + "popularity": -0.06, "topicSearchString": "react-native local-network-permission expo reactnativelocalnetworkpermission ios local-network permissions swift" }, { @@ -92558,8 +92663,8 @@ "configPlugin": false }, "npm": { - "downloads": 321, - "weekDownloads": 45, + "downloads": 317, + "weekDownloads": 47, "size": 35031, "latestRelease": "1.0.0", "latestReleaseDate": "2023-12-24T11:52:46.704Z" @@ -92569,7 +92674,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.88, + "popularity": -0.873, "topicSearchString": "react-native ios android switch switcher toggle reanimated gesture-handler" }, { @@ -92628,8 +92733,8 @@ }, "npmPkg": "react-native-star-rating-widget", "npm": { - "downloads": 44589, - "weekDownloads": 8830, + "downloads": 43569, + "weekDownloads": 9143, "size": 79738, "latestRelease": "1.9.2", "latestReleaseDate": "2024-11-27T20:38:43.683Z" @@ -92640,7 +92745,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.178, "topicSearchString": "react-native ios android" }, { @@ -92707,8 +92812,8 @@ }, "npmPkg": "react-native-release-profiler", "npm": { - "downloads": 303221, - "weekDownloads": 67347, + "downloads": 294603, + "weekDownloads": 67279, "size": 745302, "latestRelease": "0.4.2", "latestReleaseDate": "2025-10-16T10:50:11.182Z" @@ -92719,7 +92824,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.189, + "popularity": 0.194, "topicSearchString": "react-native ios android debug debugger hermes jsi perf performance production profiler profiling release" }, { @@ -92729,6 +92834,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/outsung/expo-dynamic-app-icon", @@ -92776,8 +92882,8 @@ "unmaintained": true, "npmPkg": "expo-dynamic-app-icon", "npm": { - "downloads": 6436, - "weekDownloads": 1249, + "downloads": 6116, + "weekDownloads": 1081, "size": 39183, "latestRelease": "1.2.0", "latestReleaseDate": "2023-07-19T06:56:17.210Z" @@ -92788,7 +92894,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, + "popularity": -0.6, "topicSearchString": "react-native expo expo-dynamic-app-icon expodynamicappicon" }, { @@ -92850,8 +92956,8 @@ }, "npmPkg": "expo-video-metadata", "npm": { - "downloads": 4882, - "weekDownloads": 1022, + "downloads": 4661, + "weekDownloads": 960, "size": 70645, "latestRelease": "1.5.0", "latestReleaseDate": "2024-12-26T20:58:00.172Z" @@ -92861,7 +92967,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.175, "topicSearchString": "react-native expo expo-video-metadata expovideometadata video-module video-metadata video metadata" }, { @@ -92921,8 +93027,8 @@ "configPlugin": false }, "npm": { - "downloads": 123, - "weekDownloads": 4, + "downloads": 124, + "weekDownloads": 6, "size": 279032, "latestRelease": "0.5.6", "latestReleaseDate": "2025-04-25T00:32:13.308Z" @@ -92931,7 +93037,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.721, + "popularity": -0.709, "topicSearchString": "react-native ios android" }, { @@ -92953,13 +93059,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-22T09:18:21Z", + "updatedAt": "2025-10-20T10:02:12Z", "createdAt": "2024-02-16T07:31:38Z", - "pushedAt": "2025-09-22T09:18:21Z", + "pushedAt": "2025-10-20T10:02:12Z", "forks": 30, "issues": 25, "subscribers": 3, - "stars": 132, + "stars": 133, "dependencies": 0 }, "name": "@kesha-antonov/react-native-background-downloader", @@ -92989,8 +93095,8 @@ "configPlugin": false }, "npm": { - "downloads": 16941, - "weekDownloads": 2961, + "downloads": 16562, + "weekDownloads": 3318, "size": 210613, "latestRelease": "3.2.6", "latestReleaseDate": "2025-01-11T05:16:49.301Z" @@ -93000,7 +93106,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.17, "topicSearchString": "react-native background download large-files new-architecture turbo-modules fabric" }, { @@ -93054,8 +93160,8 @@ }, "unmaintained": true, "npm": { - "downloads": 1556891, - "weekDownloads": 297929, + "downloads": 1525277, + "weekDownloads": 303847, "size": 32759, "latestRelease": "3.0.9", "latestReleaseDate": "2023-08-01T12:11:04.037Z" @@ -93067,7 +93173,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.581, "topicSearchString": "react react-native theme provider" }, { @@ -93138,8 +93244,8 @@ }, "npmPkg": "react-native-dynamically-selected-picker", "npm": { - "downloads": 1066, - "weekDownloads": 146, + "downloads": 1049, + "weekDownloads": 160, "size": 84020, "latestRelease": "3.3.0", "latestReleaseDate": "2023-11-26T06:18:14.535Z" @@ -93149,7 +93255,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.117, + "popularity": 0.13, "topicSearchString": "react-native ios android swipe-picker dynamic-select selector select-picker ios-style-android-picker ios-android-picker on-scroll-select picker swiper scroll-change-picker ios-android-select typescript-support" }, { @@ -93216,8 +93322,8 @@ }, "npmPkg": "react-native-popover-view", "npm": { - "downloads": 221968, - "weekDownloads": 43854, + "downloads": 214535, + "weekDownloads": 44505, "size": 309659, "latestRelease": "6.1.0", "latestReleaseDate": "2025-01-15T10:14:34.820Z" @@ -93229,7 +93335,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.176, "topicSearchString": "react-component react-native ios android ui popover modal view component tablet react-navigation" }, { @@ -93281,8 +93387,8 @@ }, "npmPkg": "react-native-heroicons", "npm": { - "downloads": 92026, - "weekDownloads": 20962, + "downloads": 90798, + "weekDownloads": 21107, "size": 3181281, "latestRelease": "4.0.0", "latestReleaseDate": "2024-01-01T20:41:51.051Z" @@ -93293,7 +93399,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.194, + "popularity": 0.198, "topicSearchString": "react react-native heroicons heroiconsui" }, { @@ -93349,8 +93455,8 @@ "unmaintained": true, "npmPkg": "react-native-asset", "npm": { - "downloads": 151021, - "weekDownloads": 27697, + "downloads": 145469, + "weekDownloads": 28670, "size": 26258, "latestRelease": "2.1.1", "latestReleaseDate": "2023-04-27T13:17:51.197Z" @@ -93361,7 +93467,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.582, "topicSearchString": "react-native react native js asset assets link" }, { @@ -93421,8 +93527,8 @@ }, "npmPkg": "react-native-json-tree", "npm": { - "downloads": 52693, - "weekDownloads": 10083, + "downloads": 51346, + "weekDownloads": 10566, "size": 31536, "latestRelease": "1.5.0", "latestReleaseDate": "2025-02-04T23:17:57.105Z" @@ -93433,7 +93539,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.175, "topicSearchString": "react react-native json tree viewer json-viewer theme iterables" }, { @@ -93492,8 +93598,8 @@ }, "npmPkg": "react-native-version-check", "npm": { - "downloads": 185167, - "weekDownloads": 36125, + "downloads": 180055, + "weekDownloads": 37370, "size": 33756, "latestRelease": "3.5.0", "latestReleaseDate": "2025-05-02T10:06:21.963Z" @@ -93504,7 +93610,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.176, "topicSearchString": "react-native android ios version-check version app-version market-version app-store-version" }, { @@ -93563,8 +93669,8 @@ }, "npmPkg": "react-native-version-check-expo", "npm": { - "downloads": 24675, - "weekDownloads": 4669, + "downloads": 24241, + "weekDownloads": 5057, "size": 9633, "latestRelease": "3.5.0", "latestReleaseDate": "2025-05-02T10:06:23.734Z" @@ -93575,7 +93681,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.177, "topicSearchString": "react-native expo android ios version-check version app-version market-version app-store-version" }, { @@ -93636,8 +93742,8 @@ "unmaintained": true, "npmPkg": "react-native-signature-pad", "npm": { - "downloads": 1394, - "weekDownloads": 234, + "downloads": 1352, + "weekDownloads": 231, "size": 23386, "latestRelease": "0.1.2", "latestReleaseDate": "2022-09-20T16:40:45.676Z" @@ -93648,7 +93754,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, + "popularity": -0.605, "topicSearchString": "react-native react-component ios android signature pad signaturepad canvas" }, { @@ -93705,8 +93811,8 @@ }, "npmPkg": "react-native-android-location-enabler", "npm": { - "downloads": 112191, - "weekDownloads": 21541, + "downloads": 111733, + "weekDownloads": 22552, "size": 22104, "latestRelease": "3.0.1", "latestReleaseDate": "2025-07-28T20:44:23.473Z" @@ -93716,7 +93822,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.172, "topicSearchString": "react-native android" }, { @@ -93794,8 +93900,8 @@ }, "npmPkg": "react-native-full-responsive", "npm": { - "downloads": 3206, - "weekDownloads": 531, + "downloads": 3064, + "weekDownloads": 464, "size": 142032, "latestRelease": "2.4.5", "latestReleaseDate": "2025-07-06T17:47:47.823Z" @@ -93804,7 +93910,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.141, + "popularity": 0.129, "topicSearchString": "react-native responsive responsive-ui responsive-font full-responsive responsive-scale responsive-layout responsive-font-size responsive-dimensions media-query responsive-size responsiveness responsiveness-react-native usestyle" }, { @@ -93818,7 +93924,7 @@ "github": { "urls": { "repo": "https://github.com/xmtp/xmtp-react-native", - "homepage": null + "homepage": "https://xmtp.github.io/xmtp-react-native/" }, "stats": { "hasIssues": true, @@ -93826,9 +93932,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-17T20:16:03Z", + "updatedAt": "2025-10-20T18:08:41Z", "createdAt": "2023-04-21T22:58:15Z", - "pushedAt": "2025-10-17T20:16:03Z", + "pushedAt": "2025-10-20T18:08:41Z", "forks": 28, "issues": 43, "subscribers": 17, @@ -93860,8 +93966,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 3416, - "weekDownloads": 156, + "downloads": 3412, + "weekDownloads": 215, "size": 1188013, "latestRelease": "5.0.5", "latestReleaseDate": "2025-10-11T01:10:04.515Z" @@ -93871,7 +93977,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.039, + "popularity": 0.054, "topicSearchString": "react-native expo xmtp-sdk xmtp" }, { @@ -93899,7 +94005,7 @@ "createdAt": "2023-10-03T15:17:51Z", "pushedAt": "2025-10-03T09:36:34Z", "forks": 58, - "issues": 29, + "issues": 28, "subscribers": 11, "stars": 536, "dependencies": 2 @@ -93930,8 +94036,8 @@ "configPlugin": false }, "npm": { - "downloads": 20013, - "weekDownloads": 3501, + "downloads": 20146, + "weekDownloads": 4495, "size": 1313338, "latestRelease": "1.25.1", "latestReleaseDate": "2025-10-03T09:38:41.438Z" @@ -93942,7 +94048,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.19, "topicSearchString": "data-sync offline-first sqlite real-time-data-stream live-data" }, { @@ -94000,8 +94106,8 @@ }, "npmPkg": "swiftui-react-native", "npm": { - "downloads": 1042, - "weekDownloads": 179, + "downloads": 1039, + "weekDownloads": 180, "size": 6657436, "latestRelease": "6.3.3", "latestReleaseDate": "2024-11-13T23:50:45.390Z" @@ -94012,7 +94118,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.148, "topicSearchString": "react-native swiftui" }, { @@ -94024,6 +94130,7 @@ "android": true, "web": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/kuatsu/react-native-cloud-storage", @@ -94072,8 +94179,8 @@ }, "npmPkg": "react-native-cloud-storage", "npm": { - "downloads": 11419, - "weekDownloads": 1518, + "downloads": 11152, + "weekDownloads": 1568, "size": 395217, "latestRelease": "2.3.0", "latestReleaseDate": "2025-06-14T14:10:46.382Z" @@ -94083,7 +94190,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.113, + "popularity": 0.12, "topicSearchString": "react-native ios android icloud google-drive file-system" }, { @@ -94140,8 +94247,8 @@ }, "npmPkg": "expo-squircle-view", "npm": { - "downloads": 4902, - "weekDownloads": 991, + "downloads": 4663, + "weekDownloads": 980, "size": 74605, "latestRelease": "1.1.0", "latestReleaseDate": "2024-08-24T11:42:50.617Z" @@ -94151,7 +94258,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.179, "topicSearchString": "react-native expo expo-squircle-view exposquircleview" }, { @@ -94210,7 +94317,7 @@ }, "npm": { "downloads": 24, - "weekDownloads": 2, + "weekDownloads": 10, "size": 30334, "latestRelease": "1.0.0", "latestReleaseDate": "2024-01-11T10:23:17.415Z" @@ -94220,7 +94327,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.92, + "popularity": -0.6, "topicSearchString": "react-native ios android" }, { @@ -94276,7 +94383,7 @@ }, "npm": { "downloads": 24, - "weekDownloads": 4, + "weekDownloads": 11, "size": 16803, "latestRelease": "1.0.0", "latestReleaseDate": "2024-01-11T10:09:20.867Z" @@ -94286,7 +94393,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.84, + "popularity": -0.56, "topicSearchString": "react-native ios android" }, { @@ -94346,7 +94453,7 @@ }, "npm": { "downloads": 20, - "weekDownloads": 2, + "weekDownloads": 10, "size": 20939, "latestRelease": "1.0.0", "latestReleaseDate": "2024-01-11T10:19:40.289Z" @@ -94356,7 +94463,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.9, + "popularity": -0.5, "topicSearchString": "react-native ios android" }, { @@ -94419,8 +94526,8 @@ }, "npmPkg": "react-native-imagemin-asset-plugin", "npm": { - "downloads": 1121, - "weekDownloads": 189, + "downloads": 1091, + "weekDownloads": 219, "size": 16480, "latestRelease": "2.0.0", "latestReleaseDate": "2024-01-03T01:54:53.677Z" @@ -94430,7 +94537,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.106, + "popularity": -0.079, "topicSearchString": "react-native metro compress image assetplugin imagemin asset-plugin" }, { @@ -94442,6 +94549,7 @@ "android": true, "dev": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/Malaa-tech/expo-custom-assets", @@ -94488,8 +94596,8 @@ }, "npmPkg": "expo-custom-assets", "npm": { - "downloads": 33665, - "weekDownloads": 6759, + "downloads": 32690, + "weekDownloads": 6957, "size": 10699, "latestRelease": "1.5.0", "latestReleaseDate": "2025-08-05T07:47:19.143Z" @@ -94499,7 +94607,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.181, "topicSearchString": "react expo config-plugins prebuild" }, { @@ -94555,7 +94663,7 @@ "unmaintained": true, "npmPkg": "react-native-loader-collection", "npm": { - "downloads": 566, + "downloads": 561, "weekDownloads": 102, "size": 1463934, "latestRelease": "0.8.3", @@ -94566,7 +94674,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.597, + "popularity": -1.595, "topicSearchString": "react-native ios android" }, { @@ -94619,8 +94727,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 138, - "weekDownloads": 13, + "downloads": 143, + "weekDownloads": 17, "size": 33117, "latestRelease": "0.1.3", "latestReleaseDate": "2024-02-09T10:24:03.168Z" @@ -94630,7 +94738,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.919, + "popularity": -0.897, "topicSearchString": "react-native ios android" }, { @@ -94722,7 +94830,7 @@ "createdAt": "2023-11-20T08:24:03Z", "pushedAt": "2025-10-16T21:41:46Z", "forks": 94, - "issues": 46, + "issues": 45, "subscribers": 42, "stars": 1210, "dependencies": 0 @@ -94754,8 +94862,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 77387, - "weekDownloads": 14386, + "downloads": 78560, + "weekDownloads": 15236, "size": 756154, "latestRelease": "0.1.309", "latestReleaseDate": "2025-10-16T21:42:02.426Z" @@ -94767,7 +94875,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.165, "topicSearchString": "react-native ios android markdown textinput" }, { @@ -94810,8 +94918,8 @@ "configPlugin": false }, "npm": { - "downloads": 4803, - "weekDownloads": 699, + "downloads": 4626, + "weekDownloads": 584, "size": 9813, "latestRelease": "1.2.2", "latestReleaseDate": "2025-01-16T16:12:16.814Z" @@ -94822,7 +94930,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.124, + "popularity": 0.107, "topicSearchString": "" }, { @@ -94882,8 +94990,8 @@ }, "npmPkg": "react-native-fast-trie", "npm": { - "downloads": 867, - "weekDownloads": 180, + "downloads": 797, + "weekDownloads": 131, "size": 281741, "latestRelease": "0.2.1", "latestReleaseDate": "2024-01-23T21:12:15.499Z" @@ -94893,7 +95001,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.574, + "popularity": -0.61, "topicSearchString": "react-native ios android fast jsi search trie" }, { @@ -94956,8 +95064,8 @@ }, "npmPkg": "react-native-heap-profiler", "npm": { - "downloads": 67, - "weekDownloads": 3, + "downloads": 66, + "weekDownloads": 2, "size": 53074, "latestRelease": "0.2.2", "latestReleaseDate": "2024-01-27T20:38:37.466Z" @@ -94967,7 +95075,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.96, + "popularity": -0.973, "topicSearchString": "react-native ios android debugging heap jsi memory observability profiling" }, { @@ -95028,8 +95136,8 @@ }, "npmPkg": "react-native-reanimated-progress-steps", "npm": { - "downloads": 278, - "weekDownloads": 29, + "downloads": 276, + "weekDownloads": 32, "size": 142286, "latestRelease": "0.3.0", "latestReleaseDate": "2024-05-26T09:04:12.628Z" @@ -95039,7 +95147,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.911, + "popularity": -0.9, "topicSearchString": "react-native ios android" }, { @@ -95115,8 +95223,8 @@ }, "npmPkg": "react-native-story-view", "npm": { - "downloads": 2839, - "weekDownloads": 470, + "downloads": 2785, + "weekDownloads": 491, "size": 230686, "latestRelease": "3.2.0", "latestReleaseDate": "2024-06-04T04:57:17.775Z" @@ -95127,7 +95235,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.141, + "popularity": 0.15, "topicSearchString": "react react-native typescript story-view status-view rn rn-story-view story status animated-story animated-status gesture-story component android ios animation react-reaction react-component instagram-stories library stories" }, { @@ -95191,7 +95299,7 @@ }, "npmPkg": "react-native-pintyper", "npm": { - "downloads": 40, + "downloads": 55, "weekDownloads": 2, "size": 28105, "latestRelease": "0.1.2", @@ -95202,7 +95310,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.956, + "popularity": -0.967, "topicSearchString": "react react-native ios android pin pincode javascript textinput" }, { @@ -95269,8 +95377,8 @@ }, "npmPkg": "react-native-countdown-timer-hooks", "npm": { - "downloads": 1503, - "weekDownloads": 207, + "downloads": 1477, + "weekDownloads": 240, "size": 311827, "latestRelease": "1.0.5", "latestReleaseDate": "2024-01-24T07:03:17.578Z" @@ -95280,7 +95388,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.117, + "popularity": 0.138, "topicSearchString": "react-native react-component react native mobile ios android countdown timer stopwatch reset hooks" }, { @@ -95348,8 +95456,8 @@ }, "npmPkg": "react-modal-sheet", "npm": { - "downloads": 257948, - "weekDownloads": 49160, + "downloads": 249553, + "weekDownloads": 50351, "size": 435518, "latestRelease": "5.2.1", "latestReleaseDate": "2025-10-12T17:15:09.541Z" @@ -95361,7 +95469,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.172, "topicSearchString": "react modal motion bottom-sheet accessibility framer-motion reactjs" }, { @@ -95415,8 +95523,8 @@ "configPlugin": false }, "npm": { - "downloads": 15721, - "weekDownloads": 3461, + "downloads": 15441, + "weekDownloads": 3779, "size": 85769, "latestRelease": "2.0.1", "latestReleaseDate": "2025-10-08T18:47:23.215Z" @@ -95426,7 +95534,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.187, + "popularity": 0.208, "topicSearchString": "web3 appkit crypto ethereum appkit walletconnect react-native wagmi" }, { @@ -95497,8 +95605,8 @@ }, "npmPkg": "react-native-image-slider-box", "npm": { - "downloads": 9281, - "weekDownloads": 2026, + "downloads": 9035, + "weekDownloads": 2039, "size": 529818, "latestRelease": "2.0.7", "latestReleaseDate": "2022-10-14T05:52:37.363Z" @@ -95509,7 +95617,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.186, + "popularity": 0.192, "topicSearchString": "image-slider-box image-slider react-native slider reactnative react-component component react mobile ios android ui image-paging-slider react-components image library" }, { @@ -95573,8 +95681,8 @@ "unmaintained": true, "npmPkg": "react-native-push-notification-popup", "npm": { - "downloads": 5494, - "weekDownloads": 1058, + "downloads": 5315, + "weekDownloads": 1014, "size": 24202, "latestRelease": "1.7.0", "latestReleaseDate": "2023-08-17T15:22:28.217Z" @@ -95585,7 +95693,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.588, "topicSearchString": "react react-native react-component component push-notification ios android modal popup dialog javascript" }, { @@ -95609,7 +95717,7 @@ "updatedAt": "2025-06-15T14:13:39Z", "createdAt": "2018-09-12T12:12:48Z", "pushedAt": "2025-06-15T14:13:39Z", - "forks": 89, + "forks": 90, "issues": 37, "subscribers": 6, "stars": 348, @@ -95642,8 +95750,8 @@ }, "npmPkg": "react-native-draggable-grid", "npm": { - "downloads": 24002, - "weekDownloads": 4760, + "downloads": 23355, + "weekDownloads": 4859, "size": 61257, "latestRelease": "2.2.2", "latestReleaseDate": "2025-06-15T14:14:03.273Z" @@ -95653,7 +95761,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.177, "topicSearchString": "drag sortable grid react-native component draggable" }, { @@ -95710,8 +95818,8 @@ "unmaintained": true, "npmPkg": "react-native-user-inactivity", "npm": { - "downloads": 33903, - "weekDownloads": 6081, + "downloads": 32665, + "weekDownloads": 6802, "size": 17851, "latestRelease": "1.2.0", "latestReleaseDate": "2021-02-02T09:36:48.629Z" @@ -95722,7 +95830,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, + "popularity": -0.573, "topicSearchString": "react react-native user typescript tracking inactivity component hacktoberfest" }, { @@ -95781,8 +95889,8 @@ }, "npmPkg": "vision-camera-cropper", "npm": { - "downloads": 4058, - "weekDownloads": 663, + "downloads": 3942, + "weekDownloads": 710, "size": 79427, "latestRelease": "1.3.1", "latestReleaseDate": "2024-09-04T05:30:08.641Z" @@ -95792,7 +95900,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.139, + "popularity": 0.153, "topicSearchString": "react-native ios android cropper image-processing vision-camera" }, { @@ -95824,7 +95932,7 @@ "forks": 47, "issues": 10, "subscribers": 7, - "stars": 1360, + "stars": 1362, "dependencies": 1 }, "name": "@marceloterreiro/flash-calendar", @@ -95846,8 +95954,8 @@ "configPlugin": false }, "npm": { - "downloads": 51554, - "weekDownloads": 11075, + "downloads": 49762, + "weekDownloads": 11120, "size": 499107, "latestRelease": "1.3.0", "latestReleaseDate": "2024-12-04T15:57:00.605Z" @@ -95859,7 +95967,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.183, + "popularity": 0.19, "topicSearchString": "" }, { @@ -95915,8 +96023,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 2022, - "weekDownloads": 288, + "downloads": 1950, + "weekDownloads": 355, "size": 27523, "latestRelease": "0.2.1", "latestReleaseDate": "2024-03-01T15:55:28.843Z" @@ -95926,7 +96034,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.129, + "popularity": -0.095, "topicSearchString": "react-native ios android" }, { @@ -95984,8 +96092,8 @@ "configPlugin": false }, "npm": { - "downloads": 10493, - "weekDownloads": 2820, + "downloads": 10178, + "weekDownloads": 2926, "size": 33857, "latestRelease": "1.1.5", "latestReleaseDate": "2024-03-02T20:11:38.778Z" @@ -95994,7 +96102,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.229, + "popularity": 0.244, "topicSearchString": "rails actioncable react-native reactnative websockets react action-cable rails5 rails6 realtime" }, { @@ -96028,7 +96136,7 @@ "forks": 35, "issues": 1, "subscribers": 2, - "stars": 434, + "stars": 436, "dependencies": 1 }, "name": "@codeherence/react-native-header", @@ -96055,8 +96163,8 @@ "configPlugin": false }, "npm": { - "downloads": 7208, - "weekDownloads": 1526, + "downloads": 6989, + "weekDownloads": 1515, "size": 293002, "latestRelease": "1.0.0", "latestReleaseDate": "2025-09-29T03:19:40.016Z" @@ -96067,7 +96175,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.184, "topicSearchString": "react-native ios android" }, { @@ -96125,8 +96233,8 @@ }, "npmPkg": "react-native-uitextview", "npm": { - "downloads": 44389, - "weekDownloads": 8301, + "downloads": 43380, + "weekDownloads": 8528, "size": 137174, "latestRelease": "2.1.0-rc.0", "latestReleaseDate": "2025-06-20T04:41:04.514Z" @@ -96137,7 +96245,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.167, "topicSearchString": "react-native ios android expo text uitextvi" }, { @@ -96162,7 +96270,7 @@ "forks": 39, "issues": 11, "subscribers": 9, - "stars": 325, + "stars": 326, "dependencies": 0 }, "name": "react-native-sse", @@ -96197,8 +96305,8 @@ }, "npmPkg": "react-native-sse", "npm": { - "downloads": 241851, - "weekDownloads": 45169, + "downloads": 235484, + "weekDownloads": 48082, "size": 24084, "latestRelease": "1.2.1", "latestReleaseDate": "2024-03-05T10:37:27.135Z" @@ -96208,7 +96316,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.174, "topicSearchString": "react-native expo event-source sse server-sent-events chatgpt stream ios android eventsource typescript" }, { @@ -96271,8 +96379,8 @@ }, "npmPkg": "expo-foreground-actions", "npm": { - "downloads": 626, - "weekDownloads": 13, + "downloads": 629, + "weekDownloads": 14, "size": 2883980, "latestRelease": "0.4.5", "latestReleaseDate": "2024-03-06T19:55:08.307Z" @@ -96282,7 +96390,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.732, + "popularity": -0.731, "topicSearchString": "react-native expo expo-modules-api expo-modules expo-foreground-actions expoforegroundactions javascript kotlin react swift typescript" }, { @@ -96342,8 +96450,8 @@ }, "npmPkg": "rn-custom-alert-prompt", "npm": { - "downloads": 335, - "weekDownloads": 76, + "downloads": 333, + "weekDownloads": 81, "size": 60411, "latestRelease": "1.1.6", "latestReleaseDate": "2025-09-14T11:17:03.181Z" @@ -96352,7 +96460,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.805, + "popularity": -0.792, "topicSearchString": "react-native alert prompt async promise dialog modal ui-component user-interaction simple lightweight" }, { @@ -96413,7 +96521,7 @@ }, "npmPkg": "rn-segmented-tab-controls", "npm": { - "downloads": 35, + "downloads": 36, "weekDownloads": 4, "size": 20877, "latestRelease": "1.0.6", @@ -96485,8 +96593,8 @@ }, "npmPkg": "react-native-cn-quill", "npm": { - "downloads": 17376, - "weekDownloads": 3553, + "downloads": 16927, + "weekDownloads": 3611, "size": 3465282, "latestRelease": "0.7.20", "latestReleaseDate": "2025-02-10T08:25:48.297Z" @@ -96497,7 +96605,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.174, + "popularity": 0.181, "topicSearchString": "react-native ios android rich-text wysiwyg-editor quill editor" }, { @@ -96555,7 +96663,7 @@ }, "npmPkg": "react-native-purchase-kit", "npm": { - "downloads": 64, + "downloads": 65, "weekDownloads": 0, "size": 156784, "latestRelease": "0.4.0", @@ -96594,7 +96702,7 @@ "forks": 31, "issues": 19, "subscribers": 6, - "stars": 671, + "stars": 672, "dependencies": 0 }, "name": "@candlefinance/faster-image", @@ -96628,8 +96736,8 @@ "configPlugin": false }, "npm": { - "downloads": 22172, - "weekDownloads": 4635, + "downloads": 21442, + "weekDownloads": 4787, "size": 562073, "latestRelease": "1.7.2", "latestReleaseDate": "2024-11-06T14:12:08.078Z" @@ -96640,7 +96748,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.19, "topicSearchString": "react-native ios android image nuke activityindicator transition coil coil-kotlin cache" }, { @@ -96698,8 +96806,8 @@ "configPlugin": false }, "npm": { - "downloads": 51, - "weekDownloads": 8, + "downloads": 57, + "weekDownloads": 9, "size": 36512, "latestRelease": "0.4.5", "latestReleaseDate": "2023-12-02T15:09:35.766Z" @@ -96709,7 +96817,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.617, + "popularity": -0.612, "topicSearchString": "react-native ios android app-icon new-architecture typescript" }, { @@ -96770,7 +96878,7 @@ }, "npmPkg": "react-native-openai", "npm": { - "downloads": 1213, + "downloads": 1203, "weekDownloads": 191, "size": 257419, "latestRelease": "0.6.2", @@ -96781,7 +96889,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.134, + "popularity": 0.135, "topicSearchString": "react-native ios android lightweight openai urlsession kotlin ktor swift" }, { @@ -96842,8 +96950,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 829, - "weekDownloads": 81, + "downloads": 823, + "weekDownloads": 67, "size": 52237, "latestRelease": "0.3.3", "latestReleaseDate": "2024-04-20T18:31:14.842Z" @@ -96853,7 +96961,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.667, + "popularity": -0.681, "topicSearchString": "react-native ios android haptics ahap corehaptics uifeedbackgenerator uikit" }, { @@ -96908,8 +97016,8 @@ "configPlugin": false }, "npm": { - "downloads": 342, - "weekDownloads": 48, + "downloads": 336, + "weekDownloads": 49, "size": 314151, "latestRelease": "2.1.4", "latestReleaseDate": "2024-05-06T09:09:02.472Z" @@ -96921,7 +97029,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.63, + "popularity": -0.626, "topicSearchString": "react-native ios android" }, { @@ -96991,8 +97099,8 @@ }, "npmPkg": "react-native-gif-player", "npm": { - "downloads": 625, - "weekDownloads": 111, + "downloads": 613, + "weekDownloads": 112, "size": 67240, "latestRelease": "1.0.2", "latestReleaseDate": "2024-04-02T19:52:17.865Z" @@ -97002,7 +97110,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.849, + "popularity": -0.844, "topicSearchString": "react-native ios android gif gifs gif-stop gif-loop-count animated-gif gifplayer webp giphy loop tenor" }, { @@ -97058,7 +97166,7 @@ "moduleType": "turbo" }, "npm": { - "downloads": 261, + "downloads": 293, "weekDownloads": 1, "size": 83252, "latestRelease": "0.0.14", @@ -97151,8 +97259,8 @@ "configPlugin": false }, "npm": { - "downloads": 94, - "weekDownloads": 23, + "downloads": 82, + "weekDownloads": 12, "size": 101488, "latestRelease": "0.3.7", "latestReleaseDate": "2024-04-06T22:26:44.687Z" @@ -97163,7 +97271,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.791, + "popularity": -0.874, "topicSearchString": "otp-input ios android react-native otp input authentication verification code-input mobile new-arch-compatible-otp-input otp-text-input two-factor-authentication 2fa-otp-input phone-number android-library ios-library newarchitecture otp-library otp-textfield otp-verification websupport" }, { @@ -97216,7 +97324,7 @@ }, "npmPkg": "react-native-windows-hello", "npm": { - "downloads": 311, + "downloads": 313, "weekDownloads": 25, "size": 54554, "latestRelease": "1.1.0", @@ -97351,8 +97459,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 67037, - "weekDownloads": 12848, + "downloads": 65192, + "weekDownloads": 14259, "size": 184900, "latestRelease": "2.0.6", "latestReleaseDate": "2025-07-10T18:40:47.533Z" @@ -97363,7 +97471,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.186, "topicSearchString": "react-native ios android bottom-sheet native-sheet sheet modal-sheet" }, { @@ -97416,8 +97524,8 @@ "configPlugin": false }, "npm": { - "downloads": 737, - "weekDownloads": 54, + "downloads": 728, + "weekDownloads": 48, "size": 117097, "latestRelease": "1.5.20", "latestReleaseDate": "2024-06-19T03:26:25.156Z" @@ -97427,7 +97535,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.938, + "popularity": -0.944, "topicSearchString": "react-native ssh sftp sftp-client ssh-client" }, { @@ -97500,8 +97608,8 @@ }, "npmPkg": "react-native-slider-intro", "npm": { - "downloads": 523, - "weekDownloads": 91, + "downloads": 528, + "weekDownloads": 85, "size": 180062, "latestRelease": "3.0.1", "latestReleaseDate": "2025-02-14T19:34:28.805Z" @@ -97511,7 +97619,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": -0.613, "topicSearchString": "react-native ios android slider swiper intro carousel tutorial app animation mobile ui react-component customizable mobile-development" }, { @@ -97573,8 +97681,8 @@ }, "npmPkg": "react-native-find-local-devices", "npm": { - "downloads": 621, - "weekDownloads": 75, + "downloads": 618, + "weekDownloads": 77, "size": 39052, "latestRelease": "2.0.9", "latestReleaseDate": "2024-04-14T08:32:46.746Z" @@ -97584,7 +97692,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.647, + "popularity": -0.644, "topicSearchString": "react-native ios android local-network network-discovery websocket-connection portscanning" }, { @@ -97641,7 +97749,7 @@ "configPlugin": false }, "npm": { - "downloads": 60, + "downloads": 63, "weekDownloads": 2, "size": 4253, "latestRelease": "1.0.1", @@ -97664,6 +97772,7 @@ "android": true, "newArchitecture": true, "newArchitectureNote": "Use v1.0.0 or higher for new architecture support", + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/margelo/react-native-quick-crypto", @@ -97719,8 +97828,8 @@ }, "npmPkg": "react-native-quick-crypto", "npm": { - "downloads": 434015, - "weekDownloads": 91556, + "downloads": 419084, + "weekDownloads": 91521, "size": 1118024, "latestRelease": "0.7.17", "latestReleaseDate": "2025-08-04T17:51:22.894Z" @@ -97731,7 +97840,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.179, + "popularity": 0.186, "topicSearchString": "react-native ios android jsi nitro crypto cryptography cryptocurrency c++ fast quick web3" }, { @@ -97790,7 +97899,7 @@ "configPlugin": false }, "npm": { - "downloads": 590, + "downloads": 621, "weekDownloads": 3, "size": 665879, "latestRelease": "0.2.10", @@ -97857,8 +97966,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 373, - "weekDownloads": 9, + "downloads": 390, + "weekDownloads": 10, "size": 53567, "latestRelease": "0.1.2", "latestReleaseDate": "2025-01-23T04:03:19.287Z" @@ -97868,7 +97977,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.729, + "popularity": -0.728, "topicSearchString": "react-native ios android" }, { @@ -97948,8 +98057,8 @@ }, "npmPkg": "rn-inkpad", "npm": { - "downloads": 269, - "weekDownloads": 42, + "downloads": 264, + "weekDownloads": 40, "size": 359214, "latestRelease": "1.0.7", "latestReleaseDate": "2025-09-14T11:55:32.585Z" @@ -97958,7 +98067,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.617, + "popularity": -0.621, "topicSearchString": "react-native ui-library alert prompt actionsheet avatar button floating checkbox interactive radiobuttons card floatingcard images icons inputs navigation bottom-navigation tap-navigation progress progressbar rating rbnb-rating slide switch tab-control toast drawer ui-component user-interaction lightweight" }, { @@ -98023,8 +98132,8 @@ "configPlugin": false }, "npm": { - "downloads": 399, - "weekDownloads": 54, + "downloads": 401, + "weekDownloads": 53, "size": 133983, "latestRelease": "0.3.2", "latestReleaseDate": "2025-01-24T19:43:02.527Z" @@ -98034,7 +98143,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.634, + "popularity": -0.637, "topicSearchString": "react-native ios android recorder expo expo-av audio" }, { @@ -98066,7 +98175,7 @@ "forks": 130, "issues": 8, "subscribers": 64, - "stars": 907, + "stars": 909, "dependencies": 0 }, "name": "react-native-turbo-image", @@ -98097,8 +98206,8 @@ }, "npmPkg": "react-native-turbo-image", "npm": { - "downloads": 99675, - "weekDownloads": 19926, + "downloads": 96255, + "weekDownloads": 19875, "size": 49370683, "latestRelease": "1.23.0", "latestReleaseDate": "2025-08-18T12:25:47.161Z" @@ -98110,7 +98219,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.176, "topicSearchString": "react-native ios android image-caching image-loading" }, { @@ -98140,7 +98249,7 @@ "forks": 273, "issues": 82, "subscribers": 6, - "stars": 2027, + "stars": 2028, "dependencies": 0 }, "name": "react-native-toast-message", @@ -98166,8 +98275,8 @@ }, "npmPkg": "react-native-toast-message", "npm": { - "downloads": 1160511, - "weekDownloads": 228963, + "downloads": 1114582, + "weekDownloads": 234027, "size": 44640, "latestRelease": "2.3.3", "latestReleaseDate": "2025-07-01T09:11:24.146Z" @@ -98179,7 +98288,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.178, "topicSearchString": "react-native toast" }, { @@ -98189,6 +98298,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/gladiuscode/react-native-orientation-director", @@ -98204,7 +98314,7 @@ "createdAt": "2024-05-20T22:20:03Z", "pushedAt": "2025-07-27T15:31:34Z", "forks": 1, - "issues": 1, + "issues": 2, "subscribers": 2, "stars": 84, "dependencies": 0 @@ -98240,8 +98350,8 @@ }, "npmPkg": "react-native-orientation-director", "npm": { - "downloads": 8592, - "weekDownloads": 2178, + "downloads": 8174, + "weekDownloads": 2219, "size": 191320, "latestRelease": "2.6.1", "latestReleaseDate": "2025-07-27T15:31:32.719Z" @@ -98250,7 +98360,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.216, + "popularity": 0.231, "topicSearchString": "react-native ios android device handler interface listener orientation" }, { @@ -98313,8 +98423,8 @@ }, "unmaintained": true, "npm": { - "downloads": 30, - "weekDownloads": 11, + "downloads": 198, + "weekDownloads": 10, "size": 163132, "latestRelease": "0.9.0", "latestReleaseDate": "2021-12-11T19:16:42.461Z" @@ -98324,7 +98434,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.186, + "popularity": -1.457, "topicSearchString": "breeffy react-native android picker component reanimated ui" }, { @@ -98380,8 +98490,8 @@ }, "npmPkg": "react-native-reanimated-table", "npm": { - "downloads": 40742, - "weekDownloads": 11307, + "downloads": 37544, + "weekDownloads": 9129, "size": 73237, "latestRelease": "0.0.2", "latestReleaseDate": "2023-04-27T06:01:57.356Z" @@ -98392,7 +98502,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.236, + "popularity": 0.207, "topicSearchString": "react-native ios android" }, { @@ -98445,8 +98555,8 @@ }, "npmPkg": "react-native-onyx", "npm": { - "downloads": 80106, - "weekDownloads": 14591, + "downloads": 80699, + "weekDownloads": 15719, "size": 329328, "latestRelease": "3.0.6", "latestReleaseDate": "2025-10-10T17:38:45.008Z" @@ -98457,7 +98567,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.166, "topicSearchString": "react-native react persistent-storage pub/sub" }, { @@ -98511,8 +98621,8 @@ "configPlugin": false }, "npm": { - "downloads": 93673, - "weekDownloads": 19103, + "downloads": 89803, + "weekDownloads": 17740, "size": 641755, "latestRelease": "1.10.0", "latestReleaseDate": "2025-07-22T09:11:29.303Z" @@ -98524,7 +98634,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.168, "topicSearchString": "react-native editor rich-editor wysiwyg wysiwyg-editors rn" }, { @@ -98583,8 +98693,8 @@ }, "npmPkg": "expo-atlas", "npm": { - "downloads": 329100, - "weekDownloads": 60659, + "downloads": 319878, + "weekDownloads": 61776, "size": 5136274, "latestRelease": "0.4.3", "latestReleaseDate": "2025-08-14T07:57:38.564Z" @@ -98594,7 +98704,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.164, "topicSearchString": "react-native bundle visualizer explorer expo react devtools" }, { @@ -98656,8 +98766,8 @@ }, "npmPkg": "react-native-gallery-preview", "npm": { - "downloads": 1308, - "weekDownloads": 170, + "downloads": 1261, + "weekDownloads": 152, "size": 262989, "latestRelease": "1.3.4", "latestReleaseDate": "2025-07-11T16:34:42.533Z" @@ -98666,7 +98776,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.111, + "popularity": 0.103, "topicSearchString": "react-native ios android reanimated photo-viewer image-viewer photo-preview photo-gallery gallery gesture-handler image-preview gallery-preview" }, { @@ -98726,8 +98836,8 @@ }, "npmPkg": "react-native-nacl-jsi", "npm": { - "downloads": 771, - "weekDownloads": 111, + "downloads": 762, + "weekDownloads": 131, "size": 14371257, "latestRelease": "0.8.0", "latestReleaseDate": "2024-07-02T06:43:44.254Z" @@ -98737,7 +98847,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.877, + "popularity": -0.854, "topicSearchString": "react-native ios android crypto libsodium sodium nacl" }, { @@ -98790,8 +98900,8 @@ "configPlugin": false }, "npm": { - "downloads": 632946, - "weekDownloads": 133246, + "downloads": 609827, + "weekDownloads": 135345, "size": 1407484, "latestRelease": "2.21.3", "latestReleaseDate": "2025-09-11T12:43:49.928Z" @@ -98802,7 +98912,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.179, + "popularity": 0.189, "topicSearchString": "segment react-native ios android" }, { @@ -98856,8 +98966,8 @@ "configPlugin": false }, "npm": { - "downloads": 620887, - "weekDownloads": 130997, + "downloads": 598162, + "weekDownloads": 133447, "size": 79157, "latestRelease": "1.1.3", "latestReleaseDate": "2024-11-13T15:09:08.069Z" @@ -98868,7 +98978,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.179, + "popularity": 0.19, "topicSearchString": "react-native ios android segment" }, { @@ -98939,8 +99049,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 320222, - "weekDownloads": 59560, + "downloads": 309464, + "weekDownloads": 62852, "size": 414108, "latestRelease": "17.0.1", "latestReleaseDate": "2025-10-09T20:10:21.241Z" @@ -98951,7 +99061,7 @@ "GPL license", "Recently updated" ], - "popularity": 0.158, + "popularity": 0.173, "topicSearchString": "braze appboy react native react-native ios android push in-app analytics segmentation feature-flags javascript sdk typescript marketing-automation customer-engagement in-app-messaging" }, { @@ -99008,8 +99118,8 @@ }, "npmPkg": "burnt", "npm": { - "downloads": 175836, - "weekDownloads": 32492, + "downloads": 173228, + "weekDownloads": 34115, "size": 60059, "latestRelease": "0.13.0", "latestReleaseDate": "2025-03-10T16:09:39.968Z" @@ -99021,7 +99131,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.167, "topicSearchString": "react-native expo burnt" }, { @@ -99034,6 +99144,7 @@ "tvos": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -99048,10 +99159,10 @@ "updatedAt": "2025-10-13T09:29:44Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-13T09:29:44Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-tracking-transparency", @@ -99079,8 +99190,8 @@ }, "npmPkg": "expo-tracking-transparency", "npm": { - "downloads": 486476, - "weekDownloads": 91074, + "downloads": 473001, + "weekDownloads": 93573, "size": 60143, "latestRelease": "6.0.7", "latestReleaseDate": "2025-09-11T20:23:04.256Z" @@ -99094,7 +99205,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.168, "topicSearchString": "react-native expo expo-tracking-transparency" }, { @@ -99116,10 +99227,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-insights", @@ -99150,8 +99261,8 @@ }, "npmPkg": "expo-insights", "npm": { - "downloads": 269526, - "weekDownloads": 51194, + "downloads": 262341, + "weekDownloads": 53031, "size": 44871, "latestRelease": "0.10.7", "latestReleaseDate": "2025-09-11T20:24:42.393Z" @@ -99164,7 +99275,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.172, "topicSearchString": "react-native expo expo-insights expoinsights insights eas" }, { @@ -99192,10 +99303,10 @@ "updatedAt": "2025-10-16T13:53:14Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-16T13:53:14Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-clipboard", @@ -99223,8 +99334,8 @@ }, "npmPkg": "expo-clipboard", "npm": { - "downloads": 1955265, - "weekDownloads": 387314, + "downloads": 1878479, + "weekDownloads": 392708, "size": 279445, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-11T20:25:54.068Z" @@ -99238,7 +99349,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.178, "topicSearchString": "react-native expo expo-clipboard" }, { @@ -99246,6 +99357,7 @@ "android": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -99260,10 +99372,10 @@ "updatedAt": "2025-10-09T00:03:40Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-09T00:03:40Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 3 }, "name": "expo-navigation-bar", @@ -99292,8 +99404,8 @@ }, "npmPkg": "expo-navigation-bar", "npm": { - "downloads": 580566, - "weekDownloads": 113996, + "downloads": 564633, + "weekDownloads": 114494, "size": 180505, "latestRelease": "5.0.8", "latestReleaseDate": "2025-09-10T18:40:55.062Z" @@ -99307,7 +99419,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.172, "topicSearchString": "react-native expo expo-navigation-bar android" }, { @@ -99333,10 +99445,10 @@ "updatedAt": "2025-10-02T09:33:29Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-02T09:33:29Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-symbols", @@ -99367,8 +99479,8 @@ }, "npmPkg": "expo-symbols", "npm": { - "downloads": 1655548, - "weekDownloads": 323359, + "downloads": 1635197, + "weekDownloads": 328291, "size": 43906, "latestRelease": "1.0.7", "latestReleaseDate": "2025-09-11T20:23:12.274Z" @@ -99382,7 +99494,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.171, "topicSearchString": "react-native expo expo-symbols symbols sfsymbols ios" }, { @@ -99438,7 +99550,7 @@ }, "npmPkg": "react-native-native-language", "npm": { - "downloads": 107, + "downloads": 108, "weekDownloads": 2, "size": 22105, "latestRelease": "1.1.1", @@ -99506,8 +99618,8 @@ }, "npmPkg": "rive-react-native", "npm": { - "downloads": 374480, - "weekDownloads": 85266, + "downloads": 358185, + "weekDownloads": 81099, "size": 411245, "latestRelease": "9.6.1", "latestReleaseDate": "2025-09-21T03:08:52.411Z" @@ -99520,7 +99632,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.194, + "popularity": 0.192, "topicSearchString": "react-native ios android" }, { @@ -99641,8 +99753,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 2228, - "weekDownloads": 528, + "downloads": 2233, + "weekDownloads": 575, "size": 20892, "latestRelease": "0.1.2", "latestReleaseDate": "2024-06-04T20:45:47.126Z" @@ -99652,7 +99764,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.048, + "popularity": -0.031, "topicSearchString": "react-native ios android" }, { @@ -99708,7 +99820,7 @@ }, "npmPkg": "react-native-mapa", "npm": { - "downloads": 66, + "downloads": 67, "weekDownloads": 7, "size": 16447152, "latestRelease": "1.1.0", @@ -99749,7 +99861,7 @@ "forks": 18, "issues": 3, "subscribers": 5, - "stars": 154, + "stars": 155, "dependencies": 1 }, "name": "react-native-adapty", @@ -99784,18 +99896,19 @@ "configPlugin": false }, "npm": { - "downloads": 25539, - "weekDownloads": 5151, + "downloads": 25438, + "weekDownloads": 5209, "size": 784452, "latestRelease": "3.11.3", "latestReleaseDate": "2025-10-17T16:15:17.316Z" }, - "score": 49, + "score": 57, "matchingScoreModifiers": [ + "Known", "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.174, "topicSearchString": "react-native adapty purchases in-apps subscriptions in-app-purchase subscription iap iap-verification in-app-receipt receipt-validation storekit" }, { @@ -99852,8 +99965,8 @@ }, "npmPkg": "healthicons-react-native", "npm": { - "downloads": 4777, - "weekDownloads": 644, + "downloads": 4712, + "weekDownloads": 783, "size": 13613209, "latestRelease": "3.5.0", "latestReleaseDate": "2025-07-09T19:47:08.686Z" @@ -99862,7 +99975,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.135, + "popularity": -0.109, "topicSearchString": "react react-native icons svg health healthicons" }, { @@ -99921,8 +100034,8 @@ }, "npmPkg": "react-native-iaphub", "npm": { - "downloads": 3181, - "weekDownloads": 620, + "downloads": 3144, + "weekDownloads": 606, "size": 177142, "latestRelease": "9.1.1", "latestReleaseDate": "2025-10-16T22:32:37.027Z" @@ -99933,7 +100046,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.164, "topicSearchString": "react-native ios android in-app-purchase in-app-billing in-app-receipt google-play itunes iap" }, { @@ -100002,8 +100115,8 @@ }, "npmPkg": "clevertap-react-native", "npm": { - "downloads": 84608, - "weekDownloads": 16492, + "downloads": 82304, + "weekDownloads": 17913, "size": 3825822, "latestRelease": "3.7.0", "latestReleaseDate": "2025-10-03T08:59:31.881Z" @@ -100013,7 +100126,7 @@ "Known", "Recently updated" ], - "popularity": 0.166, + "popularity": 0.185, "topicSearchString": "analytics android clevertap in-app ios notification push react react-native segmentation clevertap-react-native javascript typescript npm engagement user-retention" }, { @@ -100078,8 +100191,8 @@ }, "npmPkg": "react-native-netwatch", "npm": { - "downloads": 3710, - "weekDownloads": 615, + "downloads": 3619, + "weekDownloads": 616, "size": 814335, "latestRelease": "1.3.16", "latestReleaseDate": "2024-01-24T10:57:08.004Z" @@ -100089,7 +100202,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.109, + "popularity": -0.105, "topicSearchString": "react-native mobile ios android logging network traffic tracking debug redux-action debugger redux charles-proxy" }, { @@ -100114,9 +100227,9 @@ "createdAt": "2018-03-27T18:33:08Z", "pushedAt": "2025-07-26T21:02:27Z", "forks": 183, - "issues": 126, + "issues": 127, "subscribers": 27, - "stars": 4242, + "stars": 4243, "dependencies": 0 }, "name": "iconoir-react-native", @@ -100144,8 +100257,8 @@ }, "npmPkg": "iconoir-react-native", "npm": { - "downloads": 15573, - "weekDownloads": 2685, + "downloads": 15352, + "weekDownloads": 3258, "size": 6398824, "latestRelease": "7.11.0", "latestReleaseDate": "2025-04-12T16:34:57.575Z" @@ -100157,7 +100270,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.18, "topicSearchString": "icons svg library react-native" }, { @@ -100180,10 +100293,10 @@ "updatedAt": "2025-09-19T08:08:00Z", "createdAt": "2020-06-08T15:36:21Z", "pushedAt": "2025-09-19T08:08:00Z", - "forks": 1010, - "issues": 229, + "forks": 1011, + "issues": 230, "subscribers": 52, - "stars": 19375, + "stars": 19406, "dependencies": 0 }, "name": "lucide-react-native", @@ -100216,8 +100329,8 @@ }, "npmPkg": "lucide-react-native", "npm": { - "downloads": 1069467, - "weekDownloads": 196019, + "downloads": 1060283, + "weekDownloads": 197220, "size": 18905984, "latestRelease": "0.546.0", "latestReleaseDate": "2025-10-16T11:57:16.478Z" @@ -100230,7 +100343,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.158, "topicSearchString": "lucide react-native feather icons icon svg feather-icons fontawesome font-awesome" }, { @@ -100255,9 +100368,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-06-28T14:38:46Z", + "updatedAt": "2025-10-20T16:57:46Z", "createdAt": "2020-05-06T08:24:39Z", - "pushedAt": "2025-06-28T14:38:46Z", + "pushedAt": "2025-10-20T16:57:46Z", "forks": 9, "issues": 1, "subscribers": 1, @@ -100296,18 +100409,19 @@ }, "npmPkg": "react-native-loader-kit", "npm": { - "downloads": 9950, - "weekDownloads": 2143, - "size": 32438, - "latestRelease": "3.0.0", - "latestReleaseDate": "2025-06-28T14:38:06.574Z" + "downloads": 9681, + "weekDownloads": 2260, + "size": 34086, + "latestRelease": "4.0.0", + "latestReleaseDate": "2025-10-20T16:57:38.098Z" }, - "score": 51, + "score": 57, "matchingScoreModifiers": [ "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.183, + "popularity": 0.199, "topicSearchString": "react-native ios android indicator loader loading loader-kit loading-animations loading-indicator" }, { @@ -100364,8 +100478,8 @@ }, "npmPkg": "react-native-file-logger", "npm": { - "downloads": 43164, - "weekDownloads": 8741, + "downloads": 41750, + "weekDownloads": 8732, "size": 597990, "latestRelease": "0.7.1", "latestReleaseDate": "2025-08-20T10:47:39.116Z" @@ -100375,7 +100489,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.172, + "popularity": 0.178, "topicSearchString": "react-native logging file-logger cocoalumberjack logback" }, { @@ -100428,8 +100542,8 @@ "configPlugin": false }, "npm": { - "downloads": 34860, - "weekDownloads": 6900, + "downloads": 33973, + "weekDownloads": 7691, "size": 227263, "latestRelease": "2.17.1", "latestReleaseDate": "2025-08-07T14:48:31.542Z" @@ -100439,7 +100553,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.192, "topicSearchString": "react react-native authentication okta oidc" }, { @@ -100498,8 +100612,8 @@ }, "npmPkg": "react-native-vision-camera-text-recognition", "npm": { - "downloads": 7487, - "weekDownloads": 1317, + "downloads": 7349, + "weekDownloads": 1399, "size": 86057, "latestRelease": "3.1.1", "latestReleaseDate": "2024-08-12T11:50:37.405Z" @@ -100509,7 +100623,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.162, "topicSearchString": "react-native ios android camera mlkit ml-kit vision-camera text-recognition text" }, { @@ -100562,8 +100676,8 @@ }, "npmPkg": "react-native-vision-camera-image-labeler", "npm": { - "downloads": 1268, - "weekDownloads": 118, + "downloads": 1228, + "weekDownloads": 124, "size": 46299, "latestRelease": "2.2.0", "latestReleaseDate": "2024-08-09T13:25:45.823Z" @@ -100573,7 +100687,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.171, + "popularity": -0.164, "topicSearchString": "react-native ios android" }, { @@ -100601,7 +100715,7 @@ "forks": 38, "issues": 30, "subscribers": 13, - "stars": 1215, + "stars": 1216, "dependencies": 0 }, "name": "react-native-filament", @@ -100640,8 +100754,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 14211, - "weekDownloads": 2303, + "downloads": 14321, + "weekDownloads": 2286, "size": 487922051, "latestRelease": "1.8.0", "latestReleaseDate": "2025-07-01T16:48:46.412Z" @@ -100653,7 +100767,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.138, + "popularity": 0.136, "topicSearchString": "react-native filament 3d rendering engine gltf model threejs ios android physics opengl metal vulkan" }, { @@ -100661,6 +100775,7 @@ "npmPkg": "@batch.com/react-native-plugin", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/BatchLabs/Batch-React-Native-Plugin", @@ -100707,8 +100822,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 8983, - "weekDownloads": 1565, + "downloads": 8610, + "weekDownloads": 1622, "size": 423444, "latestRelease": "11.0.0", "latestReleaseDate": "2025-09-19T12:42:50.905Z" @@ -100717,7 +100832,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.102, + "popularity": -0.09, "topicSearchString": "react-native batch push notifications sdk" }, { @@ -100745,10 +100860,10 @@ "updatedAt": "2025-10-16T16:58:57Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-16T16:58:57Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 11 }, "name": "@expo/fingerprint", @@ -100777,8 +100892,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 7103905, - "weekDownloads": 1392791, + "downloads": 6829679, + "weekDownloads": 1411607, "size": 226929, "latestRelease": "0.15.1", "latestReleaseDate": "2025-09-16T20:36:09.417Z" @@ -100792,7 +100907,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.176, "topicSearchString": "expo react-native fingerprint hash node" }, { @@ -100815,13 +100930,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-19T08:00:12Z", + "updatedAt": "2025-10-20T14:44:02Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-10-19T08:00:12Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "pushedAt": "2025-10-20T14:44:02Z", + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 21 }, "name": "expo", @@ -100847,8 +100962,8 @@ }, "npmPkg": "expo", "npm": { - "downloads": 7816091, - "weekDownloads": 1527462, + "downloads": 7674592, + "weekDownloads": 1555000, "size": 871341, "latestRelease": "54.0.13", "latestReleaseDate": "2025-10-09T19:33:47.791Z" @@ -100862,7 +100977,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.172, "topicSearchString": "expo" }, { @@ -100892,7 +101007,7 @@ "forks": 114, "issues": 47, "subscribers": 38, - "stars": 4749, + "stars": 4753, "dependencies": 0 }, "name": "tinybase", @@ -100925,8 +101040,8 @@ }, "npmPkg": "tinybase", "npm": { - "downloads": 82516, - "weekDownloads": 20274, + "downloads": 77097, + "weekDownloads": 15550, "size": 8200547, "latestRelease": "6.7.1", "latestReleaseDate": "2025-10-11T02:45:44.398Z" @@ -100939,7 +101054,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.209, + "popularity": 0.171, "topicSearchString": "tiny sync-engine local-first reactive state data react javascript typescript" }, { @@ -100966,9 +101081,9 @@ "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-16T12:44:50Z", "forks": 4929, - "issues": 851, + "issues": 850, "subscribers": 308, - "stars": 24216, + "stars": 24222, "dependencies": 2 }, "name": "@react-navigation/bottom-tabs", @@ -100998,8 +101113,8 @@ "configPlugin": false }, "npm": { - "downloads": 6520618, - "weekDownloads": 1257026, + "downloads": 6397759, + "weekDownloads": 1277343, "size": 193693, "latestRelease": "7.4.9", "latestReleaseDate": "2025-10-13T12:21:03.685Z" @@ -101013,7 +101128,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.17, "topicSearchString": "component react-component react-native react-navigation ios android tab" }, { @@ -101039,9 +101154,9 @@ "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-13T15:01:58Z", "forks": 4929, - "issues": 851, + "issues": 850, "subscribers": 308, - "stars": 24216, + "stars": 24222, "dependencies": 3 }, "name": "@react-navigation/material-top-tabs", @@ -101072,8 +101187,8 @@ "configPlugin": false }, "npm": { - "downloads": 1030815, - "weekDownloads": 201894, + "downloads": 1005030, + "weekDownloads": 210248, "size": 62732, "latestRelease": "7.3.8", "latestReleaseDate": "2025-10-04T21:47:56.081Z" @@ -101087,7 +101202,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.178, "topicSearchString": "component react-component react-native react-navigation ios android material tab" }, { @@ -101113,9 +101228,9 @@ "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-16T12:44:50Z", "forks": 4929, - "issues": 851, + "issues": 850, "subscribers": 308, - "stars": 24216, + "stars": 24222, "dependencies": 4 }, "name": "@react-navigation/drawer", @@ -101146,8 +101261,8 @@ "configPlugin": false }, "npm": { - "downloads": 1495948, - "weekDownloads": 278140, + "downloads": 1438949, + "weekDownloads": 285045, "size": 125270, "latestRelease": "7.5.10", "latestReleaseDate": "2025-10-13T12:21:03.405Z" @@ -101161,7 +101276,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.168, "topicSearchString": "component react-component react-native react-navigation ios android material drawer" }, { @@ -101188,9 +101303,9 @@ "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-13T15:01:58Z", "forks": 4929, - "issues": 851, + "issues": 850, "subscribers": 308, - "stars": 24216, + "stars": 24222, "dependencies": 2 }, "name": "@react-navigation/native-stack", @@ -101221,8 +101336,8 @@ "configPlugin": false }, "npm": { - "downloads": 6335067, - "weekDownloads": 1187706, + "downloads": 6223910, + "weekDownloads": 1210649, "size": 198048, "latestRelease": "7.3.28", "latestReleaseDate": "2025-10-13T12:21:03.499Z" @@ -101236,7 +101351,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.165, "topicSearchString": "component react-component react-native react-navigation ios android native stack" }, { @@ -101263,9 +101378,9 @@ "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-16T12:44:50Z", "forks": 4929, - "issues": 851, + "issues": 850, "subscribers": 308, - "stars": 24216, + "stars": 24222, "dependencies": 3 }, "name": "@react-navigation/stack", @@ -101295,8 +101410,8 @@ "configPlugin": false }, "npm": { - "downloads": 3059203, - "weekDownloads": 606863, + "downloads": 2985001, + "weekDownloads": 615926, "size": 456330, "latestRelease": "7.4.10", "latestReleaseDate": "2025-10-13T12:21:04.377Z" @@ -101310,7 +101425,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.175, "topicSearchString": "component react-component react-native react-navigation ios android stack" }, { @@ -101337,9 +101452,9 @@ "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-16T12:44:50Z", "forks": 4929, - "issues": 851, + "issues": 850, "subscribers": 308, - "stars": 24216, + "stars": 24222, "dependencies": 3 }, "name": "@react-navigation/elements", @@ -101366,8 +101481,8 @@ "configPlugin": false }, "npm": { - "downloads": 8301321, - "weekDownloads": 1582773, + "downloads": 8132566, + "weekDownloads": 1616664, "size": 260060, "latestRelease": "2.6.5", "latestReleaseDate": "2025-10-04T21:47:54.157Z" @@ -101381,7 +101496,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.169, "topicSearchString": "react-native react-navigation ios android" }, { @@ -101407,9 +101522,9 @@ "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-13T15:01:58Z", "forks": 4929, - "issues": 851, + "issues": 850, "subscribers": 308, - "stars": 24216, + "stars": 24222, "dependencies": 1 }, "name": "react-native-drawer-layout", @@ -101440,8 +101555,8 @@ }, "npmPkg": "react-native-drawer-layout", "npm": { - "downloads": 1060994, - "weekDownloads": 206946, + "downloads": 1036204, + "weekDownloads": 207871, "size": 102615, "latestRelease": "4.1.13", "latestReleaseDate": "2025-08-31T10:40:50.227Z" @@ -101455,7 +101570,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.171, "topicSearchString": "component react-component react-native ios android drawer swipe" }, { @@ -101483,9 +101598,9 @@ "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-13T15:01:58Z", "forks": 4929, - "issues": 851, + "issues": 850, "subscribers": 308, - "stars": 24216, + "stars": 24222, "dependencies": 1 }, "name": "@react-navigation/routers", @@ -101511,8 +101626,8 @@ "configPlugin": false }, "npm": { - "downloads": 7950796, - "weekDownloads": 1542286, + "downloads": 7785713, + "weekDownloads": 1573003, "size": 164585, "latestRelease": "7.5.1", "latestReleaseDate": "2025-07-26T10:09:34.288Z" @@ -101526,7 +101641,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.172, "topicSearchString": "react react-native react-navigation" }, { @@ -101555,9 +101670,9 @@ "createdAt": "2017-01-26T19:51:40Z", "pushedAt": "2025-10-13T15:01:58Z", "forks": 4929, - "issues": 851, + "issues": 850, "subscribers": 308, - "stars": 24216, + "stars": 24222, "dependencies": 3 }, "name": "@react-navigation/devtools", @@ -101583,8 +101698,8 @@ "configPlugin": false }, "npm": { - "downloads": 590737, - "weekDownloads": 116586, + "downloads": 571088, + "weekDownloads": 117930, "size": 48263, "latestRelease": "7.0.38", "latestReleaseDate": "2025-08-12T02:11:33.821Z" @@ -101598,7 +101713,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.176, "topicSearchString": "react react-native react-navigation" }, { @@ -101620,13 +101735,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-17T16:37:54Z", + "updatedAt": "2025-10-20T15:27:34Z", "createdAt": "2020-05-15T12:52:16Z", - "pushedAt": "2025-10-17T16:37:54Z", - "forks": 488, - "issues": 292, + "pushedAt": "2025-10-20T15:27:34Z", + "forks": 491, + "issues": 291, "subscribers": 63, - "stars": 4006, + "stars": 4009, "dependencies": 6 }, "name": "@supabase/supabase-js", @@ -101652,11 +101767,11 @@ "configPlugin": false }, "npm": { - "downloads": 17012582, - "weekDownloads": 2896156, - "size": 352277, - "latestRelease": "2.75.1", - "latestReleaseDate": "2025-10-17T12:29:04.113Z" + "downloads": 17027033, + "weekDownloads": 2948039, + "size": 330325, + "latestRelease": "2.76.0", + "latestReleaseDate": "2025-10-20T15:20:49.212Z" }, "score": 86, "matchingScoreModifiers": [ @@ -101667,7 +101782,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.145, + "popularity": 0.147, "topicSearchString": "javascript typescript supabase" }, { @@ -101744,8 +101859,8 @@ }, "npmPkg": "toastify-react-native", "npm": { - "downloads": 1697336, - "weekDownloads": 421314, + "downloads": 2029945, + "weekDownloads": 702777, "size": 551906, "latestRelease": "7.2.3", "latestReleaseDate": "2025-07-20T15:48:17.258Z" @@ -101756,7 +101871,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.211, + "popularity": 0.544, "topicSearchString": "react react-component pushalert toast popup toastify react-native react-toastify notification toastify-react-native picker expo cli mobile ios android web typescript alert animation expo-cli javascript notifications" }, { @@ -101814,7 +101929,7 @@ }, "npmPkg": "rn-float-box", "npm": { - "downloads": 18, + "downloads": 19, "weekDownloads": 0, "size": 48615, "latestRelease": "0.2.3", @@ -101881,8 +101996,8 @@ "configPlugin": false }, "npm": { - "downloads": 8456, - "weekDownloads": 2290, + "downloads": 8154, + "weekDownloads": 2504, "size": 65962, "latestRelease": "6.1.0", "latestReleaseDate": "2025-06-11T20:01:02.824Z" @@ -101892,7 +102007,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.23, + "popularity": 0.261, "topicSearchString": "react-native ios android modal" }, { @@ -101903,6 +102018,7 @@ "android": true, "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/EvanBacon/expo-quick-actions", @@ -101953,8 +102069,8 @@ }, "npmPkg": "expo-quick-actions", "npm": { - "downloads": 63961, - "weekDownloads": 12830, + "downloads": 62173, + "weekDownloads": 13594, "size": 121233, "latestRelease": "6.0.0", "latestReleaseDate": "2025-09-15T18:14:00.092Z" @@ -101964,7 +102080,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.186, "topicSearchString": "react-native expo expo-quick-actions expoquickactions app-icon dynamic-app-icon kotlin swift" }, { @@ -101975,6 +102091,7 @@ "android": true, "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/obytes/app-icon-badge", @@ -102023,8 +102140,8 @@ }, "npmPkg": "app-icon-badge", "npm": { - "downloads": 42339, - "weekDownloads": 7308, + "downloads": 41549, + "weekDownloads": 7532, "size": 660430, "latestRelease": "0.1.2", "latestReleaseDate": "2024-11-13T16:36:23.410Z" @@ -102035,7 +102152,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.154, "topicSearchString": "android app-icon badge-generator expo ios react-native expo-plugin" }, { @@ -102048,6 +102165,7 @@ "android": true, "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/achorein/expo-share-intent", @@ -102065,7 +102183,7 @@ "forks": 32, "issues": 25, "subscribers": 6, - "stars": 506, + "stars": 507, "dependencies": 3 }, "name": "expo-share-intent", @@ -102100,8 +102218,8 @@ }, "npmPkg": "expo-share-intent", "npm": { - "downloads": 47891, - "weekDownloads": 8671, + "downloads": 47187, + "weekDownloads": 8698, "size": 175784, "latestRelease": "5.0.1", "latestReleaseDate": "2025-09-16T09:56:08.369Z" @@ -102111,7 +102229,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.157, "topicSearchString": "react-native expo expo-share-extension share-extension share-intent expo-config-plugin share-share-intent android ios" }, { @@ -102165,8 +102283,8 @@ "unmaintained": true, "npmPkg": "react-native-store-version", "npm": { - "downloads": 29505, - "weekDownloads": 5579, + "downloads": 28325, + "weekDownloads": 5647, "size": 20005, "latestRelease": "1.4.1", "latestReleaseDate": "2023-03-11T03:11:16.451Z" @@ -102176,7 +102294,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, + "popularity": -0.581, "topicSearchString": "react-native expo appstore playstore version" }, { @@ -102240,8 +102358,8 @@ }, "npmPkg": "react-native-country-codes-picker", "npm": { - "downloads": 115250, - "weekDownloads": 21966, + "downloads": 112578, + "weekDownloads": 22946, "size": 273454, "latestRelease": "2.3.5", "latestReleaseDate": "2024-01-12T12:40:41.027Z" @@ -102252,7 +102370,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.173, "topicSearchString": "react-native react native country picker codes search animated multilanguage expo ios android country-codes" }, { @@ -102313,8 +102431,8 @@ "configPlugin": false }, "npm": { - "downloads": 12401, - "weekDownloads": 2718, + "downloads": 12039, + "weekDownloads": 2562, "size": 46604, "latestRelease": "2.1.0", "latestReleaseDate": "2025-02-28T17:09:26.366Z" @@ -102325,7 +102443,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.186, + "popularity": 0.181, "topicSearchString": "react-native ios android typescript google-autocomplete reactjs expo google-places-api google-places-autocomplete" }, { @@ -102387,8 +102505,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 5236, - "weekDownloads": 1286, + "downloads": 5041, + "weekDownloads": 1171, "size": 288617, "latestRelease": "0.8.1", "latestReleaseDate": "2024-12-17T02:17:51.074Z" @@ -102398,7 +102516,7 @@ "Known", "Not updated recently" ], - "popularity": 0.209, + "popularity": 0.197, "topicSearchString": "react-native ios android paste text-input" }, { @@ -102459,8 +102577,8 @@ "configPlugin": false }, "npm": { - "downloads": 340, - "weekDownloads": 65, + "downloads": 343, + "weekDownloads": 52, "size": 142036, "latestRelease": "0.1.36", "latestReleaseDate": "2025-04-29T13:36:32.326Z" @@ -102469,7 +102587,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.588, + "popularity": -0.62, "topicSearchString": "react-native ios android expo keyboard scrollview ui" }, { @@ -102526,7 +102644,7 @@ }, "unmaintained": true, "npm": { - "downloads": 23, + "downloads": 28, "weekDownloads": 0, "size": 116990, "latestRelease": "0.2.2", @@ -102558,9 +102676,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-22T15:04:44Z", + "updatedAt": "2025-10-20T06:20:07Z", "createdAt": "2024-02-07T06:46:24Z", - "pushedAt": "2025-08-22T15:04:44Z", + "pushedAt": "2025-10-20T06:20:07Z", "forks": 9, "issues": 2, "subscribers": 1, @@ -102600,17 +102718,18 @@ }, "npmPkg": "react-native-wear-connectivity", "npm": { - "downloads": 573, - "weekDownloads": 97, + "downloads": 568, + "weekDownloads": 121, "size": 76116, "latestRelease": "0.1.15", "latestReleaseDate": "2025-08-22T13:11:23.528Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.605, + "popularity": -0.568, "topicSearchString": "react-native ios android wear-os wearable wear-api wearable-devices wearos renative renative-wear" }, { @@ -102665,8 +102784,8 @@ }, "npmPkg": "react-native-multipurpose-calendar", "npm": { - "downloads": 561, - "weekDownloads": 3, + "downloads": 559, + "weekDownloads": 0, "size": 9246336, "latestRelease": "2.1.3", "latestReleaseDate": "2024-08-05T18:32:06.028Z" @@ -102676,7 +102795,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.995, + "popularity": -1, "topicSearchString": "react-native android ios persian-calendar calendar" }, { @@ -102773,13 +102892,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-10-16T10:49:06Z", + "updatedAt": "2025-10-20T18:00:24Z", "createdAt": "2019-11-15T21:38:13Z", - "pushedAt": "2025-10-16T10:49:06Z", + "pushedAt": "2025-10-20T18:00:24Z", "forks": 108, "issues": 46, "subscribers": 16, - "stars": 1669, + "stars": 1671, "dependencies": 0 }, "name": "@rnx-kit/align-deps", @@ -102801,8 +102920,8 @@ "configPlugin": false }, "npm": { - "downloads": 290494, - "weekDownloads": 48956, + "downloads": 283766, + "weekDownloads": 51458, "size": 1053372, "latestRelease": "3.2.4", "latestReleaseDate": "2025-10-07T08:04:29.014Z" @@ -102814,7 +102933,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.154, "topicSearchString": "" }, { @@ -102826,6 +102945,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/wwdrew/expo-spotify-sdk", @@ -102872,8 +102992,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 1263, - "weekDownloads": 367, + "downloads": 1179, + "weekDownloads": 324, "size": 1185449, "latestRelease": "0.5.0", "latestReleaseDate": "2025-04-22T08:41:10.217Z" @@ -102883,7 +103003,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.003, + "popularity": -0.016, "topicSearchString": "react-native expo expo-spotify-sdk expospotifysdk spotify" }, { @@ -102939,8 +103059,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 305, - "weekDownloads": 24, + "downloads": 301, + "weekDownloads": 23, "size": 30682, "latestRelease": "0.3.0", "latestReleaseDate": "2024-06-27T09:15:09.845Z" @@ -102950,7 +103070,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.932, + "popularity": -0.934, "topicSearchString": "react-native expo expo-android-shared-preferences expoandroidsharedpreferences" }, { @@ -102961,6 +103081,7 @@ ], "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/wwdrew/expo-android-account-manager", @@ -103006,8 +103127,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 254, - "weekDownloads": 32, + "downloads": 246, + "weekDownloads": 24, "size": 30151, "latestRelease": "0.1.1", "latestReleaseDate": "2024-08-12T08:24:44.616Z" @@ -103017,7 +103138,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.892, + "popularity": -0.916, "topicSearchString": "react-native expo expo-android-account-manager expoandroidaccountmanager" }, { @@ -103075,7 +103196,7 @@ "npmPkg": "react-native-here-explore", "npm": { "downloads": 44, - "weekDownloads": 5, + "weekDownloads": 4, "size": 200742, "latestRelease": "2.2.0", "latestReleaseDate": "2025-04-03T19:43:57.893Z" @@ -103085,7 +103206,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.65, + "popularity": -0.67, "topicSearchString": "react-native ios android heremaps" }, { @@ -103149,8 +103270,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 1020, - "weekDownloads": 86, + "downloads": 1114, + "weekDownloads": 73, "size": 127663, "latestRelease": "1.17.0", "latestReleaseDate": "2025-10-12T14:30:19.747Z" @@ -103159,7 +103280,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.072, + "popularity": 0.056, "topicSearchString": "audio microphone input recording playback sample player react-native ios android" }, { @@ -103187,7 +103308,7 @@ "createdAt": "2023-05-23T11:08:00Z", "pushedAt": "2025-10-12T13:45:17Z", "forks": 32, - "issues": 26, + "issues": 27, "subscribers": 5, "stars": 279, "dependencies": 2 @@ -103224,8 +103345,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 55569, - "weekDownloads": 11026, + "downloads": 53939, + "weekDownloads": 11455, "size": 420121, "latestRelease": "2.36.0", "latestReleaseDate": "2025-10-12T13:49:18.365Z" @@ -103235,7 +103356,7 @@ "Known", "Recently updated" ], - "popularity": 0.169, + "popularity": 0.181, "topicSearchString": "react-native ios android fs filesystem download upload file-transfer react rnfs" }, { @@ -103304,8 +103425,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 6695, - "weekDownloads": 1172, + "downloads": 6666, + "weekDownloads": 1224, "size": 26859665, "latestRelease": "0.25.0", "latestReleaseDate": "2025-10-12T14:12:55.563Z" @@ -103315,7 +103436,7 @@ "Known", "Recently updated" ], - "popularity": 0.149, + "popularity": 0.156, "topicSearchString": "react-native ios android lighttpd windows embed server http https react file java javascript js mobile native objective-c" }, { @@ -103365,7 +103486,7 @@ }, "npmPkg": "react-native-android-finish", "npm": { - "downloads": 62, + "downloads": 60, "weekDownloads": 3, "size": 34946, "latestRelease": "1.2.6", @@ -103435,8 +103556,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 1696, - "weekDownloads": 346, + "downloads": 1605, + "weekDownloads": 323, "size": 382023644, "latestRelease": "0.2.10", "latestReleaseDate": "2025-10-17T17:21:34.513Z" @@ -103446,7 +103567,7 @@ "Known", "Recently updated" ], - "popularity": 0.173, + "popularity": 0.171, "topicSearchString": "react-native ios android" }, { @@ -103472,13 +103593,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-18T12:56:34Z", + "updatedAt": "2025-10-20T13:37:17Z", "createdAt": "2019-04-09T09:10:06Z", - "pushedAt": "2025-10-18T12:56:34Z", - "forks": 1816, + "pushedAt": "2025-10-20T13:37:17Z", + "forks": 1819, "issues": 2, "subscribers": 177, - "stars": 55228, + "stars": 55246, "dependencies": 0 }, "name": "zustand", @@ -103513,8 +103634,8 @@ }, "npmPkg": "zustand", "npm": { - "downloads": 49155160, - "weekDownloads": 9125751, + "downloads": 48152396, + "weekDownloads": 9453740, "size": 92449, "latestRelease": "5.0.8", "latestReleaseDate": "2025-08-19T23:19:16.970Z" @@ -103527,7 +103648,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.167, "topicSearchString": "react state manager management redux store hooks react-context reactjs state-management hacktoberfest" }, { @@ -103584,8 +103705,8 @@ }, "npmPkg": "react-native-otp-verify", "npm": { - "downloads": 85379, - "weekDownloads": 16878, + "downloads": 81572, + "weekDownloads": 17405, "size": 401957, "latestRelease": "1.1.8", "latestReleaseDate": "2024-02-16T14:20:06.182Z" @@ -103596,7 +103717,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.181, "topicSearchString": "react-native ios android sms-verification" }, { @@ -103668,8 +103789,8 @@ }, "npmPkg": "rn-material-ui-textfield", "npm": { - "downloads": 15341, - "weekDownloads": 2638, + "downloads": 14979, + "weekDownloads": 2720, "size": 860227, "latestRelease": "1.0.9", "latestReleaseDate": "2022-11-03T18:55:54.464Z" @@ -103678,7 +103799,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.154, "topicSearchString": "react react-component react-native ios android material material-ui input textinput field textfield floating label collaborate student-vscode" }, { @@ -103707,10 +103828,10 @@ "updatedAt": "2025-10-16T15:09:02Z", "createdAt": "2019-09-10T19:23:58Z", "pushedAt": "2025-10-16T15:09:02Z", - "forks": 3486, - "issues": 66, - "subscribers": 214, - "stars": 47040, + "forks": 3487, + "issues": 68, + "subscribers": 215, + "stars": 47059, "dependencies": 1 }, "name": "@tanstack/react-query", @@ -103732,8 +103853,8 @@ "configPlugin": false }, "npm": { - "downloads": 49202109, - "weekDownloads": 10003325, + "downloads": 47980510, + "weekDownloads": 10032059, "size": 732734, "latestRelease": "5.90.5", "latestReleaseDate": "2025-10-16T15:15:34.964Z" @@ -103746,7 +103867,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.178, "topicSearchString": "" }, { @@ -103801,8 +103922,8 @@ }, "npmPkg": "react-native-razorpay", "npm": { - "downloads": 34093, - "weekDownloads": 6715, + "downloads": 33984, + "weekDownloads": 6905, "size": 515007, "latestRelease": "2.3.0", "latestReleaseDate": "2022-11-09T08:52:09.054Z" @@ -103813,7 +103934,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.173, "topicSearchString": "react-native razorpay payments" }, { @@ -103868,8 +103989,8 @@ "configPlugin": false }, "npm": { - "downloads": 250, - "weekDownloads": 9, + "downloads": 347, + "weekDownloads": 10, "size": 220555, "latestRelease": "3.1.2", "latestReleaseDate": "2025-05-15T14:10:51.992Z" @@ -103879,7 +104000,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.969, + "popularity": -0.975, "topicSearchString": "react-native ios android" }, { @@ -103931,8 +104052,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 52582, - "weekDownloads": 10665, + "downloads": 50752, + "weekDownloads": 10420, "size": 262495, "latestRelease": "12.3.0", "latestReleaseDate": "2025-10-17T12:23:58.156Z" @@ -103942,7 +104063,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.078, + "popularity": -0.075, "topicSearchString": "moengage push-notification react-native ios android device events" }, { @@ -103956,6 +104077,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/AppsFlyerSDK/appsflyer-react-native-plugin", @@ -103970,8 +104092,8 @@ "updatedAt": "2025-09-03T14:13:43Z", "createdAt": "2016-11-13T16:10:51Z", "pushedAt": "2025-09-03T14:13:43Z", - "forks": 209, - "issues": 24, + "forks": 210, + "issues": 23, "subscribers": 10, "stars": 311, "dependencies": 0 @@ -104001,8 +104123,8 @@ "configPlugin": true }, "npm": { - "downloads": 503685, - "weekDownloads": 98049, + "downloads": 482318, + "weekDownloads": 99271, "size": 561668, "latestRelease": "6.17.5", "latestReleaseDate": "2025-09-03T14:17:21.950Z" @@ -104013,7 +104135,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.175, "topicSearchString": "react-native react native appsflyer sdk" }, { @@ -104078,8 +104200,8 @@ }, "npmPkg": "react-native-toastable", "npm": { - "downloads": 1960, - "weekDownloads": 398, + "downloads": 1938, + "weekDownloads": 367, "size": 161927, "latestRelease": "0.5.0", "latestReleaseDate": "2024-07-04T10:01:42.202Z" @@ -104089,7 +104211,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.161, "topicSearchString": "react-native ios android toaster toast notification alert snackbar toastable toastify react" }, { @@ -104154,8 +104276,8 @@ }, "npmPkg": "react-native-ruler-picker", "npm": { - "downloads": 6155, - "weekDownloads": 1029, + "downloads": 6135, + "weekDownloads": 1087, "size": 68359, "latestRelease": "0.2.2", "latestReleaseDate": "2024-03-02T21:57:22.543Z" @@ -104165,7 +104287,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.151, "topicSearchString": "react-native ios android ruler picker ruler-picker react reactnative" }, { @@ -104217,8 +104339,8 @@ }, "npmPkg": "react-native-use-sound", "npm": { - "downloads": 705, - "weekDownloads": 178, + "downloads": 667, + "weekDownloads": 163, "size": 960950, "latestRelease": "1.2.2", "latestReleaseDate": "2022-07-26T11:57:38.938Z" @@ -104228,7 +104350,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.284, + "popularity": -1.291, "topicSearchString": "" }, { @@ -104289,7 +104411,7 @@ }, "npmPkg": "react-native-qr", "npm": { - "downloads": 17, + "downloads": 18, "weekDownloads": 0, "size": 50599, "latestRelease": "2.0.1", @@ -104357,8 +104479,8 @@ "configPlugin": false }, "npm": { - "downloads": 2832, - "weekDownloads": 444, + "downloads": 2763, + "weekDownloads": 404, "size": 46124, "latestRelease": "0.4.0", "latestReleaseDate": "2025-09-27T09:19:01.327Z" @@ -104368,7 +104490,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.133, + "popularity": 0.124, "topicSearchString": "analytics privacy react-native" }, { @@ -104430,8 +104552,8 @@ }, "npmPkg": "react-native-fast-opencv", "npm": { - "downloads": 4617, - "weekDownloads": 781, + "downloads": 4560, + "weekDownloads": 884, "size": 713232, "latestRelease": "0.4.6", "latestReleaseDate": "2025-06-11T16:30:47.071Z" @@ -104440,7 +104562,7 @@ "matchingScoreModifiers": [ "Known" ], - "popularity": 0.144, + "popularity": 0.165, "topicSearchString": "react-native ios android cpp jsi new-architecture opencv" }, { @@ -104471,7 +104593,7 @@ "forks": 4617, "issues": 144, "subscribers": 372, - "stars": 25615, + "stars": 25618, "dependencies": 6 }, "name": "@rneui/base", @@ -104505,8 +104627,8 @@ "configPlugin": false }, "npm": { - "downloads": 268184, - "weekDownloads": 49632, + "downloads": 262087, + "weekDownloads": 52479, "size": 295280, "latestRelease": "4.0.0-rc.8", "latestReleaseDate": "2023-07-28T19:17:58.110Z" @@ -104520,7 +104642,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.58, "topicSearchString": "react native react-native elements rneui ui components ui-library ios android bootstrap" }, { @@ -104554,7 +104676,7 @@ "forks": 4617, "issues": 144, "subscribers": 372, - "stars": 25615, + "stars": 25618, "dependencies": 0 }, "name": "@rneui/themed", @@ -104589,8 +104711,8 @@ "configPlugin": false }, "npm": { - "downloads": 239716, - "weekDownloads": 44774, + "downloads": 234497, + "weekDownloads": 47191, "size": 69808, "latestRelease": "4.0.0-rc.8", "latestReleaseDate": "2023-07-28T19:18:33.533Z" @@ -104604,7 +104726,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, + "popularity": -0.579, "topicSearchString": "react native react-native elements rneui themed ui components ui-library ios android bootstrap" }, { @@ -104671,8 +104793,8 @@ }, "npmPkg": "sonner-native", "npm": { - "downloads": 153645, - "weekDownloads": 32862, + "downloads": 148355, + "weekDownloads": 30964, "size": 302043, "latestRelease": "0.21.1", "latestReleaseDate": "2025-08-28T09:02:37.957Z" @@ -104683,7 +104805,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.182, + "popularity": 0.177, "topicSearchString": "react-native ios android toast toasts reanimated sonner sonner-native" }, { @@ -104755,7 +104877,7 @@ }, "npmPkg": "mobile-native-barcode-generator", "npm": { - "downloads": 773, + "downloads": 775, "weekDownloads": 7, "size": 68715, "latestRelease": "0.0.7", @@ -104837,8 +104959,8 @@ }, "npmPkg": "expo-barcode", "npm": { - "downloads": 130, - "weekDownloads": 47, + "downloads": 123, + "weekDownloads": 41, "size": 21923, "latestRelease": "0.0.3", "latestReleaseDate": "2024-09-08T16:13:40.789Z" @@ -104848,7 +104970,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.687, + "popularity": -0.707, "topicSearchString": "react-native expo expo-barcode expobarcode ios android barcode qr-code barcode-generator qr-code-generator mobile-native-barcode-generator expo-library expo-modules java kotlin library npm npm-library react" }, { @@ -104910,8 +105032,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 32890, - "weekDownloads": 4745, + "downloads": 32507, + "weekDownloads": 5589, "size": 51630, "latestRelease": "1.0.1", "latestReleaseDate": "2025-08-19T10:10:22.580Z" @@ -104921,7 +105043,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.123, + "popularity": 0.146, "topicSearchString": "browser react-native in-app-browser safari chrome-custom-tabs" }, { @@ -104983,8 +105105,8 @@ }, "npmPkg": "react-native-animated-rolling-numbers", "npm": { - "downloads": 24244, - "weekDownloads": 4193, + "downloads": 23609, + "weekDownloads": 4272, "size": 68348, "latestRelease": "2.0.0", "latestReleaseDate": "2025-02-20T07:35:24.025Z" @@ -104994,7 +105116,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.154, "topicSearchString": "react-native animated-numbers rolling-numbers animated-digits animated-number reanimated numbers react digits animated-rollilng-numbers" }, { @@ -105057,8 +105179,8 @@ }, "npmPkg": "react-native-press-and-hold-button", "npm": { - "downloads": 549, - "weekDownloads": 103, + "downloads": 496, + "weekDownloads": 58, "size": 83120, "latestRelease": "0.6.0", "latestReleaseDate": "2024-10-16T22:50:30.281Z" @@ -105068,7 +105190,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.84, + "popularity": -0.9, "topicSearchString": "react-native ios android press hold long-press button" }, { @@ -105096,9 +105218,9 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-01T16:06:04Z", + "updatedAt": "2025-10-20T17:58:23Z", "createdAt": "2024-03-28T20:47:03Z", - "pushedAt": "2025-10-01T16:06:04Z", + "pushedAt": "2025-10-20T17:58:23Z", "forks": 12, "issues": 34, "subscribers": 7, @@ -105138,8 +105260,8 @@ "configPlugin": false }, "npm": { - "downloads": 6811, - "weekDownloads": 1537, + "downloads": 6698, + "weekDownloads": 1603, "size": 542871, "latestRelease": "1.1.3", "latestReleaseDate": "2025-10-01T16:10:15.108Z" @@ -105149,7 +105271,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.192, + "popularity": 0.203, "topicSearchString": "react react-native jwplayer media player mediaplayer media-player jw android ios audio video sdk" }, { @@ -105208,15 +105330,15 @@ "moduleType": "turbo" }, "npm": { - "downloads": 101, - "weekDownloads": 19, + "downloads": 92, + "weekDownloads": 12, "size": 104549, "latestRelease": "2.0.4", "latestReleaseDate": "2025-07-21T06:25:48.216Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -1.585, + "popularity": -1.636, "topicSearchString": "react-native ping ping-android ping-android ping" }, { @@ -105273,8 +105395,8 @@ "configPlugin": false }, "npm": { - "downloads": 16, - "weekDownloads": 3, + "downloads": 17, + "weekDownloads": 0, "size": 21501, "latestRelease": "1.0.2", "latestReleaseDate": "2025-07-17T06:43:31.581Z" @@ -105283,7 +105405,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.8, + "popularity": -1, "topicSearchString": "react-native ios android" }, { @@ -105381,13 +105503,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-10-16T00:09:31Z", + "updatedAt": "2025-10-20T10:43:50Z", "createdAt": "2020-02-07T22:28:18Z", - "pushedAt": "2025-10-16T00:09:31Z", - "forks": 190, - "issues": 168, + "pushedAt": "2025-10-20T10:43:50Z", + "forks": 189, + "issues": 166, "subscribers": 16, - "stars": 454, + "stars": 456, "dependencies": 1 }, "name": "posthog-react-native", @@ -105408,11 +105530,11 @@ "configPlugin": false }, "npm": { - "downloads": 435593, - "weekDownloads": 84375, - "size": 302719, - "latestRelease": "4.10.1", - "latestReleaseDate": "2025-10-14T12:38:25.873Z" + "downloads": 421208, + "weekDownloads": 81799, + "size": 302761, + "latestRelease": "4.10.2", + "latestReleaseDate": "2025-10-19T15:28:16.221Z" }, "score": 62, "matchingScoreModifiers": [ @@ -105439,6 +105561,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/intercom/intercom-react-native", @@ -105453,7 +105576,7 @@ "updatedAt": "2025-10-10T14:42:07Z", "createdAt": "2021-05-19T13:28:57Z", "pushedAt": "2025-10-10T14:42:07Z", - "forks": 77, + "forks": 78, "issues": 0, "subscribers": 80, "stars": 158, @@ -105490,8 +105613,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 325849, - "weekDownloads": 62768, + "downloads": 316014, + "weekDownloads": 63169, "size": 311615, "latestRelease": "9.2.0", "latestReleaseDate": "2025-10-11T15:03:40.027Z" @@ -105503,7 +105626,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.17, "topicSearchString": "react-native ios intercom messenger help-center articles push-notifications customer-support android" }, { @@ -105568,8 +105691,8 @@ "configPlugin": false }, "npm": { - "downloads": 525, - "weekDownloads": 46, + "downloads": 539, + "weekDownloads": 51, "size": 46422, "latestRelease": "1.3.0", "latestReleaseDate": "2025-10-11T16:24:53.913Z" @@ -105579,7 +105702,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.675, + "popularity": -0.669, "topicSearchString": "react react-native shopify flashlist calendar calendar-ui" }, { @@ -105590,6 +105713,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/huextrat/react-native-rate-app", @@ -105601,9 +105725,9 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-13T13:10:27Z", + "updatedAt": "2025-10-20T18:30:54Z", "createdAt": "2024-09-16T22:57:45Z", - "pushedAt": "2025-10-13T13:10:27Z", + "pushedAt": "2025-10-20T18:30:54Z", "forks": 8, "issues": 1, "subscribers": 2, @@ -105643,8 +105767,8 @@ }, "npmPkg": "react-native-rate-app", "npm": { - "downloads": 7077, - "weekDownloads": 1173, + "downloads": 6778, + "weekDownloads": 1124, "size": 64918, "latestRelease": "1.4.3", "latestReleaseDate": "2025-10-08T13:14:03.033Z" @@ -105723,8 +105847,8 @@ }, "npmPkg": "react-native-typing-animated-text", "npm": { - "downloads": 67, - "weekDownloads": 6, + "downloads": 65, + "weekDownloads": 8, "size": 11236, "latestRelease": "1.0.7", "latestReleaseDate": "2024-09-27T04:11:29.556Z" @@ -105734,7 +105858,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.92, + "popularity": -0.893, "topicSearchString": "react-native animated-text typing-effect text-animation animations typing animated-typing ui text-effect animated-text-effect component typing-animation text-typing animated-text-input animation typing-text" }, { @@ -105796,7 +105920,7 @@ "npmPkg": "react-native-custom-animated-accordion", "npm": { "downloads": 83, - "weekDownloads": 4, + "weekDownloads": 6, "size": 8714, "latestRelease": "1.0.5", "latestReleaseDate": "2024-09-27T10:54:40.592Z" @@ -105806,7 +105930,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.958, + "popularity": -0.937, "topicSearchString": "react-native animated accordion custom-accordion animated-accordion collapsible animation" }, { @@ -105865,8 +105989,8 @@ }, "npmPkg": "react-native-animated-flip-card", "npm": { - "downloads": 389, - "weekDownloads": 139, + "downloads": 360, + "weekDownloads": 130, "size": 11405, "latestRelease": "1.0.3", "latestReleaseDate": "2024-09-26T09:21:49.668Z" @@ -105876,7 +106000,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.695, + "popularity": -0.69, "topicSearchString": "react-native animated flip card animation horizontal vertical flip-card" }, { @@ -105946,8 +106070,8 @@ }, "npmPkg": "react-native-flexible-grid", "npm": { - "downloads": 4003, - "weekDownloads": 877, + "downloads": 3770, + "weekDownloads": 867, "size": 183752, "latestRelease": "0.2.5", "latestReleaseDate": "2025-09-04T06:26:06.274Z" @@ -105956,7 +106080,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.186, + "popularity": 0.195, "topicSearchString": "react-native ios web android grid grid-layout masonry rtl rtl-support mansonry hacktoberfest" }, { @@ -106021,8 +106145,8 @@ }, "npmPkg": "vision-camera-zxing", "npm": { - "downloads": 99, - "weekDownloads": 11, + "downloads": 101, + "weekDownloads": 24, "size": 94112, "latestRelease": "0.1.1", "latestReleaseDate": "2024-09-14T08:34:39.312Z" @@ -106032,7 +106156,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.904, + "popularity": -0.791, "topicSearchString": "react-native ios android barcode vision-camera zxing barcode-scanner ean qrcode qrcode-scanner scanner upc" }, { @@ -106043,6 +106167,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/huextrat/react-native-screenshot-aware", @@ -106054,13 +106179,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-13T10:40:35Z", + "updatedAt": "2025-10-20T17:42:29Z", "createdAt": "2024-09-18T14:55:44Z", - "pushedAt": "2025-10-13T10:40:35Z", + "pushedAt": "2025-10-20T17:42:29Z", "forks": 5, "issues": 1, "subscribers": 1, - "stars": 257, + "stars": 262, "dependencies": 0 }, "name": "react-native-screenshot-aware", @@ -106093,8 +106218,8 @@ }, "npmPkg": "react-native-screenshot-aware", "npm": { - "downloads": 23257, - "weekDownloads": 5067, + "downloads": 21449, + "weekDownloads": 3992, "size": 42156, "latestRelease": "1.3.13", "latestReleaseDate": "2025-10-08T10:09:32.600Z" @@ -106104,7 +106229,7 @@ "Known", "Recently updated" ], - "popularity": 0.185, + "popularity": 0.158, "topicSearchString": "react-native ios android screenshot aware capture screen" }, { @@ -106171,15 +106296,15 @@ }, "npmPkg": "react-native-ios-visual-effect-view", "npm": { - "downloads": 49, - "weekDownloads": 2, + "downloads": 52, + "weekDownloads": 3, "size": 313016, "latestRelease": "0.2.0", "latestReleaseDate": "2025-01-08T21:20:03.748Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.714, + "popularity": -0.7, "topicSearchString": "react-native ios android fabric jsi react react-natve swift uikit uivisualeffectview cafilter" }, { @@ -106236,8 +106361,8 @@ }, "npmPkg": "react-native-stack-carousel", "npm": { - "downloads": 59, - "weekDownloads": 7, + "downloads": 58, + "weekDownloads": 4, "size": 13617, "latestRelease": "1.0.3", "latestReleaseDate": "2024-12-09T06:54:55.823Z" @@ -106247,7 +106372,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.892, + "popularity": -0.938, "topicSearchString": "react-native carousel stack-carousel carousel-stack stack-animation swiper-flatlist" }, { @@ -106299,8 +106424,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 113, - "weekDownloads": 10, + "downloads": 119, + "weekDownloads": 15, "size": 38898, "latestRelease": "1.0.1", "latestReleaseDate": "2024-11-04T02:58:09.267Z" @@ -106309,7 +106434,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.923, + "popularity": -0.893, "topicSearchString": "react-native android" }, { @@ -106371,8 +106496,8 @@ }, "npmPkg": "react-native-hapticlabs", "npm": { - "downloads": 259, - "weekDownloads": 36, + "downloads": 258, + "weekDownloads": 34, "size": 113677, "latestRelease": "0.7.1", "latestReleaseDate": "2025-09-29T18:39:39.387Z" @@ -106382,7 +106507,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.88, + "popularity": -0.887, "topicSearchString": "react-native ios android haptics vibration ahap hla ogg hapticlabs" }, { @@ -106443,8 +106568,8 @@ }, "npmPkg": "react-native-animated-tab", "npm": { - "downloads": 42, - "weekDownloads": 20, + "downloads": 39, + "weekDownloads": 19, "size": 8086, "latestRelease": "1.0.3", "latestReleaseDate": "2024-09-27T09:47:36.250Z" @@ -106454,7 +106579,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.556, + "popularity": -0.578, "topicSearchString": "react-native segmented-tab tab animated-tab segmented-control-tab animation-tab reanimated-tab animation reanimated tabs" }, { @@ -106683,8 +106808,8 @@ "configPlugin": false }, "npm": { - "downloads": 585, - "weekDownloads": 62, + "downloads": 581, + "weekDownloads": 64, "size": 100686, "latestRelease": "2.7.0", "latestReleaseDate": "2025-08-27T01:00:54.473Z" @@ -106693,7 +106818,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.909, + "popularity": -0.906, "topicSearchString": "validator multiform validação email-validator multiform-validator javascript npm security safe pentest security-tools validate magic-number magic-number-validator magic-numbers cpf cnpj password email isemail image javascript-library library typescript typescript-library validate-js" }, { @@ -106765,8 +106890,8 @@ "configPlugin": false }, "npm": { - "downloads": 373, - "weekDownloads": 2, + "downloads": 374, + "weekDownloads": 4, "size": 40448, "latestRelease": "2.0.1", "latestReleaseDate": "2025-01-20T15:48:23.096Z" @@ -106775,7 +106900,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.995, + "popularity": -0.991, "topicSearchString": "javascript typescript azure-translator translator translator-code i18n-json-generator i18n translations azure azure-translate azure-translation-services javascript-library npm-package azure-translator-code collaborate communityexchange" }, { @@ -106842,7 +106967,7 @@ "moduleType": "expo" }, "npm": { - "downloads": 151, + "downloads": 149, "weekDownloads": 26, "size": 18379, "latestRelease": "0.0.3", @@ -106924,8 +107049,8 @@ }, "npmPkg": "react-native-nitro-totp", "npm": { - "downloads": 886, - "weekDownloads": 316, + "downloads": 877, + "weekDownloads": 325, "size": 1856388, "latestRelease": "2.0.1", "latestReleaseDate": "2025-09-26T14:31:21.118Z" @@ -106935,7 +107060,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.446, + "popularity": -0.434, "topicSearchString": "react-native nitro totp hotp otpauth otp-auth authentication security nitro-totp nitro-hotp nitro-modules nitrogen android cplusplus ios otp" }, { @@ -106997,8 +107122,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 320902, - "weekDownloads": 60411, + "downloads": 311976, + "weekDownloads": 64092, "size": 130221, "latestRelease": "8.12.0", "latestReleaseDate": "2025-09-05T11:05:37.212Z" @@ -107008,7 +107133,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.175, "topicSearchString": "cache cached fastimage image priority" }, { @@ -107082,8 +107207,8 @@ "configPlugin": false }, "npm": { - "downloads": 3324, - "weekDownloads": 628, + "downloads": 3260, + "weekDownloads": 586, "size": 10109, "latestRelease": "1.3.4", "latestReleaseDate": "2025-09-29T01:48:08.703Z" @@ -107093,7 +107218,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.089, + "popularity": -0.097, "topicSearchString": "cpf cnpj generator gerador validador documento javascript dados-pessoais npm cpf cnpj gerador-de-cpf gerador-de-cnpj validador-de-cpf validador-de-cnpj gerador-de-cpf-e-cnpj validador-de-cpf-e-cnpj front-end back-end node" }, { @@ -107161,8 +107286,8 @@ "moduleType": "nitro" }, "npm": { - "downloads": 314, - "weekDownloads": 49, + "downloads": 325, + "weekDownloads": 48, "size": 16076245, "latestRelease": "0.2.4", "latestReleaseDate": "2024-10-04T10:10:21.620Z" @@ -107172,7 +107297,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.866, + "popularity": -0.874, "topicSearchString": "react-native ios android crypto get-random-values crypto.getrandomvalues polyfill getrandomvalues cpp javascript native-module random typescript" }, { @@ -107230,8 +107355,8 @@ "configPlugin": false }, "npm": { - "downloads": 87425, - "weekDownloads": 17651, + "downloads": 84163, + "weekDownloads": 17776, "size": 181853, "latestRelease": "7.0.0", "latestReleaseDate": "2025-03-28T16:35:57.421Z" @@ -107242,7 +107367,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.078, + "popularity": -0.07, "topicSearchString": "react-native adobe adobe-experience-platform core ios android" }, { @@ -107302,8 +107427,8 @@ "configPlugin": false }, "npm": { - "downloads": 118, - "weekDownloads": 28, + "downloads": 121, + "weekDownloads": 27, "size": 22349, "latestRelease": "2.1.1", "latestReleaseDate": "2025-04-18T01:00:26.773Z" @@ -107313,7 +107438,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.543, + "popularity": -0.557, "topicSearchString": "react-native leaflet maps maps-leaflet react-leaflet-native react-leaflet react-map map" }, { @@ -107330,6 +107455,7 @@ "android": true, "web": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/jamsch/expo-speech-recognition", @@ -107345,7 +107471,7 @@ "createdAt": "2023-10-30T11:30:30Z", "pushedAt": "2025-09-29T04:58:20Z", "forks": 29, - "issues": 34, + "issues": 35, "subscribers": 5, "stars": 434, "dependencies": 0 @@ -107381,8 +107507,8 @@ }, "npmPkg": "expo-speech-recognition", "npm": { - "downloads": 83214, - "weekDownloads": 15460, + "downloads": 82025, + "weekDownloads": 16416, "size": 543275, "latestRelease": "2.1.5", "latestReleaseDate": "2025-09-29T04:59:21.340Z" @@ -107393,7 +107519,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.17, "topicSearchString": "react-native expo expo-speech-recognition expospeechrecognition webkitspeechrecognition speechrecognition speech-recognition speech-to-text voice-recognition" }, { @@ -107450,8 +107576,8 @@ }, "npmPkg": "react-native-sprites", "npm": { - "downloads": 38, - "weekDownloads": 26, + "downloads": 32, + "weekDownloads": 19, "size": 75522, "latestRelease": "0.1.1", "latestReleaseDate": "2024-10-24T19:11:40.698Z" @@ -107461,7 +107587,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.35, + "popularity": -0.457, "topicSearchString": "react-native ios android" }, { @@ -107519,8 +107645,8 @@ "configPlugin": false }, "npm": { - "downloads": 345, - "weekDownloads": 47, + "downloads": 347, + "weekDownloads": 40, "size": 6091, "latestRelease": "1.0.9", "latestReleaseDate": "2024-10-22T14:07:42.893Z" @@ -107530,7 +107656,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.884, + "popularity": -0.901, "topicSearchString": "react-native react native lifecycle hook launch focus blur" }, { @@ -107543,6 +107669,7 @@ "android": true, "visionos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/callstackincubator/react-native-bottom-tabs", @@ -107554,13 +107681,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-18T11:42:26Z", + "updatedAt": "2025-10-20T16:57:58Z", "createdAt": "2024-09-27T12:59:01Z", - "pushedAt": "2025-10-18T11:42:26Z", - "forks": 69, - "issues": 18, + "pushedAt": "2025-10-20T16:57:58Z", + "forks": 70, + "issues": 20, "subscribers": 9, - "stars": 1208, + "stars": 1221, "dependencies": 3 }, "name": "react-native-bottom-tabs", @@ -107589,11 +107716,11 @@ }, "npmPkg": "react-native-bottom-tabs", "npm": { - "downloads": 56382, - "weekDownloads": 9060, - "size": 154986, - "latestRelease": "1.0.0", - "latestReleaseDate": "2025-10-18T11:43:41.678Z" + "downloads": 55160, + "weekDownloads": 8982, + "size": 154984, + "latestRelease": "1.0.1", + "latestReleaseDate": "2025-10-20T16:59:10.837Z" }, "score": 76, "matchingScoreModifiers": [ @@ -107601,7 +107728,7 @@ "Known", "Recently updated" ], - "popularity": 0.137, + "popularity": 0.138, "topicSearchString": "react-native ios android" }, { @@ -107663,8 +107790,8 @@ }, "npmPkg": "react-native-fast-confetti", "npm": { - "downloads": 42411, - "weekDownloads": 8196, + "downloads": 41678, + "weekDownloads": 8155, "size": 181753, "latestRelease": "1.1.1", "latestReleaseDate": "2025-08-28T10:47:39.518Z" @@ -107674,7 +107801,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.166, "topicSearchString": "react-native ios android" }, { @@ -107735,8 +107862,8 @@ }, "npmPkg": "react-native-animated-stopwatch-timer", "npm": { - "downloads": 1372, - "weekDownloads": 211, + "downloads": 1333, + "weekDownloads": 233, "size": 66005, "latestRelease": "1.3.0", "latestReleaseDate": "2024-02-10T15:37:19.275Z" @@ -107746,7 +107873,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.131, + "popularity": 0.149, "topicSearchString": "react-native ios android react reanimated2" }, { @@ -107802,8 +107929,8 @@ }, "npmPkg": "react-native-fast-secure-storage", "npm": { - "downloads": 1431, - "weekDownloads": 262, + "downloads": 1374, + "weekDownloads": 306, "size": 109803, "latestRelease": "1.2.3", "latestReleaseDate": "2025-09-13T11:31:23.712Z" @@ -107812,7 +107939,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.189, "topicSearchString": "react-native ios android" }, { @@ -107898,8 +108025,8 @@ }, "npmPkg": "nativeflowcss", "npm": { - "downloads": 137, - "weekDownloads": 9, + "downloads": 140, + "weekDownloads": 14, "size": 398093, "latestRelease": "1.2.22", "latestReleaseDate": "2024-09-18T17:44:43.061Z" @@ -107909,7 +108036,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.694, + "popularity": -0.662, "topicSearchString": "react-native tailwind-css utility-first css-in-js no-babel easy-setup one-package ui-library mobile-ui cross-platform ios android flexbox minimalist tailwind responsive design-system native styling lightweight performance customizable theme mobile-first utility nativeflowcss utility-objects hacktoberfest mobile-design mobile-styling" }, { @@ -107935,7 +108062,7 @@ "forks": 43, "issues": 1, "subscribers": 4, - "stars": 636, + "stars": 635, "dependencies": 0 }, "name": "navigation", @@ -107961,8 +108088,8 @@ }, "npmPkg": "navigation", "npm": { - "downloads": 2927, - "weekDownloads": 412, + "downloads": 2840, + "weekDownloads": 448, "size": 82306, "latestRelease": "6.3.0", "latestReleaseDate": "2025-03-24T18:47:33.084Z" @@ -107973,7 +108100,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.12, + "popularity": 0.134, "topicSearchString": "router navigation" }, { @@ -108002,7 +108129,7 @@ "forks": 43, "issues": 1, "subscribers": 4, - "stars": 636, + "stars": 635, "dependencies": 0 }, "name": "navigation-react", @@ -108029,8 +108156,8 @@ }, "npmPkg": "navigation-react", "npm": { - "downloads": 1914, - "weekDownloads": 85, + "downloads": 1898, + "weekDownloads": 75, "size": 87593, "latestRelease": "4.14.0", "latestReleaseDate": "2025-09-26T15:05:10.196Z" @@ -108041,7 +108168,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.038, + "popularity": 0.034, "topicSearchString": "router navigation react" }, { @@ -108069,7 +108196,7 @@ "forks": 43, "issues": 1, "subscribers": 4, - "stars": 636, + "stars": 635, "dependencies": 0 }, "name": "navigation-react-native", @@ -108098,8 +108225,8 @@ }, "npmPkg": "navigation-react-native", "npm": { - "downloads": 2051, - "weekDownloads": 103, + "downloads": 2039, + "weekDownloads": 105, "size": 1249264, "latestRelease": "9.34.1", "latestReleaseDate": "2025-10-12T17:05:04.488Z" @@ -108109,7 +108236,7 @@ "Known", "Recently updated" ], - "popularity": 0.043, + "popularity": 0.044, "topicSearchString": "router navigation react native" }, { @@ -108170,15 +108297,15 @@ }, "npmPkg": "react-native-turbo-sqlite", "npm": { - "downloads": 106, - "weekDownloads": 17, + "downloads": 101, + "weekDownloads": 12, "size": 9997445, "latestRelease": "0.3.1", "latestReleaseDate": "2025-08-05T16:34:52.131Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.858, + "popularity": -0.896, "topicSearchString": "react-native ios android sqlite turbomodule new-architecture" }, { @@ -108232,8 +108359,8 @@ "configPlugin": false }, "npm": { - "downloads": 264, - "weekDownloads": 8, + "downloads": 275, + "weekDownloads": 9, "size": 5122, "latestRelease": "1.0.11", "latestReleaseDate": "2025-01-29T08:58:36.580Z" @@ -108243,7 +108370,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.974, + "popularity": -0.972, "topicSearchString": "react native expo expo-updates" }, { @@ -108302,8 +108429,8 @@ }, "npmPkg": "expo-in-app-updates", "npm": { - "downloads": 20707, - "weekDownloads": 3575, + "downloads": 20014, + "weekDownloads": 3670, "size": 46654, "latestRelease": "0.9.0", "latestReleaseDate": "2025-02-06T06:52:53.369Z" @@ -108314,7 +108441,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.156, "topicSearchString": "react-native expo expo-in-app-updates expoinappupdates expo-module in-app-updates" }, { @@ -108338,10 +108465,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 2 }, "name": "expo-manifests", @@ -108369,8 +108496,8 @@ }, "npmPkg": "expo-manifests", "npm": { - "downloads": 4013560, - "weekDownloads": 781541, + "downloads": 3919343, + "weekDownloads": 789982, "size": 62765, "latestRelease": "1.0.8", "latestReleaseDate": "2025-09-11T20:24:08.714Z" @@ -108384,7 +108511,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.171, "topicSearchString": "react-native expo expo-manifests" }, { @@ -108407,10 +108534,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-structured-headers", @@ -108438,8 +108565,8 @@ }, "npmPkg": "expo-structured-headers", "npm": { - "downloads": 2319759, - "weekDownloads": 449344, + "downloads": 2258652, + "weekDownloads": 456439, "size": 1428578, "latestRelease": "5.0.0", "latestReleaseDate": "2025-08-13T17:01:08.483Z" @@ -108453,7 +108580,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.172, "topicSearchString": "react-native expo expo-structured-headers" }, { @@ -108476,10 +108603,10 @@ "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-27T16:55:20Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-json-utils", @@ -108511,8 +108638,8 @@ }, "npmPkg": "expo-json-utils", "npm": { - "downloads": 3857953, - "weekDownloads": 746355, + "downloads": 3769498, + "weekDownloads": 755599, "size": 15175, "latestRelease": "0.15.0", "latestReleaseDate": "2025-04-04T23:34:49.379Z" @@ -108526,7 +108653,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.17, "topicSearchString": "react-native expo expo-json-utils android ios jsonobjects nsdictionaries" }, { @@ -108578,8 +108705,8 @@ }, "npmPkg": "expo-jwt", "npm": { - "downloads": 24462, - "weekDownloads": 4972, + "downloads": 23515, + "weekDownloads": 4875, "size": 31166, "latestRelease": "1.8.2", "latestReleaseDate": "2025-01-28T09:56:08.877Z" @@ -108589,7 +108716,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.176, "topicSearchString": "expo jwt react-native" }, { @@ -108615,7 +108742,7 @@ "createdAt": "2024-04-02T07:17:42Z", "pushedAt": "2025-07-11T12:15:44Z", "forks": 4, - "issues": 1, + "issues": 0, "subscribers": 1, "stars": 39, "dependencies": 3 @@ -108652,8 +108779,8 @@ }, "npmPkg": "expo-skeleton-loading", "npm": { - "downloads": 16112, - "weekDownloads": 3132, + "downloads": 15867, + "weekDownloads": 3459, "size": 11104, "latestRelease": "1.1.1", "latestReleaseDate": "2025-07-11T12:16:19.891Z" @@ -108662,7 +108789,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.185, "topicSearchString": "skeleton expo react-native skeleton-loader expo-skeleton-loader skeleton-loading loading expo-skeleton-loading easy easy-skeletion-loader easy-skeletion-loading" }, { @@ -108744,8 +108871,8 @@ }, "npmPkg": "react-native-reactions", "npm": { - "downloads": 2883, - "weekDownloads": 601, + "downloads": 2792, + "weekDownloads": 669, "size": 101694, "latestRelease": "1.0.0", "latestReleaseDate": "2024-06-12T05:33:12.699Z" @@ -108755,7 +108882,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.204, "topicSearchString": "react react-native typescript reactions animated-reactions rn reanimated component react-component ios android reaction seamless-reactions seamless seamless-gesture-reaction emoji-reactions reactions-picker reactions-component animated-reactions-picker picker animation react-reaction fb-reactions-animation emoji-picker emojis library" }, { @@ -108811,8 +108938,8 @@ }, "npmPkg": "expo-notifee-plugin", "npm": { - "downloads": 292, - "weekDownloads": 34, + "downloads": 284, + "weekDownloads": 21, "size": 371689, "latestRelease": "1.0.7", "latestReleaseDate": "2024-10-17T08:35:15.936Z" @@ -108822,7 +108949,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.9, + "popularity": -0.936, "topicSearchString": "react-native expo notifee notifications remote service plugin extension expo-notifee-plugin" }, { @@ -108880,8 +109007,8 @@ }, "npmPkg": "rn-scroll-viewport-tracker", "npm": { - "downloads": 1164, - "weekDownloads": 217, + "downloads": 1123, + "weekDownloads": 194, "size": 74016, "latestRelease": "1.4.1", "latestReleaseDate": "2024-10-30T09:53:21.486Z" @@ -108891,7 +109018,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.091, + "popularity": -0.103, "topicSearchString": "react-native ios android scrollview intersection-observer" }, { @@ -108919,7 +109046,7 @@ "forks": 6, "issues": 0, "subscribers": 2, - "stars": 161, + "stars": 162, "dependencies": 0 }, "name": "react-native-multiple-modals", @@ -108952,8 +109079,8 @@ }, "npmPkg": "react-native-multiple-modals", "npm": { - "downloads": 2672, - "weekDownloads": 423, + "downloads": 2584, + "weekDownloads": 431, "size": 306204, "latestRelease": "3.2.2", "latestReleaseDate": "2025-10-07T09:56:08.517Z" @@ -108962,7 +109089,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.135, + "popularity": 0.142, "topicSearchString": "react-native multiple modals simultaneously ios modal dialog android" }, { @@ -108972,6 +109099,7 @@ "tvos": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -108986,10 +109114,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 5 }, "name": "expo-dev-client", @@ -109017,8 +109145,8 @@ }, "npmPkg": "expo-dev-client", "npm": { - "downloads": 3419269, - "weekDownloads": 667345, + "downloads": 3340221, + "weekDownloads": 674717, "size": 61677, "latestRelease": "6.0.15", "latestReleaseDate": "2025-10-10T18:56:36.900Z" @@ -109032,7 +109160,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.172, "topicSearchString": "react-native expo expo-dev-client" }, { @@ -109046,6 +109174,7 @@ "expoGo": true, "newArchitecture": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -109060,10 +109189,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 2 }, "name": "expo-build-properties", @@ -109092,8 +109221,8 @@ }, "npmPkg": "expo-build-properties", "npm": { - "downloads": 2791046, - "weekDownloads": 537682, + "downloads": 2715359, + "weekDownloads": 541917, "size": 124221, "latestRelease": "1.0.9", "latestReleaseDate": "2025-09-18T21:32:50.716Z" @@ -109107,7 +109236,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.17, "topicSearchString": "react-native expo build build-properties" }, { @@ -109118,6 +109247,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/pchalupa/expo-alternate-app-icons", @@ -109135,7 +109265,7 @@ "forks": 9, "issues": 8, "subscribers": 4, - "stars": 150, + "stars": 151, "dependencies": 0 }, "name": "expo-alternate-app-icons", @@ -109164,8 +109294,8 @@ }, "npmPkg": "expo-alternate-app-icons", "npm": { - "downloads": 18683, - "weekDownloads": 6321, + "downloads": 16306, + "weekDownloads": 4125, "size": 96628, "latestRelease": "3.0.0", "latestReleaseDate": "2025-09-08T07:17:08.277Z" @@ -109174,7 +109304,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.538, + "popularity": 0.215, "topicSearchString": "react-native expo expo-alternate-app-icons expoalternateappicons" }, { @@ -109239,8 +109369,8 @@ }, "npmPkg": "react-native-get-app-list", "npm": { - "downloads": 233, - "weekDownloads": 56, + "downloads": 234, + "weekDownloads": 51, "size": 22849, "latestRelease": "0.2.0", "latestReleaseDate": "2025-09-11T06:40:40.254Z" @@ -109249,7 +109379,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.793, + "popularity": -0.815, "topicSearchString": "react-native android installed-apps app-list application-manager mobile-development library android-apps get-installed-apps version-code application-info app-integration mobile-apps cross-platform android-app" }, { @@ -109286,7 +109416,7 @@ "forks": 23, "issues": 15, "subscribers": 4, - "stars": 223, + "stars": 225, "dependencies": 2 }, "name": "@quidone/react-native-wheel-picker", @@ -109320,8 +109450,8 @@ "configPlugin": false }, "npm": { - "downloads": 55105, - "weekDownloads": 9565, + "downloads": 53362, + "weekDownloads": 10343, "size": 451818, "latestRelease": "1.6.1", "latestReleaseDate": "2025-08-25T12:12:46.631Z" @@ -109331,7 +109461,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.165, "topicSearchString": "react-native wheel picker date datetime expo ios android select field" }, { @@ -109364,7 +109494,7 @@ "updatedAt": "2025-10-15T13:49:20Z", "createdAt": "2019-01-27T00:29:08Z", "pushedAt": "2025-10-15T13:49:20Z", - "forks": 43, + "forks": 44, "issues": 8, "subscribers": 3, "stars": 134, @@ -109405,7 +109535,7 @@ }, "npmPkg": "react-native-body-highlighter", "npm": { - "downloads": 1333, + "downloads": 1322, "weekDownloads": 220, "size": 1183878, "latestRelease": "3.1.3", @@ -109431,6 +109561,7 @@ "android": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/talsec/Free-RASP-ReactNative", @@ -109487,8 +109618,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 15957, - "weekDownloads": 2774, + "downloads": 15442, + "weekDownloads": 3277, "size": 15457891, "latestRelease": "4.2.4", "latestReleaseDate": "2025-09-17T13:41:41.923Z" @@ -109497,7 +109628,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.18, "topicSearchString": "react-native library plugin freerasp security app-security tampering-detection root-detection app-shielding rasp tampering reverse-engineering application-security frida" }, { @@ -109554,15 +109685,15 @@ "moduleType": "turbo" }, "npm": { - "downloads": 7645, - "weekDownloads": 1348, + "downloads": 7307, + "weekDownloads": 1242, "size": 15116, "latestRelease": "2.0.0", "latestReleaseDate": "2025-08-13T09:56:18.767Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": 0.15, + "popularity": 0.145, "topicSearchString": "react-native ios android" }, { @@ -109574,6 +109705,7 @@ "https://raw.githubusercontent.com/EdgarJMesquita/expo-pip/refs/heads/main/docs/assets/demo.gif" ], "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/EdgarJMesquita/expo-pip", @@ -109622,8 +109754,8 @@ }, "npmPkg": "expo-pip", "npm": { - "downloads": 10940, - "weekDownloads": 4934, + "downloads": 8712, + "weekDownloads": 2842, "size": 31616, "latestRelease": "2.0.1", "latestReleaseDate": "2025-10-14T20:04:30.553Z" @@ -109633,7 +109765,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.133, + "popularity": 0.027, "topicSearchString": "react-native expo expo-pip expopip picture-in-picture pip" }, { @@ -109663,10 +109795,10 @@ "updatedAt": "2025-10-16T18:37:44Z", "createdAt": "2020-10-16T21:19:51Z", "pushedAt": "2025-10-16T18:37:44Z", - "forks": 575, - "issues": 149, + "forks": 574, + "issues": 150, "subscribers": 41, - "stars": 13222, + "stars": 13226, "dependencies": 53 }, "name": "tamagui", @@ -109682,8 +109814,8 @@ }, "npmPkg": "tamagui", "npm": { - "downloads": 319569, - "weekDownloads": 57621, + "downloads": 314155, + "weekDownloads": 58446, "size": 4119202, "latestRelease": "1.135.3", "latestReleaseDate": "2025-10-16T18:34:47.185Z" @@ -109697,7 +109829,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.158, "topicSearchString": "" }, { @@ -109722,10 +109854,10 @@ "updatedAt": "2025-10-16T18:37:44Z", "createdAt": "2020-10-16T21:19:51Z", "pushedAt": "2025-10-16T18:37:44Z", - "forks": 575, - "issues": 149, + "forks": 574, + "issues": 150, "subscribers": 41, - "stars": 13222, + "stars": 13226, "dependencies": 3 }, "name": "@tamagui/animations-moti", @@ -109746,8 +109878,8 @@ "configPlugin": false }, "npm": { - "downloads": 303306, - "weekDownloads": 55220, + "downloads": 297892, + "weekDownloads": 56699, "size": 109971, "latestRelease": "1.135.3", "latestReleaseDate": "2025-10-16T18:35:12.749Z" @@ -109761,7 +109893,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.162, "topicSearchString": "" }, { @@ -109786,10 +109918,10 @@ "updatedAt": "2025-10-16T18:37:44Z", "createdAt": "2020-10-16T21:19:51Z", "pushedAt": "2025-10-16T18:37:44Z", - "forks": 575, - "issues": 149, + "forks": 574, + "issues": 150, "subscribers": 41, - "stars": 13222, + "stars": 13226, "dependencies": 3 }, "name": "@tamagui/animations-react-native", @@ -109810,8 +109942,8 @@ "configPlugin": false }, "npm": { - "downloads": 371532, - "weekDownloads": 66623, + "downloads": 365575, + "weekDownloads": 68138, "size": 156646, "latestRelease": "1.135.3", "latestReleaseDate": "2025-10-16T18:35:12.032Z" @@ -109825,7 +109957,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.158, "topicSearchString": "" }, { @@ -109850,10 +109982,10 @@ "updatedAt": "2025-10-16T18:37:44Z", "createdAt": "2020-10-16T21:19:51Z", "pushedAt": "2025-10-16T18:37:44Z", - "forks": 575, - "issues": 149, + "forks": 574, + "issues": 150, "subscribers": 41, - "stars": 13222, + "stars": 13226, "dependencies": 12 }, "name": "@tamagui/config", @@ -109867,8 +109999,8 @@ "configPlugin": false }, "npm": { - "downloads": 249529, - "weekDownloads": 45518, + "downloads": 245071, + "weekDownloads": 46380, "size": 1173813, "latestRelease": "1.135.3", "latestReleaseDate": "2025-10-16T18:35:11.585Z" @@ -109882,7 +110014,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.161, "topicSearchString": "" }, { @@ -109907,10 +110039,10 @@ "updatedAt": "2025-10-16T18:37:44Z", "createdAt": "2020-10-16T21:19:51Z", "pushedAt": "2025-10-16T18:37:44Z", - "forks": 575, - "issues": 149, + "forks": 574, + "issues": 150, "subscribers": 41, - "stars": 13222, + "stars": 13226, "dependencies": 1 }, "name": "@tamagui/shorthands", @@ -109924,8 +110056,8 @@ "configPlugin": false }, "npm": { - "downloads": 358064, - "weekDownloads": 63113, + "downloads": 352526, + "weekDownloads": 64872, "size": 84413, "latestRelease": "1.135.3", "latestReleaseDate": "2025-10-16T18:35:05.996Z" @@ -109939,7 +110071,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.15, + "popularity": 0.156, "topicSearchString": "" }, { @@ -109964,10 +110096,10 @@ "updatedAt": "2025-10-16T18:37:44Z", "createdAt": "2020-10-16T21:19:51Z", "pushedAt": "2025-10-16T18:37:44Z", - "forks": 575, - "issues": 149, + "forks": 574, + "issues": 150, "subscribers": 41, - "stars": 13222, + "stars": 13226, "dependencies": 5 }, "name": "@tamagui/themes", @@ -109981,8 +110113,8 @@ "configPlugin": false }, "npm": { - "downloads": 295767, - "weekDownloads": 51942, + "downloads": 290405, + "weekDownloads": 53135, "size": 11767917, "latestRelease": "1.135.3", "latestReleaseDate": "2025-10-16T18:35:05.298Z" @@ -109996,7 +110128,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.156, "topicSearchString": "" }, { @@ -110023,10 +110155,10 @@ "updatedAt": "2025-10-16T18:37:44Z", "createdAt": "2020-10-16T21:19:51Z", "pushedAt": "2025-10-16T18:37:44Z", - "forks": 575, - "issues": 149, + "forks": 574, + "issues": 150, "subscribers": 41, - "stars": 13222, + "stars": 13226, "dependencies": 15 }, "name": "@tamagui/toast", @@ -110040,8 +110172,8 @@ "configPlugin": false }, "npm": { - "downloads": 152891, - "weekDownloads": 27558, + "downloads": 150139, + "weekDownloads": 28160, "size": 689228, "latestRelease": "1.135.3", "latestReleaseDate": "2025-10-16T18:34:46.835Z" @@ -110055,7 +110187,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.159, "topicSearchString": "" }, { @@ -110121,8 +110253,8 @@ }, "npmPkg": "react-native-webp-converter", "npm": { - "downloads": 407, - "weekDownloads": 99, + "downloads": 347, + "weekDownloads": 58, "size": 96364, "latestRelease": "0.2.0", "latestReleaseDate": "2024-11-16T04:22:14.991Z" @@ -110131,7 +110263,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.792, + "popularity": -0.857, "topicSearchString": "webp image-webp image-converter webpconverter react-native ios android image-compression webp-converter" }, { @@ -110195,15 +110327,15 @@ }, "npmPkg": "react-native-get-device-locale", "npm": { - "downloads": 733, - "weekDownloads": 166, + "downloads": 691, + "weekDownloads": 165, "size": 42082, "latestRelease": "0.3.0", "latestReleaseDate": "2025-04-29T11:33:33.944Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.807, + "popularity": -0.796, "topicSearchString": "module native-module turbo-module react-native typescript i18n locale localization device-locale" }, { @@ -110269,7 +110401,7 @@ }, "npmPkg": "native-sass", "npm": { - "downloads": 59, + "downloads": 60, "weekDownloads": 0, "size": 208952, "latestRelease": "2.0.1", @@ -110402,8 +110534,8 @@ }, "npmPkg": "react-native-ficus-ui", "npm": { - "downloads": 923, - "weekDownloads": 161, + "downloads": 840, + "weekDownloads": 85, "size": 1158882, "latestRelease": "2.3.1", "latestReleaseDate": "2025-10-03T08:32:42.314Z" @@ -110413,7 +110545,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.602, + "popularity": -0.664, "topicSearchString": "" }, { @@ -110468,8 +110600,8 @@ }, "npmPkg": "react-native-skia-list", "npm": { - "downloads": 590, - "weekDownloads": 108, + "downloads": 579, + "weekDownloads": 126, "size": 486232, "latestRelease": "0.7.2", "latestReleaseDate": "2024-12-08T01:39:37.675Z" @@ -110480,7 +110612,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.565, "topicSearchString": "react-native ios android" }, { @@ -110535,8 +110667,8 @@ }, "npmPkg": "rollbar-react-native", "npm": { - "downloads": 19691, - "weekDownloads": 3303, + "downloads": 19084, + "weekDownloads": 3381, "size": 210249, "latestRelease": "1.0.0", "latestReleaseDate": "2025-09-08T22:09:42.620Z" @@ -110546,7 +110678,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.151, "topicSearchString": "react-native error-monitoring error-reporting javascript observability react typescript" }, { @@ -110606,8 +110738,8 @@ }, "npmPkg": "react-native-fusioncharts", "npm": { - "downloads": 3359, - "weekDownloads": 765, + "downloads": 3216, + "weekDownloads": 795, "size": 5206551, "latestRelease": "6.0.1", "latestReleaseDate": "2025-09-05T11:44:52.811Z" @@ -110616,7 +110748,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.194, + "popularity": 0.21, "topicSearchString": "react-native react fusioncharts android ios chart wrapper" }, { @@ -110673,8 +110805,8 @@ }, "npmPkg": "react-native-plaid-link-sdk", "npm": { - "downloads": 277937, - "weekDownloads": 50381, + "downloads": 273358, + "weekDownloads": 54854, "size": 323873, "latestRelease": "12.6.0", "latestReleaseDate": "2025-10-06T18:16:14.863Z" @@ -110686,7 +110818,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.171, "topicSearchString": "react-native plaid plaid-link react" }, { @@ -110743,8 +110875,8 @@ }, "npmPkg": "easy-peasy", "npm": { - "downloads": 126194, - "weekDownloads": 25060, + "downloads": 122731, + "weekDownloads": 26068, "size": 432456, "latestRelease": "6.1.0", "latestReleaseDate": "2025-02-19T15:25:01.777Z" @@ -110757,7 +110889,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.181, "topicSearchString": "react redux state typescript state-management immutable hooks react-hooks immer" }, { @@ -110813,8 +110945,8 @@ }, "npmPkg": "pushy-react-native", "npm": { - "downloads": 2579, - "weekDownloads": 346, + "downloads": 2535, + "weekDownloads": 374, "size": 74843, "latestRelease": "1.0.58", "latestReleaseDate": "2025-07-28T08:10:24.322Z" @@ -110823,7 +110955,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.136, + "popularity": -0.124, "topicSearchString": "" }, { @@ -110886,7 +111018,7 @@ }, "npmPkg": "rnx-gen", "npm": { - "downloads": 59, + "downloads": 60, "weekDownloads": 1, "size": 68383, "latestRelease": "1.3.0", @@ -110896,7 +111028,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.985, + "popularity": -0.986, "topicSearchString": "react-native boilerplate resources generate scaffold react template" }, { @@ -110923,7 +111055,7 @@ "forks": 5, "issues": 5, "subscribers": 3, - "stars": 53, + "stars": 54, "dependencies": 0 }, "name": "duix", @@ -110958,8 +111090,8 @@ }, "npmPkg": "duix", "npm": { - "downloads": 270, - "weekDownloads": 24, + "downloads": 265, + "weekDownloads": 34, "size": 30013, "latestRelease": "3.1.0", "latestReleaseDate": "2025-02-04T16:21:33.786Z" @@ -110969,7 +111101,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.674, + "popularity": -0.64, "topicSearchString": "state manager x kiss callbacks statemanager state-management state-manager redux vuex pareto" }, { @@ -110990,13 +111122,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-19T12:06:36Z", + "updatedAt": "2025-10-20T07:23:22Z", "createdAt": "2014-08-18T22:30:27Z", - "pushedAt": "2025-10-19T12:06:36Z", - "forks": 11192, + "pushedAt": "2025-10-20T07:23:22Z", + "forks": 11194, "issues": 181, "subscribers": 1180, - "stars": 107956, + "stars": 107971, "dependencies": 3 }, "name": "axios", @@ -111034,8 +111166,8 @@ }, "npmPkg": "axios", "npm": { - "downloads": 289405467, - "weekDownloads": 55472894, + "downloads": 282428187, + "weekDownloads": 57249160, "size": 2241796, "latestRelease": "1.12.2", "latestReleaseDate": "2025-09-14T12:59:27.346Z" @@ -111049,7 +111181,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.172, "topicSearchString": "xhr http ajax promise node browser fetch rest api client http-client javascript nodejs hacktoberfest" }, { @@ -111124,8 +111256,8 @@ "configPlugin": false }, "npm": { - "downloads": 257, - "weekDownloads": 10, + "downloads": 265, + "weekDownloads": 7, "size": 65792, "latestRelease": "1.1.2", "latestReleaseDate": "2024-07-20T16:51:03.458Z" @@ -111135,7 +111267,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.967, + "popularity": -0.977, "topicSearchString": "react-native component picker reanimated reanimated-picker reanimated-select reanimated-dropdown select select-picker dropdown dropdown-picker dropdown-select picker-select multiple multiselect options" }, { @@ -111213,7 +111345,7 @@ "configPlugin": false }, "npm": { - "downloads": 184, + "downloads": 192, "weekDownloads": 9, "size": 39036, "latestRelease": "1.3.1", @@ -111224,7 +111356,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.958, + "popularity": -0.96, "topicSearchString": "react-native component otp one time password mobile ios android sms web verify code confirmation confirmation-code one-time-code one-time-password otp-input" }, { @@ -111300,7 +111432,7 @@ "configPlugin": false }, "npm": { - "downloads": 157, + "downloads": 165, "weekDownloads": 9, "size": 19017, "latestRelease": "1.1.0", @@ -111311,7 +111443,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.95, + "popularity": -0.953, "topicSearchString": "react-native component accordion collapse reanimated reanimated-collapse reanimated-accordion collapsible collapsible-sections panels group-collapse ios android collapse-ui collapsible-ui" }, { @@ -111370,8 +111502,8 @@ "moduleType": "nitro" }, "npm": { - "downloads": 13737, - "weekDownloads": 2319, + "downloads": 13415, + "weekDownloads": 2463, "size": 10125550, "latestRelease": "9.1.11", "latestReleaseDate": "2025-08-04T09:42:53.314Z" @@ -111381,7 +111513,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.156, "topicSearchString": "react-native sqlite nitro-modules ios android" }, { @@ -111440,8 +111572,8 @@ }, "npmPkg": "react-native-snowfall", "npm": { - "downloads": 3065, - "weekDownloads": 375, + "downloads": 3016, + "weekDownloads": 470, "size": 58086, "latestRelease": "0.1.2", "latestReleaseDate": "2024-11-20T10:46:48.397Z" @@ -111451,7 +111583,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.146, + "popularity": -0.117, "topicSearchString": "react-native ios android" }, { @@ -111508,7 +111640,7 @@ "npmPkg": "react-native-webview-rpc", "npm": { "downloads": 9, - "weekDownloads": 0, + "weekDownloads": 1, "latestRelease": "0.0.1", "latestReleaseDate": "2016-01-21T12:31:39.660Z" }, @@ -111516,7 +111648,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -0.65, "topicSearchString": "comlink react-native typescript" }, { @@ -111527,6 +111659,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/jobpaardekooper/react-native-localize-date", @@ -111576,8 +111709,8 @@ }, "npmPkg": "react-native-localize-date", "npm": { - "downloads": 111, - "weekDownloads": 15, + "downloads": 108, + "weekDownloads": 9, "size": 82260, "latestRelease": "2.1.1", "latestReleaseDate": "2025-01-08T16:09:56.203Z" @@ -111587,7 +111720,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.885, + "popularity": -0.928, "topicSearchString": "localize-date react-native nitro localize localization l20n" }, { @@ -111639,8 +111772,8 @@ "configPlugin": false }, "npm": { - "downloads": 4178, - "weekDownloads": 1601, + "downloads": 4434, + "weekDownloads": 1602, "size": 872157, "latestRelease": "1.2.313", "latestReleaseDate": "2025-10-15T11:04:11.098Z" @@ -111650,7 +111783,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.076, + "popularity": 0.057, "topicSearchString": "juhuu" }, { @@ -111675,10 +111808,10 @@ "updatedAt": "2025-10-17T22:14:56Z", "createdAt": "2020-03-07T20:59:08Z", "pushedAt": "2025-10-17T22:14:56Z", - "forks": 1622, - "issues": 210, + "forks": 1627, + "issues": 211, "subscribers": 75, - "stars": 40401, + "stars": 40408, "dependencies": 0 }, "name": "zod", @@ -111707,8 +111840,8 @@ }, "npmPkg": "zod", "npm": { - "downloads": 199363640, - "weekDownloads": 36450962, + "downloads": 195263465, + "weekDownloads": 37007822, "size": 3957745, "latestRelease": "4.1.12", "latestReleaseDate": "2025-10-06T16:30:25.760Z" @@ -111722,7 +111855,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.161, "topicSearchString": "typescript schema validation type inference" }, { @@ -111750,7 +111883,7 @@ "forks": 84, "issues": 21, "subscribers": 10, - "stars": 5401, + "stars": 5407, "dependencies": 0 }, "name": "tailwind-merge", @@ -111784,8 +111917,8 @@ }, "npmPkg": "tailwind-merge", "npm": { - "downloads": 51747263, - "weekDownloads": 9678587, + "downloads": 50847595, + "weekDownloads": 9926129, "size": 898277, "latestRelease": "3.3.1", "latestReleaseDate": "2025-06-10T20:04:17.692Z" @@ -111798,7 +111931,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.166, "topicSearchString": "tailwindcss tailwind css classes classname classlist merge conflict override utility-classes" }, { @@ -111826,7 +111959,7 @@ "forks": 158, "issues": 8, "subscribers": 16, - "stars": 9444, + "stars": 9450, "dependencies": 0 }, "name": "clsx", @@ -111853,8 +111986,8 @@ }, "npmPkg": "clsx", "npm": { - "downloads": 147828039, - "weekDownloads": 27691271, + "downloads": 144304122, + "weekDownloads": 28592027, "size": 8555, "latestRelease": "2.1.1", "latestReleaseDate": "2024-04-23T05:26:04.645Z" @@ -111867,7 +112000,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.168, "topicSearchString": "classes classname classnames" }, { @@ -111924,8 +112057,8 @@ }, "npmPkg": "react-native-ios-utilities", "npm": { - "downloads": 155141, - "weekDownloads": 29447, + "downloads": 152035, + "weekDownloads": 29679, "size": 492284, "latestRelease": "5.2.0", "latestReleaseDate": "2025-09-28T15:00:44.307Z" @@ -111935,7 +112068,7 @@ "Known", "Recently updated" ], - "popularity": 0.161, + "popularity": 0.166, "topicSearchString": "react-native ios utilities utility fabric paper jsi" }, { @@ -111960,10 +112093,10 @@ "updatedAt": "2025-10-16T04:14:40Z", "createdAt": "2018-04-10T09:26:44Z", "pushedAt": "2025-10-16T04:14:40Z", - "forks": 2349, + "forks": 2352, "issues": 925, "subscribers": 277, - "stars": 48304, + "stars": 48307, "dependencies": 0 }, "name": "dayjs", @@ -111994,8 +112127,8 @@ }, "npmPkg": "dayjs", "npm": { - "downloads": 120469235, - "weekDownloads": 22808260, + "downloads": 117322690, + "weekDownloads": 23534508, "size": 672352, "latestRelease": "1.11.18", "latestReleaseDate": "2025-08-30T03:30:48.541Z" @@ -112009,7 +112142,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.171, "topicSearchString": "dayjs date time immutable moment date-formatting datetime" }, { @@ -112071,8 +112204,8 @@ }, "npmPkg": "html-entities", "npm": { - "downloads": 94513364, - "weekDownloads": 17540516, + "downloads": 92232483, + "weekDownloads": 18252772, "size": 132312, "latestRelease": "2.6.0", "latestReleaseDate": "2025-03-30T15:40:10.885Z" @@ -112085,7 +112218,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.168, "topicSearchString": "html html-entities html-entities-encode html-entities-decode entities entities-encode entities-decode html-special-characters printable-characters ascii-characters" }, { @@ -112111,10 +112244,10 @@ "updatedAt": "2025-10-07T17:26:26Z", "createdAt": "2011-02-12T00:06:03Z", "pushedAt": "2025-10-07T17:26:26Z", - "forks": 528, + "forks": 529, "issues": 42, "subscribers": 102, - "stars": 5329, + "stars": 5330, "dependencies": 0 }, "name": "semver", @@ -112138,8 +112271,8 @@ "configPlugin": false }, "npm": { - "downloads": 1826163268, - "weekDownloads": 335313596, + "downloads": 1758908348, + "weekDownloads": 346850180, "size": 97743, "latestRelease": "7.7.3", "latestReleaseDate": "2025-10-07T18:00:51.643Z" @@ -112152,7 +112285,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.168, "topicSearchString": "npm-cli" }, { @@ -112178,10 +112311,10 @@ "updatedAt": "2025-10-16T15:09:02Z", "createdAt": "2019-09-10T19:23:58Z", "pushedAt": "2025-10-16T15:09:02Z", - "forks": 3486, - "issues": 66, - "subscribers": 214, - "stars": 47040, + "forks": 3487, + "issues": 68, + "subscribers": 215, + "stars": 47059, "dependencies": 1 }, "name": "@tanstack/query-persist-client-core", @@ -112203,8 +112336,8 @@ "configPlugin": false }, "npm": { - "downloads": 2599073, - "weekDownloads": 495227, + "downloads": 2524174, + "weekDownloads": 510623, "size": 180643, "latestRelease": "5.91.4", "latestReleaseDate": "2025-10-16T15:15:34.495Z" @@ -112217,7 +112350,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.172, "topicSearchString": "" }, { @@ -112285,8 +112418,8 @@ "configPlugin": false }, "npm": { - "downloads": 47418, - "weekDownloads": 11547, + "downloads": 44402, + "weekDownloads": 9707, "size": 59101, "latestRelease": "1.4.4", "latestReleaseDate": "2025-10-01T14:57:35.271Z" @@ -112296,7 +112429,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.207, + "popularity": 0.186, "topicSearchString": "react-native ios android visibility-sensor visibility sensor visibilitysensor in-view inview" }, { @@ -112350,8 +112483,8 @@ }, "npmPkg": "jwt-decode", "npm": { - "downloads": 42416443, - "weekDownloads": 8152550, + "downloads": 41201112, + "weekDownloads": 8462923, "size": 13938, "latestRelease": "4.0.0", "latestReleaseDate": "2023-10-27T08:54:17.048Z" @@ -112363,7 +112496,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.175, "topicSearchString": "jwt browser dx-sdk" }, { @@ -112431,8 +112564,8 @@ "configPlugin": false }, "npm": { - "downloads": 11236, - "weekDownloads": 1675, + "downloads": 11366, + "weekDownloads": 1723, "size": 190238, "latestRelease": "2.1.6", "latestReleaseDate": "2025-10-17T08:17:32.346Z" @@ -112443,7 +112576,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.127, + "popularity": 0.129, "topicSearchString": "react react-native typescript rn audio waveform audio-waveform audio-chat chat-audio audio-visualizer component javascript library" }, { @@ -112520,8 +112653,8 @@ }, "npmPkg": "react-native-infinite-wheel-picker", "npm": { - "downloads": 1955, - "weekDownloads": 437, + "downloads": 1850, + "weekDownloads": 358, "size": 71978, "latestRelease": "1.0.0", "latestReleaseDate": "2024-08-07T06:57:00.477Z" @@ -112531,7 +112664,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.19, + "popularity": 0.165, "topicSearchString": "react react-native typescript rn infinite-picker infinite-wheel-picker wheel-picker infinite-wheel infinite wheel picker scroll-picker scroll infinite-scroll infinite-scroll-picker infinite-scroll-wheel-picker component android ios react-component library selection wheelpicker" }, { @@ -112690,8 +112823,8 @@ }, "npmPkg": "react-native-sticky-table", "npm": { - "downloads": 2054, - "weekDownloads": 122, + "downloads": 2034, + "weekDownloads": 117, "size": 73503, "latestRelease": "1.0.0", "latestReleaseDate": "2023-12-26T15:43:30.332Z" @@ -112701,7 +112834,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.051, + "popularity": 0.049, "topicSearchString": "react react-native typescript rn sticky-table table sticky reanimated component android ios reanimated-component sticky-animated-table gesture-handler animation react-component animated-sticky-table tableview javascript" }, { @@ -112786,8 +112919,8 @@ }, "npmPkg": "react-native-tree-selection", "npm": { - "downloads": 587, - "weekDownloads": 130, + "downloads": 598, + "weekDownloads": 146, "size": 64585, "latestRelease": "1.0.1", "latestReleaseDate": "2023-07-17T11:09:34.756Z" @@ -112797,7 +112930,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.312, + "popularity": -1.291, "topicSearchString": "react react-native typescript rn selection tree-selection select-list tree tree-view nested-tree nested-tree-dropdown dropdown nested-dropdown tree-dropdown react-tree tree-ui ui-components android ios hierarchical hierarchical-view hierarchical-dropdown component library select tree-select tree-structure" }, { @@ -112864,8 +112997,8 @@ "unmaintained": true, "npmPkg": "react-native-photos-gallery", "npm": { - "downloads": 197, - "weekDownloads": 24, + "downloads": 199, + "weekDownloads": 31, "size": 116143, "latestRelease": "0.0.1", "latestReleaseDate": "2023-05-15T12:16:34.559Z" @@ -112875,7 +113008,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.396, + "popularity": -1.365, "topicSearchString": "react react-native typescript rn photo-gallery gallery photo reanimated component library photos" }, { @@ -112953,8 +113086,8 @@ "unmaintained": true, "npmPkg": "react-native-images-preview", "npm": { - "downloads": 1810, - "weekDownloads": 354, + "downloads": 1676, + "weekDownloads": 254, "size": 80884, "latestRelease": "0.0.1", "latestReleaseDate": "2023-05-25T05:21:30.526Z" @@ -112964,7 +113097,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.583, + "popularity": -0.621, "topicSearchString": "react react-native typescript rn photo reanimated component react-component ios android gallery pinch pinch-to-zoom mobile image-zoom image photo-preview image-preview component-library imagepreview images reanimated3" }, { @@ -113032,8 +113165,8 @@ }, "npmPkg": "react-native-radial-slider", "npm": { - "downloads": 6478, - "weekDownloads": 1351, + "downloads": 6225, + "weekDownloads": 1516, "size": 123932, "latestRelease": "1.1.0", "latestReleaseDate": "2024-02-20T13:07:49.093Z" @@ -113043,7 +113176,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.207, "topicSearchString": "react react-native typescript slider radial radial-slider circular-slider rn speedometer meter arc-slider circle-slider round-slider" }, { @@ -113112,8 +113245,8 @@ "unmaintained": true, "npmPkg": "react-native-country-code-select", "npm": { - "downloads": 132, - "weekDownloads": 21, + "downloads": 129, + "weekDownloads": 16, "size": 1208716, "latestRelease": "0.0.3", "latestReleaseDate": "2022-07-12T08:23:15.646Z" @@ -113123,7 +113256,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.365, + "popularity": -1.393, "topicSearchString": "react react-native typescript country-code select-code country calling-code rn country-codes country-flags country-list country-picker countrycodes countrynames" }, { @@ -113195,8 +113328,8 @@ "unmaintained": true, "npmPkg": "react-native-animation-catalog", "npm": { - "downloads": 40, - "weekDownloads": 8, + "downloads": 38, + "weekDownloads": 5, "size": 1067086, "latestRelease": "0.0.2", "latestReleaseDate": "2022-08-04T14:11:34.310Z" @@ -113206,7 +113339,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.322, + "popularity": -1.375, "topicSearchString": "react react-native typescript rn animation animated-component components animated-components reanimated reanimated2" }, { @@ -113273,8 +113406,8 @@ }, "npmPkg": "react-native-spinner-button", "npm": { - "downloads": 1316, - "weekDownloads": 208, + "downloads": 1279, + "weekDownloads": 203, "size": 164599, "latestRelease": "1.4.3", "latestReleaseDate": "2024-04-16T12:56:11.112Z" @@ -113339,8 +113472,8 @@ }, "npmPkg": "react-native-ttlock", "npm": { - "downloads": 1381, - "weekDownloads": 259, + "downloads": 1358, + "weekDownloads": 296, "size": 646418, "latestRelease": "2.2.6", "latestReleaseDate": "2025-09-15T08:52:30.210Z" @@ -113349,7 +113482,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.09, + "popularity": -0.064, "topicSearchString": "react-native ios android" }, { @@ -113418,8 +113551,8 @@ }, "npmPkg": "react-native-toastier", "npm": { - "downloads": 4925, - "weekDownloads": 1247, + "downloads": 4903, + "weekDownloads": 1326, "size": 98812, "latestRelease": "2.0.4", "latestReleaseDate": "2025-08-06T03:57:27.069Z" @@ -113428,7 +113561,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.035, + "popularity": -0.02, "topicSearchString": "toast toasts component components elements element toastier toastify toastiers short-message toast-message snackbar react-native notifications alerts animated animation message" }, { @@ -113458,7 +113591,7 @@ "forks": 416, "issues": 41, "subscribers": 32, - "stars": 5425, + "stars": 5427, "dependencies": 2 }, "name": "@lingui/core", @@ -113488,8 +113621,8 @@ "configPlugin": false }, "npm": { - "downloads": 2461124, - "weekDownloads": 447766, + "downloads": 2379838, + "weekDownloads": 458438, "size": 54099, "latestRelease": "5.5.1", "latestReleaseDate": "2025-10-10T09:43:49.461Z" @@ -113502,7 +113635,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, + "popularity": 0.164, "topicSearchString": "i18n i10n i9n internationalization localization translation multilingual" }, { @@ -113526,10 +113659,10 @@ "updatedAt": "2025-04-24T02:04:44Z", "createdAt": "2013-05-24T16:15:54Z", "pushedAt": "2025-04-24T02:04:44Z", - "forks": 48930, - "issues": 801, - "subscribers": 6699, - "stars": 239873, + "forks": 48933, + "issues": 804, + "subscribers": 6697, + "stars": 239906, "dependencies": 0 }, "name": "react-compiler-runtime", @@ -113552,8 +113685,8 @@ }, "npmPkg": "react-compiler-runtime", "npm": { - "downloads": 3408618, - "weekDownloads": 651118, + "downloads": 3325277, + "weekDownloads": 700316, "size": 45698, "latestRelease": "1.0.0", "latestReleaseDate": "2025-10-07T19:19:07.561Z" @@ -113566,7 +113699,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.179, "topicSearchString": "" }, { @@ -113626,8 +113759,8 @@ }, "npmPkg": "rn-date-format", "npm": { - "downloads": 31, - "weekDownloads": 6, + "downloads": 29, + "weekDownloads": 5, "size": 48672, "latestRelease": "1.0.1", "latestReleaseDate": "2025-01-07T13:49:48.445Z" @@ -113636,7 +113769,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.829, + "popularity": -0.833, "topicSearchString": "react-native device time-format hour-format 12-hour 24-hour" }, { @@ -113700,8 +113833,8 @@ }, "npmPkg": "native-notify", "npm": { - "downloads": 3655, - "weekDownloads": 535, + "downloads": 3558, + "weekDownloads": 545, "size": 19546, "latestRelease": "4.0.9", "latestReleaseDate": "2024-12-09T14:39:36.919Z" @@ -113711,7 +113844,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.126, + "popularity": -0.12, "topicSearchString": "expo push notifications react native notify expo-push-notifications expo-push-notification push-notifications push-notification expo-push-notifications-react-native expo-push-notification-react-native native-notify native-notify-push-notifications" }, { @@ -113765,8 +113898,8 @@ }, "npmPkg": "react-native-nitro-media-kit", "npm": { - "downloads": 39, - "weekDownloads": 8, + "downloads": 38, + "weekDownloads": 7, "size": 145564, "latestRelease": "0.1.0", "latestReleaseDate": "2025-05-08T10:22:28.953Z" @@ -113775,7 +113908,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.822, + "popularity": -0.825, "topicSearchString": "react-native ios android" }, { @@ -113846,8 +113979,8 @@ }, "npmPkg": "react-native-irano", "npm": { - "downloads": 797, - "weekDownloads": 109, + "downloads": 791, + "weekDownloads": 131, "size": 112491, "latestRelease": "1.1.1", "latestReleaseDate": "2024-12-26T22:23:12.127Z" @@ -113857,7 +113990,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.883, + "popularity": -0.859, "topicSearchString": "react-native toast notification cross-platform ios android toast-notification irano expo-irano alert" }, { @@ -113866,6 +113999,7 @@ "https://github.com/MaxAst/expo-share-extension/tree/main/example" ], "ios": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/MaxAst/expo-share-extension", @@ -113914,8 +114048,8 @@ }, "npmPkg": "expo-share-extension", "npm": { - "downloads": 22422, - "weekDownloads": 3218, + "downloads": 22016, + "weekDownloads": 3483, "size": 1286557, "latestRelease": "5.0.0", "latestReleaseDate": "2025-10-18T06:33:03.058Z" @@ -113926,7 +114060,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.122, + "popularity": 0.134, "topicSearchString": "react-native expo expo-share-extension exposhareextension ios share-extension" }, { @@ -113935,6 +114069,7 @@ "ios": true, "android": true, "web": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/EvanBacon/expo-apple-colors", @@ -113978,7 +114113,7 @@ "moduleType": "expo" }, "npm": { - "downloads": 2047, + "downloads": 2021, "weekDownloads": 269, "size": 701939, "latestRelease": "0.0.8", @@ -113989,7 +114124,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.112, + "popularity": 0.113, "topicSearchString": "react typescript" }, { @@ -114046,8 +114181,8 @@ }, "npmPkg": "shadowlist", "npm": { - "downloads": 92, - "weekDownloads": 9, + "downloads": 91, + "weekDownloads": 5, "size": 1112128, "latestRelease": "0.4.25", "latestReleaseDate": "2025-05-09T13:51:21.160Z" @@ -114057,7 +114192,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.664, + "popularity": -0.702, "topicSearchString": "react-native ios android new-architecture" }, { @@ -114124,7 +114259,7 @@ }, "npmPkg": "react-native-shiki-engine", "npm": { - "downloads": 62, + "downloads": 65, "weekDownloads": 7, "size": 8610506, "latestRelease": "0.2.0", @@ -114132,7 +114267,7 @@ }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.65, + "popularity": -0.657, "topicSearchString": "react-native ios android shiki oniguruma regex syntax-highlighting textmate turbo cpp javascript jsi native react" }, { @@ -114195,8 +114330,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 4937, - "weekDownloads": 1280, + "downloads": 4656, + "weekDownloads": 1127, "size": 767178, "latestRelease": "0.11.0", "latestReleaseDate": "2025-10-13T07:50:55.013Z" @@ -114207,7 +114342,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.22, + "popularity": 0.206, "topicSearchString": "react-native ios android library google-navigation navigation-sdk navsdk google-maps-api google-maps-platform" }, { @@ -114226,10 +114361,10 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-13T10:30:58Z", + "updatedAt": "2025-10-20T06:04:39Z", "createdAt": "2022-11-04T22:38:14Z", - "pushedAt": "2025-10-13T10:30:58Z", - "forks": 84, + "pushedAt": "2025-10-20T06:04:39Z", + "forks": 85, "issues": 13, "subscribers": 16, "stars": 566, @@ -114260,8 +114395,8 @@ "configPlugin": false }, "npm": { - "downloads": 2041, - "weekDownloads": 301, + "downloads": 2280, + "weekDownloads": 353, "size": 281841, "latestRelease": "0.15.6", "latestReleaseDate": "2025-10-16T08:46:15.951Z" @@ -114272,7 +114407,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.125, + "popularity": 0.132, "topicSearchString": "iot home-automation matter smart-device ble" }, { @@ -114328,8 +114463,8 @@ "configPlugin": false }, "npm": { - "downloads": 1483309, - "weekDownloads": 281877, + "downloads": 1440907, + "weekDownloads": 287973, "size": 1702120, "latestRelease": "4.5.1", "latestReleaseDate": "2024-12-14T00:45:20.293Z" @@ -114340,7 +114475,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.17, "topicSearchString": "typescript javascript i18n localization internationalization" }, { @@ -114394,8 +114529,8 @@ "configPlugin": false }, "npm": { - "downloads": 312736, - "weekDownloads": 72003, + "downloads": 300174, + "weekDownloads": 70659, "size": 261740, "latestRelease": "4.10.1", "latestReleaseDate": "2025-09-29T13:52:32.902Z" @@ -114407,7 +114542,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.196, + "popularity": 0.2, "topicSearchString": "tailwind tailwindcss react-native classnames" }, { @@ -114461,14 +114596,15 @@ }, "npmPkg": "useapihook-dexterverse", "npm": { - "downloads": 44, + "downloads": 45, "weekDownloads": 0, "size": 26321, "latestRelease": "2.3.0", "latestReleaseDate": "2025-04-23T06:32:41.808Z" }, - "score": 43, + "score": 32, "matchingScoreModifiers": [ + "Not updated recently", "Not supporting New Architecture" ], "popularity": -1, @@ -114534,14 +114670,14 @@ "npmPkg": "react-native-audio-playback", "npm": { "downloads": 386, - "weekDownloads": 40, + "weekDownloads": 43, "size": 208181, "latestRelease": "1.1.3", "latestReleaseDate": "2025-04-19T06:36:29.589Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -1.411, + "popularity": -1.404, "topicSearchString": "react-native ios android low-latency audio sound high-performance" }, { @@ -114629,8 +114765,8 @@ }, "npmPkg": "react-native-tree-multi-select", "npm": { - "downloads": 1900, - "weekDownloads": 263, + "downloads": 1872, + "weekDownloads": 264, "size": 201640, "latestRelease": "2.0.2", "latestReleaseDate": "2025-08-19T02:43:06.134Z" @@ -114639,7 +114775,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.118, + "popularity": 0.12, "topicSearchString": "react-native ios android react-component treeview tree-view tree-select checkbox react-tree-view react-tree-select react-checkbox-tree checkbox-list tree-checkbox tree-structure hierarchical-list collapsible-list nested-list multi-select dropdown-menu expandable-list customizable expo web tree checkbox-treeview" }, { @@ -114707,8 +114843,8 @@ }, "npmPkg": "react-native-session-storage", "npm": { - "downloads": 2020, - "weekDownloads": 321, + "downloads": 1924, + "weekDownloads": 293, "size": 49759, "latestRelease": "2.0.1", "latestReleaseDate": "2025-05-17T20:08:05.935Z" @@ -114717,7 +114853,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.115, + "popularity": -0.12, "topicSearchString": "react-native session-storage ios android async-storage storage asyn-storage volative-storage" }, { @@ -114782,8 +114918,8 @@ }, "npmPkg": "react-native-zeroconf", "npm": { - "downloads": 109866, - "weekDownloads": 23855, + "downloads": 104120, + "weekDownloads": 22753, "size": 120997, "latestRelease": "0.13.8", "latestReleaseDate": "2023-05-18T17:10:49.468Z" @@ -114794,7 +114930,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.185, + "popularity": 0.186, "topicSearchString": "react-component react-native zeroconf bonjour avahi network lan ios android network-discovery discovery broadcast react" }, { @@ -114812,6 +114948,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/fishjam-cloud/mobile-client-sdk", @@ -114862,8 +114999,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 484, - "weekDownloads": 44, + "downloads": 539, + "weekDownloads": 52, "size": 470157, "latestRelease": "0.22.1", "latestReleaseDate": "2025-10-14T12:48:47.087Z" @@ -114873,7 +115010,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.922, + "popularity": -0.917, "topicSearchString": "react-native expo fishjam fishjamcloud membranewebrtc webrtc streaming video audio" }, { @@ -114933,8 +115070,8 @@ }, "npmPkg": "react-native-sheet-transitions", "npm": { - "downloads": 2418, - "weekDownloads": 958, + "downloads": 2259, + "weekDownloads": 793, "size": 49230, "latestRelease": "0.1.2", "latestReleaseDate": "2024-12-08T00:06:45.089Z" @@ -114946,7 +115083,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.337, + "popularity": 0.299, "topicSearchString": "react-native sheet transitions animation" }, { @@ -115007,8 +115144,8 @@ "configPlugin": false }, "npm": { - "downloads": 423, - "weekDownloads": 86, + "downloads": 405, + "weekDownloads": 76, "size": 13038, "latestRelease": "3.0.0", "latestReleaseDate": "2024-12-11T20:42:19.706Z" @@ -115018,7 +115155,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.826, + "popularity": -0.84, "topicSearchString": "react-native animated-ellipsis rn-animated-ellipsis loading-animation" }, { @@ -115084,8 +115221,8 @@ }, "npmPkg": "react-native-fs-turbo", "npm": { - "downloads": 1682, - "weekDownloads": 143, + "downloads": 1706, + "weekDownloads": 145, "size": 459484, "latestRelease": "0.3.7", "latestReleaseDate": "2025-09-04T22:10:21.751Z" @@ -115116,9 +115253,9 @@ "createdAt": "2024-04-17T16:55:50Z", "pushedAt": "2025-10-08T18:45:36Z", "forks": 29, - "issues": 24, + "issues": 25, "subscribers": 11, - "stars": 401, + "stars": 402, "dependencies": 0 }, "name": "uniffi-bindgen-react-native", @@ -115145,8 +115282,8 @@ }, "npmPkg": "uniffi-bindgen-react-native", "npm": { - "downloads": 5662, - "weekDownloads": 641, + "downloads": 5710, + "weekDownloads": 784, "size": 1181989, "latestRelease": "0.29.3-1", "latestReleaseDate": "2025-07-30T15:31:54.419Z" @@ -115157,7 +115294,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.096, + "popularity": 0.117, "topicSearchString": "bindgen react-native rust-lang" }, { @@ -115222,8 +115359,8 @@ "configPlugin": false }, "npm": { - "downloads": 716, - "weekDownloads": 90, + "downloads": 719, + "weekDownloads": 114, "size": 132198, "latestRelease": "0.2.0", "latestReleaseDate": "2025-02-02T20:20:12.764Z" @@ -115233,7 +115370,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.643, + "popularity": -0.615, "topicSearchString": "react-native ios android drag select dragselect drag-select multiselect multi-select gesture reanimated" }, { @@ -115287,7 +115424,7 @@ }, "npmPkg": "useutils-dexterverse", "npm": { - "downloads": 63, + "downloads": 64, "weekDownloads": 0, "size": 29000, "latestRelease": "1.1.9", @@ -115324,13 +115461,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-17T16:35:16Z", + "updatedAt": "2025-10-20T10:31:42Z", "createdAt": "2024-06-12T10:21:40Z", - "pushedAt": "2025-10-17T16:35:16Z", + "pushedAt": "2025-10-20T10:31:42Z", "forks": 58, - "issues": 13, + "issues": 11, "subscribers": 17, - "stars": 1435, + "stars": 1439, "dependencies": 0 }, "name": "react-native-nitro-modules", @@ -115375,11 +115512,11 @@ }, "npmPkg": "react-native-nitro-modules", "npm": { - "downloads": 348240, - "weekDownloads": 48175, - "size": 474292, - "latestRelease": "0.30.2", - "latestReleaseDate": "2025-10-16T10:32:22.971Z" + "downloads": 344525, + "weekDownloads": 49576, + "size": 484277, + "latestRelease": "0.31.0", + "latestReleaseDate": "2025-10-20T10:31:19.512Z" }, "score": 76, "matchingScoreModifiers": [ @@ -115387,7 +115524,7 @@ "Known", "Recently updated" ], - "popularity": 0.118, + "popularity": 0.122, "topicSearchString": "react-native nitro ios android visionos tvos macos cpp framework react swift native modules fast jsi turbo scaffold template views" }, { @@ -115413,13 +115550,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-10-16T10:33:19Z", + "updatedAt": "2025-10-20T10:31:42Z", "createdAt": "2024-06-12T10:21:40Z", - "pushedAt": "2025-10-16T10:33:19Z", + "pushedAt": "2025-10-20T10:31:42Z", "forks": 58, - "issues": 13, + "issues": 11, "subscribers": 17, - "stars": 1435, + "stars": 1439, "dependencies": 5 }, "name": "nitrogen", @@ -115443,11 +115580,11 @@ }, "npmPkg": "nitrogen", "npm": { - "downloads": 19345, - "weekDownloads": 3371, - "size": 789043, - "latestRelease": "0.30.2", - "latestReleaseDate": "2025-10-16T10:32:53.895Z" + "downloads": 18839, + "weekDownloads": 3449, + "size": 799423, + "latestRelease": "0.31.0", + "latestReleaseDate": "2025-10-20T10:31:37.175Z" }, "score": 73, "matchingScoreModifiers": [ @@ -115456,7 +115593,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.156, "topicSearchString": "" }, { @@ -115523,7 +115660,7 @@ "configPlugin": false }, "npm": { - "downloads": 80, + "downloads": 81, "weekDownloads": 0, "size": 91189, "latestRelease": "0.8.0", @@ -115600,8 +115737,8 @@ }, "npmPkg": "react-native-in-app-updates", "npm": { - "downloads": 2135, - "weekDownloads": 442, + "downloads": 2042, + "weekDownloads": 398, "size": 23621, "latestRelease": "0.2.2", "latestReleaseDate": "2025-06-30T08:28:58.666Z" @@ -115610,7 +115747,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.074, + "popularity": -0.084, "topicSearchString": "react-native android in-app-updates update-flow flexible-update immediate-update app-update mobile-updates lightweight-library android-app in-app-update in-app-update-android" }, { @@ -115748,7 +115885,7 @@ }, "npmPkg": "react-native-install-unknown-apps", "npm": { - "downloads": 59, + "downloads": 58, "weekDownloads": 8, "size": 23118, "latestRelease": "0.1.1", @@ -115815,8 +115952,8 @@ }, "npmPkg": "react-native-urovo", "npm": { - "downloads": 773, - "weekDownloads": 10, + "downloads": 781, + "weekDownloads": 9, "size": 376440, "latestRelease": "1.2.0-beta.4", "latestReleaseDate": "2025-10-05T18:14:31.576Z" @@ -115825,7 +115962,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.989, + "popularity": -0.99, "topicSearchString": "react-native android urovo" }, { @@ -115886,8 +116023,8 @@ }, "npmPkg": "react-native-nitro-haptics", "npm": { - "downloads": 3704, - "weekDownloads": 434, + "downloads": 3659, + "weekDownloads": 492, "size": 93632, "latestRelease": "0.1.0", "latestReleaseDate": "2025-02-26T10:04:09.322Z" @@ -115897,7 +116034,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.1, + "popularity": 0.114, "topicSearchString": "react-native nitro nitro-module haptics haptic-feedback reanimated worklet" }, { @@ -115960,7 +116097,7 @@ "moduleType": "expo" }, "npm": { - "downloads": 66, + "downloads": 70, "weekDownloads": 0, "size": 33192, "latestRelease": "0.1.2", @@ -116025,7 +116162,7 @@ "unmaintained": true, "npmPkg": "react-native-quick-aws4", "npm": { - "downloads": 37, + "downloads": 38, "weekDownloads": 0, "size": 20048, "latestRelease": "1.0.3", @@ -116058,10 +116195,10 @@ "updatedAt": "2025-09-12T11:14:37Z", "createdAt": "2018-05-04T08:42:17Z", "pushedAt": "2025-09-12T11:14:37Z", - "forks": 36, + "forks": 35, "issues": 2, "subscribers": 3, - "stars": 73, + "stars": 74, "dependencies": 0 }, "name": "react-native-bluetooth-state-manager", @@ -116092,8 +116229,8 @@ }, "npmPkg": "react-native-bluetooth-state-manager", "npm": { - "downloads": 46389, - "weekDownloads": 8369, + "downloads": 44992, + "weekDownloads": 9451, "size": 113784, "latestRelease": "2.0.4", "latestReleaseDate": "2025-09-12T11:14:50.131Z" @@ -116102,7 +116239,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.179, "topicSearchString": "react-native react native bluetooth state manager" }, { @@ -116115,6 +116252,7 @@ "web": true, "tvos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -116129,10 +116267,10 @@ "updatedAt": "2025-10-13T09:55:09Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-13T09:55:09Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-video", @@ -116161,8 +116299,8 @@ }, "npmPkg": "expo-video", "npm": { - "downloads": 708814, - "weekDownloads": 135306, + "downloads": 694966, + "weekDownloads": 135982, "size": 1256729, "latestRelease": "3.0.11", "latestReleaseDate": "2025-09-10T18:40:10.405Z" @@ -116176,7 +116314,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.166, "topicSearchString": "react-native expo video player" }, { @@ -116230,8 +116368,8 @@ }, "npmPkg": "react-native-timezone", "npm": { - "downloads": 9677, - "weekDownloads": 1715, + "downloads": 9369, + "weekDownloads": 1665, "size": 47769, "latestRelease": "3.1.0", "latestReleaseDate": "2024-12-14T09:14:17.242Z" @@ -116295,15 +116433,15 @@ }, "npmPkg": "react-native-overflow-row", "npm": { - "downloads": 80, - "weekDownloads": 24, + "downloads": 77, + "weekDownloads": 28, "size": 754457, "latestRelease": "1.0.9", "latestReleaseDate": "2025-06-24T07:20:40.633Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.733, + "popularity": -0.689, "topicSearchString": "react-native ios android" }, { @@ -116364,8 +116502,8 @@ }, "npmPkg": "react-native-use-form", "npm": { - "downloads": 273, - "weekDownloads": 20, + "downloads": 269, + "weekDownloads": 16, "size": 294775, "latestRelease": "0.17.3", "latestReleaseDate": "2025-04-15T22:07:40.261Z" @@ -116375,7 +116513,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.688, + "popularity": -0.699, "topicSearchString": "react-native ios android" }, { @@ -116444,8 +116582,8 @@ }, "npmPkg": "react-native-paper-tabs", "npm": { - "downloads": 22314, - "weekDownloads": 4081, + "downloads": 21818, + "weekDownloads": 4384, "size": 968856, "latestRelease": "0.11.4", "latestReleaseDate": "2025-04-12T11:48:56.500Z" @@ -116455,7 +116593,7 @@ "Known", "Not updated recently" ], - "popularity": 0.155, + "popularity": 0.171, "topicSearchString": "react-native ios android material-design tabs viewpager web react material paper material-design-tabs" }, { @@ -116484,7 +116622,7 @@ "updatedAt": "2025-08-04T21:48:07Z", "createdAt": "2021-07-01T20:48:19Z", "pushedAt": "2025-08-04T21:48:07Z", - "forks": 3, + "forks": 2, "issues": 6, "subscribers": 2, "stars": 120, @@ -116520,15 +116658,15 @@ }, "npmPkg": "react-native-ridge-navigation", "npm": { - "downloads": 320, - "weekDownloads": 22, + "downloads": 319, + "weekDownloads": 18, "size": 1738745, "latestRelease": "3.0.16", "latestReleaseDate": "2025-08-04T21:48:06.783Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.691, + "popularity": -0.702, "topicSearchString": "react-native ios android react navigation web typescript" }, { @@ -116552,7 +116690,7 @@ "forks": 652, "issues": 404, "subscribers": 14, - "stars": 3039, + "stars": 3040, "dependencies": 3 }, "name": "react-native-chart-kit", @@ -116583,8 +116721,8 @@ "unmaintained": true, "npmPkg": "react-native-chart-kit", "npm": { - "downloads": 391725, - "weekDownloads": 74875, + "downloads": 388380, + "weekDownloads": 76003, "size": 399072, "latestRelease": "6.12.0", "latestReleaseDate": "2022-02-08T04:08:27.067Z" @@ -116598,7 +116736,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.588, + "popularity": -0.584, "topicSearchString": "chart chart-kit react-native expo charts graphs" }, { @@ -116622,10 +116760,10 @@ "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", "pushedAt": "2025-10-14T12:32:07Z", - "forks": 2223, - "issues": 58, + "forks": 2224, + "issues": 60, "subscribers": 164, - "stars": 12106, + "stars": 12107, "dependencies": 0 }, "name": "@react-native-firebase/installations", @@ -116652,8 +116790,8 @@ "configPlugin": false }, "npm": { - "downloads": 90684, - "weekDownloads": 15888, + "downloads": 88628, + "weekDownloads": 16460, "size": 77491, "latestRelease": "23.4.1", "latestReleaseDate": "2025-10-14T12:32:56.395Z" @@ -116666,7 +116804,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.158, "topicSearchString": "react react-native firebase installations" }, { @@ -116674,6 +116812,7 @@ "npmPkg": "@didomi/react-native", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/didomi/react-native", @@ -116718,8 +116857,8 @@ "configPlugin": true }, "npm": { - "downloads": 12188, - "weekDownloads": 1970, + "downloads": 11760, + "weekDownloads": 2054, "size": 416448, "latestRelease": "2.16.0", "latestReleaseDate": "2025-10-10T16:35:50.137Z" @@ -116730,7 +116869,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.113, + "popularity": -0.102, "topicSearchString": "react-native ios android" }, { @@ -116792,7 +116931,7 @@ }, "npmPkg": "expo-spellchecker", "npm": { - "downloads": 27, + "downloads": 36, "weekDownloads": 14, "size": 6698535, "latestRelease": "1.0.2", @@ -116803,7 +116942,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.533, + "popularity": -0.65, "topicSearchString": "react-native expo expo-spellchecker expospellchecker spellchecker dictionary word-completion word-prediction" }, { @@ -116859,8 +116998,8 @@ "configPlugin": false }, "npm": { - "downloads": 650, - "weekDownloads": 51, + "downloads": 631, + "weekDownloads": 92, "size": 121256, "latestRelease": "2.5.5", "latestReleaseDate": "2025-10-10T15:53:27.027Z" @@ -116871,7 +117010,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.683, + "popularity": -0.626, "topicSearchString": "react-native ai-chatbot android app-framework chat chatbot cross-platform ios mobile react" }, { @@ -116903,7 +117042,7 @@ "forks": 1238, "issues": 207, "subscribers": 71, - "stars": 11112, + "stars": 11110, "dependencies": 6 }, "name": "@reduxjs/toolkit", @@ -116935,8 +117074,8 @@ "configPlugin": false }, "npm": { - "downloads": 27545869, - "weekDownloads": 5153724, + "downloads": 26956089, + "weekDownloads": 5327288, "size": 6869116, "latestRelease": "2.9.1", "latestReleaseDate": "2025-10-17T02:52:30.645Z" @@ -116950,7 +117089,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.168, "topicSearchString": "redux react starter toolkit reducer slice immer immutable redux-toolkit" }, { @@ -117009,8 +117148,8 @@ }, "npmPkg": "react-redux", "npm": { - "downloads": 47730105, - "weekDownloads": 8927422, + "downloads": 46608183, + "weekDownloads": 9249582, "size": 822524, "latestRelease": "9.2.0", "latestReleaseDate": "2024-12-10T23:06:45.755Z" @@ -117022,7 +117161,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.169, "topicSearchString": "react reactjs redux" }, { @@ -117053,7 +117192,7 @@ "forks": 14860, "issues": 39, "subscribers": 1255, - "stars": 61360, + "stars": 61361, "dependencies": 0 }, "name": "redux", @@ -117088,8 +117227,8 @@ }, "npmPkg": "redux", "npm": { - "downloads": 64397734, - "weekDownloads": 12027843, + "downloads": 62868430, + "weekDownloads": 12490175, "size": 289804, "latestRelease": "5.0.1", "latestReleaseDate": "2023-12-23T16:47:28.099Z" @@ -117102,7 +117241,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.169, "topicSearchString": "redux reducer state predictable functional immutable hot live replay flux elm" }, { @@ -117157,8 +117296,8 @@ }, "npmPkg": "reselect", "npm": { - "downloads": 53184386, - "weekDownloads": 9961927, + "downloads": 51918474, + "weekDownloads": 10353974, "size": 646106, "latestRelease": "5.1.1", "latestReleaseDate": "2024-06-01T22:16:06.224Z" @@ -117171,7 +117310,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.17, "topicSearchString": "react redux memoized-selectors" }, { @@ -117228,8 +117367,8 @@ }, "npmPkg": "redux-thunk", "npm": { - "downloads": 35500803, - "weekDownloads": 6638266, + "downloads": 34149908, + "weekDownloads": 6869077, "size": 26757, "latestRelease": "3.1.0", "latestReleaseDate": "2023-12-04T13:50:37.326Z" @@ -117242,7 +117381,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.171, "topicSearchString": "redux thunk middleware redux-middleware flux" }, { @@ -117267,10 +117406,10 @@ "updatedAt": "2025-10-01T19:14:40Z", "createdAt": "2012-02-17T14:19:43Z", "pushedAt": "2025-10-01T19:14:40Z", - "forks": 11945, + "forks": 11947, "issues": 3758, "subscribers": 1346, - "stars": 75734, + "stars": 75738, "dependencies": 1 }, "name": "@fortawesome/fontawesome-svg-core", @@ -117299,8 +117438,8 @@ "configPlugin": false }, "npm": { - "downloads": 8292089, - "weekDownloads": 1564039, + "downloads": 8085793, + "weekDownloads": 1610266, "size": 438956, "latestRelease": "7.1.0", "latestReleaseDate": "2025-10-01T19:33:58.264Z" @@ -117314,7 +117453,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.169, "topicSearchString": "font awesome fontawesome icon svg bootstrap" }, { @@ -117338,10 +117477,10 @@ "updatedAt": "2025-10-01T19:14:40Z", "createdAt": "2012-02-17T14:19:43Z", "pushedAt": "2025-10-01T19:14:40Z", - "forks": 11945, + "forks": 11947, "issues": 3758, "subscribers": 1346, - "stars": 75734, + "stars": 75738, "dependencies": 1 }, "name": "@fortawesome/free-brands-svg-icons", @@ -117363,8 +117502,8 @@ "configPlugin": false }, "npm": { - "downloads": 2729669, - "weekDownloads": 505201, + "downloads": 2668834, + "weekDownloads": 518127, "size": 2251366, "latestRelease": "7.1.0", "latestReleaseDate": "2025-10-01T19:39:12.619Z" @@ -117378,7 +117517,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.165, "topicSearchString": "font awesome fontawesome icon svg bootstrap" }, { @@ -117402,10 +117541,10 @@ "updatedAt": "2025-10-01T19:14:40Z", "createdAt": "2012-02-17T14:19:43Z", "pushedAt": "2025-10-01T19:14:40Z", - "forks": 11945, + "forks": 11947, "issues": 3758, "subscribers": 1346, - "stars": 75734, + "stars": 75738, "dependencies": 1 }, "name": "@fortawesome/free-regular-svg-icons", @@ -117427,8 +117566,8 @@ "configPlugin": false }, "npm": { - "downloads": 4053936, - "weekDownloads": 764075, + "downloads": 3962180, + "weekDownloads": 785939, "size": 698777, "latestRelease": "7.1.0", "latestReleaseDate": "2025-10-01T19:38:48.790Z" @@ -117442,7 +117581,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.169, "topicSearchString": "font awesome fontawesome icon svg bootstrap" }, { @@ -117466,10 +117605,10 @@ "updatedAt": "2025-10-01T19:14:40Z", "createdAt": "2012-02-17T14:19:43Z", "pushedAt": "2025-10-01T19:14:40Z", - "forks": 11945, + "forks": 11947, "issues": 3758, "subscribers": 1346, - "stars": 75734, + "stars": 75738, "dependencies": 1 }, "name": "@fortawesome/free-solid-svg-icons", @@ -117491,8 +117630,8 @@ "configPlugin": false }, "npm": { - "downloads": 7947261, - "weekDownloads": 1500400, + "downloads": 7764201, + "weekDownloads": 1548106, "size": 5063436, "latestRelease": "7.1.0", "latestReleaseDate": "2025-10-01T19:38:23.286Z" @@ -117506,7 +117645,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.169, "topicSearchString": "font awesome fontawesome icon svg bootstrap" }, { @@ -117569,7 +117708,7 @@ "npmPkg": "react-native-motion-tabs", "npm": { "downloads": 490, - "weekDownloads": 12, + "weekDownloads": 10, "size": 72446, "latestRelease": "1.0.12", "latestReleaseDate": "2025-01-03T12:27:43.896Z" @@ -117578,7 +117717,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.729, + "popularity": -0.733, "topicSearchString": "react-native ios android bottom-tabs react navigation screens reactnative typescript expo" }, { @@ -117587,6 +117726,7 @@ "android": true, "expo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/vantuan88291/react-native-ota-hot-update", @@ -117639,8 +117779,8 @@ }, "npmPkg": "react-native-ota-hot-update", "npm": { - "downloads": 8542, - "weekDownloads": 1598, + "downloads": 8331, + "weekDownloads": 1717, "size": 248478, "latestRelease": "2.3.4", "latestReleaseDate": "2025-09-01T08:41:28.349Z" @@ -117650,7 +117790,7 @@ "Known", "Recently updated" ], - "popularity": 0.159, + "popularity": 0.175, "topicSearchString": "hot-update ota code-push update hotupdate codepush ota-hot-update custom-ota rn-hotupdate" }, { @@ -117706,8 +117846,8 @@ }, "npmPkg": "react-native-passkey", "npm": { - "downloads": 129015, - "weekDownloads": 21744, + "downloads": 127231, + "weekDownloads": 21898, "size": 123279, "latestRelease": "3.3.1", "latestReleaseDate": "2025-10-02T22:17:44.792Z" @@ -117718,7 +117858,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.146, "topicSearchString": "react-native ios android passkey authentication auth" }, { @@ -117775,8 +117915,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 18436, - "weekDownloads": 3353, + "downloads": 18137, + "weekDownloads": 3784, "size": 65190, "latestRelease": "4.3.32", "latestReleaseDate": "2025-10-15T19:00:54.705Z" @@ -117786,7 +117926,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.095, + "popularity": -0.073, "topicSearchString": "react-native ios android mcumgr" }, { @@ -117808,6 +117948,7 @@ "tvos": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/THEOplayer/react-native-theoplayer", @@ -117819,9 +117960,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-16T08:52:00Z", + "updatedAt": "2025-10-20T13:49:21Z", "createdAt": "2022-06-06T09:18:31Z", - "pushedAt": "2025-10-16T08:52:00Z", + "pushedAt": "2025-10-20T13:49:21Z", "forks": 29, "issues": 0, "subscribers": 6, @@ -117857,18 +117998,18 @@ }, "npmPkg": "react-native-theoplayer", "npm": { - "downloads": 27919, - "weekDownloads": 6604, - "size": 2592743, - "latestRelease": "10.1.0", - "latestReleaseDate": "2025-10-06T13:40:58.984Z" + "downloads": 26948, + "weekDownloads": 6534, + "size": 2619261, + "latestRelease": "10.2.0", + "latestReleaseDate": "2025-10-20T14:42:59.354Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.201, + "popularity": 0.206, "topicSearchString": "react-native theoplayer ios android video video-player video-streaming" }, { @@ -117880,6 +118021,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/gronxb/hot-updater", @@ -117891,13 +118033,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-18T08:03:52Z", + "updatedAt": "2025-10-20T15:23:43Z", "createdAt": "2023-10-22T15:56:45Z", - "pushedAt": "2025-10-18T08:03:52Z", - "forks": 91, + "pushedAt": "2025-10-20T15:23:43Z", + "forks": 92, "issues": 35, "subscribers": 11, - "stars": 1055, + "stars": 1053, "dependencies": 4 }, "name": "@hot-updater/react-native", @@ -117929,11 +118071,11 @@ "moduleType": "turbo" }, "npm": { - "downloads": 24268, - "weekDownloads": 4912, + "downloads": 23616, + "weekDownloads": 4832, "size": 299648, - "latestRelease": "0.20.14", - "latestReleaseDate": "2025-10-18T08:05:58.272Z" + "latestRelease": "0.20.15", + "latestReleaseDate": "2025-10-20T15:25:53.149Z" }, "score": 76, "matchingScoreModifiers": [ @@ -117941,7 +118083,7 @@ "Known", "Recently updated" ], - "popularity": 0.172, + "popularity": 0.174, "topicSearchString": "react-native code-push code-push eas eas-update expo expo-update self-hosted" }, { @@ -118003,7 +118145,7 @@ }, "npmPkg": "react-native-trendy", "npm": { - "downloads": 70, + "downloads": 71, "weekDownloads": 0, "size": 1848827, "latestRelease": "1.1.0", @@ -118023,6 +118165,7 @@ ], "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/matinzd/expo-health-connect", @@ -118069,8 +118212,8 @@ }, "npmPkg": "expo-health-connect", "npm": { - "downloads": 18077, - "weekDownloads": 3407, + "downloads": 17625, + "weekDownloads": 3513, "size": 13238, "latestRelease": "0.1.1", "latestReleaseDate": "2024-07-31T17:07:32.223Z" @@ -118080,7 +118223,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.09, + "popularity": -0.081, "topicSearchString": "react-native expo expo-health-connect expohealthconnect" }, { @@ -118155,8 +118298,8 @@ }, "npmPkg": "xior", "npm": { - "downloads": 85751, - "weekDownloads": 15786, + "downloads": 83132, + "weekDownloads": 16679, "size": 231185, "latestRelease": "0.7.8", "latestReleaseDate": "2025-04-09T22:41:39.323Z" @@ -118166,7 +118309,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.171, "topicSearchString": "fetch fetch-wrapper axios axios-fetch axios-alternatives xior fetch-plugins tauri plugins http edge-runtime https network url uri mock dedupe promise request error-retry request-cache request-throttle axios-api typescript ajax" }, { @@ -118223,8 +118366,8 @@ "configPlugin": false }, "npm": { - "downloads": 463909, - "weekDownloads": 100570, + "downloads": 444297, + "weekDownloads": 101115, "size": 83684, "latestRelease": "6.1.1", "latestReleaseDate": "2025-10-03T07:07:25.969Z" @@ -118235,7 +118378,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.184, + "popularity": 0.193, "topicSearchString": "arraybuffer browser browserify buffer compatible dataview uint8array react-native" }, { @@ -118297,8 +118440,8 @@ "configPlugin": false }, "npm": { - "downloads": 34160, - "weekDownloads": 6493, + "downloads": 33135, + "weekDownloads": 6877, "size": 12044, "latestRelease": "54.0.0", "latestReleaseDate": "2025-09-15T11:41:11.549Z" @@ -118307,7 +118450,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.088, + "popularity": -0.074, "topicSearchString": "bugsnag expo react-native exception error javascript monitoring reporting stability mobile" }, { @@ -118369,8 +118512,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 297732, - "weekDownloads": 59766, + "downloads": 289001, + "weekDownloads": 65252, "size": 16854070, "latestRelease": "8.7.0", "latestReleaseDate": "2025-10-13T10:50:56.678Z" @@ -118381,7 +118524,7 @@ "Known", "Recently updated" ], - "popularity": 0.171, + "popularity": 0.192, "topicSearchString": "bugsnag react-native exception error javascript monitoring reporting stability mobile" }, { @@ -118433,8 +118576,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 9896, - "weekDownloads": 1835, + "downloads": 9830, + "weekDownloads": 2078, "size": 155662, "latestRelease": "3.1.0", "latestReleaseDate": "2025-09-24T16:03:09.028Z" @@ -118443,7 +118586,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.092, + "popularity": -0.07, "topicSearchString": "" }, { @@ -118496,8 +118639,8 @@ "configPlugin": false }, "npm": { - "downloads": 88, - "weekDownloads": 1, + "downloads": 104, + "weekDownloads": 0, "size": 8692, "latestRelease": "0.0.18", "latestReleaseDate": "2025-07-08T08:48:29.448Z" @@ -118506,7 +118649,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.99, + "popularity": -1, "topicSearchString": "react native expo expo-notifications" }, { @@ -118571,15 +118714,15 @@ }, "npmPkg": "react-native-pdf-from-image", "npm": { - "downloads": 2826, - "weekDownloads": 491, + "downloads": 2788, + "weekDownloads": 479, "size": 77624, "latestRelease": "0.3.5", "latestReleaseDate": "2025-02-28T06:32:23.548Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.102, + "popularity": -0.104, "topicSearchString": "react-native ios android pdf-generation library image-to-pdf pdf image document-creation image-processing pdf-generation-react" }, { @@ -118653,8 +118796,8 @@ }, "npmPkg": "rn-text-touch-highlight", "npm": { - "downloads": 108, - "weekDownloads": 21, + "downloads": 107, + "weekDownloads": 25, "size": 727370, "latestRelease": "0.4.0", "latestReleaseDate": "2025-02-04T19:20:39.105Z" @@ -118663,7 +118806,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.832, + "popularity": -0.8, "topicSearchString": "react-native ios android react highlight text gesture selection interactive reanimated highlighting text-highlighting text-selection text-marker highlighting-library text-highlight ui-component text-manipulation touch-interaction text-highlighter" }, { @@ -118723,8 +118866,8 @@ }, "npmPkg": "react-native-type-animation", "npm": { - "downloads": 39362, - "weekDownloads": 7180, + "downloads": 38159, + "weekDownloads": 7247, "size": 747088, "latestRelease": "0.4.4", "latestReleaseDate": "2025-05-10T20:46:45.076Z" @@ -118733,7 +118876,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.095, + "popularity": -0.089, "topicSearchString": "react-native ios android type-animation typing typinganimation" }, { @@ -118789,8 +118932,8 @@ "configPlugin": false }, "npm": { - "downloads": 54, - "weekDownloads": 4, + "downloads": 58, + "weekDownloads": 5, "size": 18836, "latestRelease": "1.0.5", "latestReleaseDate": "2025-01-31T00:05:49.147Z" @@ -118800,7 +118943,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.933, + "popularity": -0.923, "topicSearchString": "style-variance-authority sva style styles variants react-native" }, { @@ -118826,7 +118969,7 @@ "forks": 19, "issues": 6, "subscribers": 3, - "stars": 773, + "stars": 774, "dependencies": 0 }, "name": "react-native-sortables", @@ -118866,8 +119009,8 @@ }, "npmPkg": "react-native-sortables", "npm": { - "downloads": 63018, - "weekDownloads": 10436, + "downloads": 62085, + "weekDownloads": 10554, "size": 1017797, "latestRelease": "1.9.2", "latestReleaseDate": "2025-09-16T11:11:52.305Z" @@ -118877,7 +119020,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.141, + "popularity": 0.144, "topicSearchString": "draggable draggable-flex draggable-grid flex gesture-handler gestures grid haptic-feedback haptics react-native reanimated reorder sortable sortable-flex sortable-grid" }, { @@ -119006,7 +119149,7 @@ "moduleType": "turbo" }, "npm": { - "downloads": 31, + "downloads": 36, "weekDownloads": 6, "size": 467033, "latestRelease": "0.2.1", @@ -119017,7 +119160,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.6, "topicSearchString": "react-native ios android webassembly wasm" }, { @@ -119074,8 +119217,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 26354, - "weekDownloads": 5700, + "downloads": 26628, + "weekDownloads": 6176, "size": 38525, "latestRelease": "1.0.3", "latestReleaseDate": "2025-09-20T20:10:53.419Z" @@ -119087,7 +119230,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.184, + "popularity": 0.197, "topicSearchString": "react-native document viewer preview quicklook" }, { @@ -119142,7 +119285,7 @@ }, "npmPkg": "react-native-css-animations", "npm": { - "downloads": 34, + "downloads": 33, "weekDownloads": 3, "size": 27378, "latestRelease": "0.1.1", @@ -119153,13 +119296,14 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.675, + "popularity": -0.664, "topicSearchString": "react-native reanimated css-animations css-transitions ios android" }, { "githubUrl": "https://github.com/Lg0gs/react-native-tiktok", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/Lg0gs/react-native-tiktok", @@ -119206,8 +119350,8 @@ }, "npmPkg": "react-native-tiktok", "npm": { - "downloads": 1074, - "weekDownloads": 276, + "downloads": 1000, + "weekDownloads": 259, "size": 31613, "latestRelease": "2.1.16", "latestReleaseDate": "2025-07-31T05:26:23.524Z" @@ -119216,7 +119360,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.219, + "popularity": 0.22, "topicSearchString": "react-native ios android" }, { @@ -119234,9 +119378,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-10-01T08:15:43Z", + "updatedAt": "2025-10-20T08:26:22Z", "createdAt": "2024-03-14T16:15:00Z", - "pushedAt": "2025-10-01T08:15:43Z", + "pushedAt": "2025-10-20T08:26:22Z", "forks": 0, "issues": 0, "subscribers": 1, @@ -119257,7 +119401,7 @@ "npmPkg": "otago", "npm": { "downloads": 246, - "weekDownloads": 18, + "weekDownloads": 17, "size": 40605, "latestRelease": "2.2.10", "latestReleaseDate": "2025-10-01T08:15:51.458Z" @@ -119268,7 +119412,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.937, + "popularity": -0.94, "topicSearchString": "" }, { @@ -119297,7 +119441,7 @@ "updatedAt": "2025-05-12T06:00:54Z", "createdAt": "2024-04-20T06:22:22Z", "pushedAt": "2025-05-12T06:00:54Z", - "forks": 34, + "forks": 35, "issues": 12, "subscribers": 3, "stars": 222, @@ -119328,8 +119472,8 @@ "configPlugin": false }, "npm": { - "downloads": 1101, - "weekDownloads": 51, + "downloads": 1194, + "weekDownloads": 47, "size": 8998, "latestRelease": "2.2.0", "latestReleaseDate": "2025-03-04T09:08:25.201Z" @@ -119339,7 +119483,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.039, + "popularity": 0.034, "topicSearchString": "react-native expo audio deprecated" }, { @@ -119365,7 +119509,7 @@ "updatedAt": "2025-07-31T07:29:17Z", "createdAt": "2024-04-20T06:22:22Z", "pushedAt": "2025-07-31T07:29:17Z", - "forks": 34, + "forks": 35, "issues": 12, "subscribers": 3, "stars": 222, @@ -119396,8 +119540,8 @@ "configPlugin": false }, "npm": { - "downloads": 985, - "weekDownloads": 197, + "downloads": 982, + "weekDownloads": 190, "size": 196346, "latestRelease": "0.7.0", "latestReleaseDate": "2025-07-31T07:29:39.708Z" @@ -119407,7 +119551,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.579, + "popularity": -0.585, "topicSearchString": "react-native expo expo-audio-studio expoaudiostudio" }, { @@ -119419,6 +119563,7 @@ "ios": true, "android": true, "web": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/mike-stewart-dev/expo-widgets", @@ -119464,8 +119609,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 8495, - "weekDownloads": 1323, + "downloads": 8481, + "weekDownloads": 1541, "size": 148730, "latestRelease": "3.0.2", "latestReleaseDate": "2025-07-07T17:51:48.934Z" @@ -119475,7 +119620,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.132, + "popularity": 0.154, "topicSearchString": "react-native expo expo-widgets expowidgets" }, { @@ -119506,7 +119651,7 @@ "forks": 1320, "issues": 109, "subscribers": 188, - "stars": 28820, + "stars": 28824, "dependencies": 0 }, "name": "xstate", @@ -119537,8 +119682,8 @@ "configPlugin": false }, "npm": { - "downloads": 10054377, - "weekDownloads": 1852892, + "downloads": 9805001, + "weekDownloads": 1923670, "size": 2189291, "latestRelease": "5.23.0", "latestReleaseDate": "2025-10-11T04:51:32.726Z" @@ -119552,7 +119697,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.167, "topicSearchString": "statechart state-machine finite-state-machine finite-automata scxml state interpreter graph" }, { @@ -119579,7 +119724,7 @@ "forks": 1320, "issues": 109, "subscribers": 188, - "stars": 28820, + "stars": 28824, "dependencies": 0 }, "name": "@xstate/store", @@ -119604,8 +119749,8 @@ "configPlugin": false }, "npm": { - "downloads": 212014, - "weekDownloads": 49325, + "downloads": 203002, + "weekDownloads": 50071, "size": 110740, "latestRelease": "3.11.1", "latestReleaseDate": "2025-10-17T20:12:55.319Z" @@ -119619,7 +119764,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.198, + "popularity": 0.21, "topicSearchString": "store state" }, { @@ -119646,7 +119791,7 @@ "forks": 1320, "issues": 109, "subscribers": 188, - "stars": 28820, + "stars": 28824, "dependencies": 2 }, "name": "@xstate/react", @@ -119677,8 +119822,8 @@ "configPlugin": false }, "npm": { - "downloads": 5690648, - "weekDownloads": 1068693, + "downloads": 5532598, + "weekDownloads": 1110185, "size": 36230, "latestRelease": "6.0.0", "latestReleaseDate": "2025-06-19T16:18:00.485Z" @@ -119691,7 +119836,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.171, "topicSearchString": "state machine statechart scxml state graph react hook" }, { @@ -119750,8 +119895,8 @@ }, "npmPkg": "expo-totp", "npm": { - "downloads": 12, - "weekDownloads": 3, + "downloads": 11, + "weekDownloads": 1, "size": 29133, "latestRelease": "2.0.0", "latestReleaseDate": "2025-02-08T19:49:56.478Z" @@ -119761,7 +119906,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.7, + "popularity": -0.9, "topicSearchString": "react-native expo expo-totp expototp" }, { @@ -119820,8 +119965,8 @@ "configPlugin": false }, "npm": { - "downloads": 1444, - "weekDownloads": 322, + "downloads": 1406, + "weekDownloads": 370, "size": 81706, "latestRelease": "0.1.1", "latestReleaseDate": "2024-04-24T14:55:20.994Z" @@ -119831,7 +119976,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.06, + "popularity": -0.026, "topicSearchString": "react-native scroll anchor scroll-to ios android" }, { @@ -119894,8 +120039,8 @@ }, "npmPkg": "expo-key-event", "npm": { - "downloads": 1463, - "weekDownloads": 364, + "downloads": 1401, + "weekDownloads": 374, "size": 67702, "latestRelease": "1.4.0", "latestReleaseDate": "2025-04-25T07:44:59.689Z" @@ -119904,7 +120049,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.212, + "popularity": 0.227, "topicSearchString": "react-native expo expo-key-event expokeyevent keyboard-event key-event hid-event expo-module key-events" }, { @@ -119980,8 +120125,8 @@ }, "npmPkg": "react-native-inner-shadow", "npm": { - "downloads": 1020, - "weekDownloads": 176, + "downloads": 1063, + "weekDownloads": 184, "size": 277259, "latestRelease": "2.4.0", "latestReleaseDate": "2025-09-17T06:07:50.629Z" @@ -120064,8 +120209,8 @@ }, "npmPkg": "react-native-segmented-control-2", "npm": { - "downloads": 6620, - "weekDownloads": 1179, + "downloads": 6323, + "weekDownloads": 1101, "size": 59474, "latestRelease": "2.1.1", "latestReleaseDate": "2025-09-08T14:51:04.891Z" @@ -120074,7 +120219,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.148, "topicSearchString": "segmented-control segmented-control-2 freakycoder kuray react react-native javascript ui-lib rn android app-dev app-development apple application development google ios" }, { @@ -120127,7 +120272,7 @@ "moduleType": "turbo" }, "npm": { - "downloads": 61, + "downloads": 76, "weekDownloads": 11, "size": 449017, "latestRelease": "1.0.0", @@ -120137,7 +120282,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.593, + "popularity": -0.621, "topicSearchString": "react-native markdown" }, { @@ -120251,8 +120396,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 109, - "weekDownloads": 15, + "downloads": 106, + "weekDownloads": 12, "size": 20625, "latestRelease": "0.1.1", "latestReleaseDate": "2024-09-24T00:58:39.484Z" @@ -120261,7 +120406,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.88, + "popularity": -0.9, "topicSearchString": "react-native contacts" }, { @@ -120275,6 +120420,7 @@ "tvos": true, "web": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -120289,10 +120435,10 @@ "updatedAt": "2025-10-13T10:03:35Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-13T10:03:35Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-audio", @@ -120323,8 +120469,8 @@ }, "npmPkg": "expo-audio", "npm": { - "downloads": 490879, - "weekDownloads": 94670, + "downloads": 483359, + "weekDownloads": 95208, "size": 639220, "latestRelease": "1.0.13", "latestReleaseDate": "2025-09-18T21:32:55.128Z" @@ -120338,7 +120484,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.167, "topicSearchString": "react-native expo expo-audio audio ios android" }, { @@ -120349,6 +120495,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -120363,10 +120510,10 @@ "updatedAt": "2025-10-08T12:16:39Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-08T12:16:39Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-maps", @@ -120394,8 +120541,8 @@ }, "npmPkg": "expo-maps", "npm": { - "downloads": 52625, - "weekDownloads": 10078, + "downloads": 52102, + "weekDownloads": 10405, "size": 336551, "latestRelease": "0.12.8", "latestReleaseDate": "2025-10-01T00:22:45.736Z" @@ -120409,7 +120556,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.17, "topicSearchString": "react-native expo ui-components" }, { @@ -120467,7 +120614,7 @@ }, "npmPkg": "userealmstorage-dexterverse", "npm": { - "downloads": 26, + "downloads": 28, "weekDownloads": 0, "size": 9018, "latestRelease": "1.0.6", @@ -120547,8 +120694,8 @@ "configPlugin": false }, "npm": { - "downloads": 3045, - "weekDownloads": 568, + "downloads": 2988, + "weekDownloads": 535, "size": 1303828, "latestRelease": "11.0.1", "latestReleaseDate": "2025-10-14T18:47:30.650Z" @@ -120558,7 +120705,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.152, "topicSearchString": "appzung codepush react-native code push ota live-updates hot-updates expo-updates expo-ota appcenter code-push ota-update react updates" }, { @@ -120620,8 +120767,8 @@ }, "npmPkg": "react-native-boost", "npm": { - "downloads": 19763, - "weekDownloads": 5664, + "downloads": 18846, + "weekDownloads": 5607, "size": 223892, "latestRelease": "0.6.2", "latestReleaseDate": "2025-06-11T21:28:16.702Z" @@ -120631,7 +120778,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.244, + "popularity": 0.503, "topicSearchString": "react-native ios android performance optimization bundle optimize" }, { @@ -120692,7 +120839,7 @@ }, "npmPkg": "expo-googlenearby-connection", "npm": { - "downloads": 15, + "downloads": 16, "weekDownloads": 0, "size": 206419, "latestRelease": "0.1.4", @@ -120757,17 +120904,18 @@ "configPlugin": false }, "npm": { - "downloads": 262, - "weekDownloads": 30, + "downloads": 289, + "weekDownloads": 23, "size": 84479, "latestRelease": "9.0.2-alpha", "latestReleaseDate": "2025-04-22T17:23:54.054Z" }, - "score": 43, + "score": 32, "matchingScoreModifiers": [ + "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.652, + "popularity": -0.682, "topicSearchString": "react-native sms read-sms android-sms android expo sms-notification" }, { @@ -120822,7 +120970,7 @@ "moduleType": "expo" }, "npm": { - "downloads": 17, + "downloads": 18, "weekDownloads": 0, "size": 22560, "latestRelease": "0.2.3", @@ -120860,7 +121008,7 @@ "forks": 1, "issues": 0, "subscribers": 2, - "stars": 17, + "stars": 18, "dependencies": 0 }, "name": "react-native-nitro-tor", @@ -120896,7 +121044,7 @@ "npmPkg": "react-native-nitro-tor", "npm": { "downloads": 311, - "weekDownloads": 11, + "weekDownloads": 9, "size": 201598185, "latestRelease": "0.3.0", "latestReleaseDate": "2025-09-26T16:08:54.549Z" @@ -120906,7 +121054,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.97, + "popularity": -0.975, "topicSearchString": "react-native ios android tor nitro-modules new-architecture onion onion-service socks5" }, { @@ -120965,8 +121113,8 @@ }, "npmPkg": "react-native-stepper-ui", "npm": { - "downloads": 1099, - "weekDownloads": 239, + "downloads": 1086, + "weekDownloads": 253, "size": 12301, "latestRelease": "0.0.9", "latestReleaseDate": "2020-07-06T05:11:50.446Z" @@ -120977,7 +121125,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.185, + "popularity": 0.198, "topicSearchString": "react-native ios android" }, { @@ -121011,9 +121159,9 @@ "createdAt": "2024-11-20T09:02:32Z", "pushedAt": "2025-10-17T10:33:16Z", "forks": 80, - "issues": 89, + "issues": 88, "subscribers": 18, - "stars": 2643, + "stars": 2646, "dependencies": 1 }, "name": "@legendapp/list", @@ -121040,8 +121188,8 @@ "configPlugin": false }, "npm": { - "downloads": 200517, - "weekDownloads": 37048, + "downloads": 196762, + "weekDownloads": 38424, "size": 302104, "latestRelease": "2.0.13", "latestReleaseDate": "2025-10-17T10:33:15.423Z" @@ -121054,7 +121202,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.166, "topicSearchString": "react react-native list" }, { @@ -121110,8 +121258,8 @@ }, "npmPkg": "expo-selectable-text", "npm": { - "downloads": 64, - "weekDownloads": 4, + "downloads": 65, + "weekDownloads": 8, "size": 20918, "latestRelease": "0.4.0", "latestReleaseDate": "2025-01-19T22:22:22.513Z" @@ -121121,7 +121269,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.947, + "popularity": -0.893, "topicSearchString": "react-native expo expo-selectable-text exposelectabletext" }, { @@ -121142,9 +121290,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-13T15:07:49Z", + "updatedAt": "2025-10-20T17:36:05Z", "createdAt": "2025-02-27T19:32:47Z", - "pushedAt": "2025-10-13T15:07:49Z", + "pushedAt": "2025-10-20T17:36:05Z", "forks": 1, "issues": 1, "subscribers": 1, @@ -121210,9 +121358,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-13T12:55:16Z", + "updatedAt": "2025-10-20T18:00:19Z", "createdAt": "2025-02-28T15:31:16Z", - "pushedAt": "2025-10-13T12:55:16Z", + "pushedAt": "2025-10-20T18:00:19Z", "forks": 0, "issues": 1, "subscribers": 1, @@ -121250,7 +121398,7 @@ "npmPkg": "react-native-ios-translate-tasks", "npm": { "downloads": 324, - "weekDownloads": 60, + "weekDownloads": 83, "size": 79972, "latestRelease": "1.1.7", "latestReleaseDate": "2025-08-28T02:05:31.030Z" @@ -121259,7 +121407,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.842, + "popularity": -0.782, "topicSearchString": "react-native ios android translate task tasks swiftui" }, { @@ -121314,8 +121462,8 @@ }, "npmPkg": "react-native-momentum-carousel", "npm": { - "downloads": 891, - "weekDownloads": 61, + "downloads": 888, + "weekDownloads": 67, "size": 137141, "latestRelease": "2.0.0", "latestReleaseDate": "2025-03-02T09:54:32.622Z" @@ -121325,7 +121473,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.942, + "popularity": -0.936, "topicSearchString": "react-native carousel react native" }, { @@ -121394,8 +121542,8 @@ }, "npmPkg": "react-native-phone-entry", "npm": { - "downloads": 3127, - "weekDownloads": 454, + "downloads": 3055, + "weekDownloads": 452, "size": 179394, "latestRelease": "0.2.4", "latestReleaseDate": "2025-09-28T21:59:40.876Z" @@ -121404,7 +121552,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.124, + "popularity": 0.126, "topicSearchString": "react-native ios android component expo input phone-input react app" }, { @@ -121465,8 +121613,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 35, - "weekDownloads": 9, + "downloads": 34, + "weekDownloads": 7, "size": 47753, "latestRelease": "1.1.0", "latestReleaseDate": "2025-03-01T03:18:33.661Z" @@ -121475,7 +121623,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.775, + "popularity": -0.825, "topicSearchString": "react-native ios android shortcuts quick-actions uiapplicationshortcutitem app-shortcuts" }, { @@ -121544,8 +121692,8 @@ "configPlugin": false }, "npm": { - "downloads": 41, - "weekDownloads": 16, + "downloads": 64, + "weekDownloads": 13, "size": 138119, "latestRelease": "1.0.0", "latestReleaseDate": "2025-02-21T04:42:04.698Z" @@ -121555,7 +121703,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.644, + "popularity": -0.827, "topicSearchString": "react-native forms multi-step-form multi-step stepper wizard reanimated ui ios android" }, { @@ -121620,8 +121768,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 807, - "weekDownloads": 89, + "downloads": 795, + "weekDownloads": 103, "size": 129211, "latestRelease": "1.3.0", "latestReleaseDate": "2025-10-17T20:34:36.282Z" @@ -121630,7 +121778,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.656, + "popularity": -0.64, "topicSearchString": "react-native ios android speech tts text-to-speech voice highlighted highlight-text highlighter highlighted-text" }, { @@ -121690,8 +121838,8 @@ }, "npmPkg": "expo-translate-text", "npm": { - "downloads": 192, - "weekDownloads": 40, + "downloads": 201, + "weekDownloads": 37, "size": 46052, "latestRelease": "0.1.0", "latestReleaseDate": "2025-03-05T11:34:42.380Z" @@ -121701,7 +121849,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.822, + "popularity": -0.843, "topicSearchString": "react-native expo expo-translate-text expotranslatetext" }, { @@ -121766,8 +121914,8 @@ "configPlugin": false }, "npm": { - "downloads": 257, - "weekDownloads": 42, + "downloads": 252, + "weekDownloads": 39, "size": 241575, "latestRelease": "1.0.9", "latestReleaseDate": "2025-07-14T14:35:20.213Z" @@ -121776,7 +121924,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.86, + "popularity": -0.868, "topicSearchString": "nepali nepali-picker nepali-date-picker date-picker calendar-picker ios android" }, { @@ -121804,7 +121952,7 @@ "forks": 104, "issues": 44, "subscribers": 15, - "stars": 1062, + "stars": 1063, "dependencies": 1 }, "name": "react-native-purchases-ui", @@ -121835,8 +121983,8 @@ }, "npmPkg": "react-native-purchases-ui", "npm": { - "downloads": 142588, - "weekDownloads": 27791, + "downloads": 140422, + "weekDownloads": 28024, "size": 262311, "latestRelease": "9.5.4", "latestReleaseDate": "2025-10-10T12:42:16.745Z" @@ -121848,7 +121996,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.17, "topicSearchString": "react-native in-app-purchase subscriptions iap ios apple android" }, { @@ -121859,6 +122007,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/newrelic/newrelic-react-native-agent", @@ -121874,7 +122023,7 @@ "createdAt": "2021-12-06T21:50:29Z", "pushedAt": "2025-10-10T18:01:38Z", "forks": 26, - "issues": 11, + "issues": 12, "subscribers": 13, "stars": 19, "dependencies": 4 @@ -121904,8 +122053,8 @@ }, "npmPkg": "newrelic-react-native-agent", "npm": { - "downloads": 86825, - "weekDownloads": 17041, + "downloads": 83687, + "weekDownloads": 17182, "size": 350100, "latestRelease": "1.5.11", "latestReleaseDate": "2025-10-10T18:02:51.777Z" @@ -121914,7 +122063,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.083, + "popularity": -0.075, "topicSearchString": "new-relic react-native" }, { @@ -121969,8 +122118,8 @@ "unmaintained": true, "npmPkg": "react-native-notification-sounds", "npm": { - "downloads": 6348, - "weekDownloads": 1149, + "downloads": 6075, + "weekDownloads": 1137, "size": 666294, "latestRelease": "0.5.8", "latestReleaseDate": "2023-08-07T17:03:39.560Z" @@ -121980,7 +122129,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, + "popularity": -0.591, "topicSearchString": "react-native native-sounds notifications-sounds" }, { @@ -122008,7 +122157,7 @@ "forks": 6, "issues": 0, "subscribers": 2, - "stars": 166, + "stars": 167, "dependencies": 0 }, "name": "react-native-emoji-popup", @@ -122037,15 +122186,15 @@ }, "npmPkg": "react-native-emoji-popup", "npm": { - "downloads": 2485, - "weekDownloads": 550, + "downloads": 2481, + "weekDownloads": 517, "size": 51071, "latestRelease": "0.3.3", "latestReleaseDate": "2025-08-12T18:03:07.301Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": 0.188, + "popularity": 0.177, "topicSearchString": "react-native ios android" }, { @@ -122063,6 +122212,7 @@ "ios": true, "android": true, "tvos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/callstackincubator/react-native-legal", @@ -122111,8 +122261,8 @@ }, "npmPkg": "react-native-legal", "npm": { - "downloads": 11234, - "weekDownloads": 1683, + "downloads": 11265, + "weekDownloads": 1764, "size": 130274, "latestRelease": "1.6.0", "latestReleaseDate": "2025-09-12T18:22:02.510Z" @@ -122122,7 +122272,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.127, + "popularity": 0.133, "topicSearchString": "react-native oss license acknowledgements license-management" }, { @@ -122150,7 +122300,7 @@ "forks": 26, "issues": 25, "subscribers": 10, - "stars": 429, + "stars": 430, "dependencies": 0 }, "name": "@callstack/react-native-brownfield", @@ -122177,8 +122327,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 5075, - "weekDownloads": 775, + "downloads": 4972, + "weekDownloads": 869, "size": 71205, "latestRelease": "1.2.0", "latestReleaseDate": "2025-07-25T08:18:57.232Z" @@ -122189,7 +122339,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.13, + "popularity": 0.149, "topicSearchString": "brownfield native integration" }, { @@ -122220,7 +122370,7 @@ "forks": 50, "issues": 58, "subscribers": 14, - "stars": 1030, + "stars": 1032, "dependencies": 7 }, "name": "react-native-executorch", @@ -122255,8 +122405,8 @@ }, "npmPkg": "react-native-executorch", "npm": { - "downloads": 4139, - "weekDownloads": 608, + "downloads": 4118, + "weekDownloads": 586, "size": 294783120, "latestRelease": "0.5.12", "latestReleaseDate": "2025-10-17T14:17:54.408Z" @@ -122267,7 +122417,7 @@ "Known", "Recently updated" ], - "popularity": 0.125, + "popularity": 0.121, "topicSearchString": "react-native ios android executorch ai llm coreml xnnpack llama" }, { @@ -122321,8 +122471,8 @@ }, "npmPkg": "react-native-attributify", "npm": { - "downloads": 315, - "weekDownloads": 9, + "downloads": 316, + "weekDownloads": 8, "size": 354225, "latestRelease": "0.1.0-alpha.28", "latestReleaseDate": "2025-08-21T19:31:36.661Z" @@ -122331,7 +122481,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.976, + "popularity": -0.978, "topicSearchString": "react-native styling utility css-in-js atomic-css typescript" }, { @@ -122392,8 +122542,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 40, - "weekDownloads": 7, + "downloads": 43, + "weekDownloads": 10, "size": 76599, "latestRelease": "0.2.0", "latestReleaseDate": "2025-03-16T08:54:44.684Z" @@ -122402,7 +122552,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.844, + "popularity": -0.8, "topicSearchString": "react-native android @splicer97/android-keyboard-adjust android-keyboard-adjust @rn-android-keyboard-adjust keyboard-adjust keyboard adjust" }, { @@ -122573,7 +122723,7 @@ }, "npmPkg": "react-native-xxhash", "npm": { - "downloads": 182, + "downloads": 181, "weekDownloads": 7, "size": 303350, "latestRelease": "0.1.8", @@ -122652,8 +122802,8 @@ }, "npmPkg": "react-native-config-jsi", "npm": { - "downloads": 34, - "weekDownloads": 5, + "downloads": 36, + "weekDownloads": 7, "size": 43671, "latestRelease": "0.1.10", "latestReleaseDate": "2025-03-17T11:56:53.615Z" @@ -122663,7 +122813,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.875, + "popularity": -0.825, "topicSearchString": "react-native ios android jsi cpp config jsi-react-native config-cpp env config-jsi jni native-module react-config module" }, { @@ -122674,6 +122824,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/dcangulo/react-native-render-lynx", @@ -122720,8 +122871,8 @@ }, "npmPkg": "react-native-render-lynx", "npm": { - "downloads": 136, - "weekDownloads": 30, + "downloads": 132, + "weekDownloads": 27, "size": 56338, "latestRelease": "0.3.0", "latestReleaseDate": "2025-03-25T12:25:46.453Z" @@ -122730,7 +122881,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.813, + "popularity": -0.826, "topicSearchString": "react-native lynx lynx-js lynxjs" }, { @@ -122741,6 +122892,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/JuanSeBestia/react-native-wifi-reborn", @@ -122758,7 +122910,7 @@ "forks": 129, "issues": 3, "subscribers": 12, - "stars": 444, + "stars": 445, "dependencies": 0 }, "name": "react-native-wifi-reborn", @@ -122788,8 +122940,8 @@ }, "npmPkg": "react-native-wifi-reborn", "npm": { - "downloads": 69166, - "weekDownloads": 13949, + "downloads": 66950, + "weekDownloads": 14309, "size": 121300, "latestRelease": "4.13.6", "latestReleaseDate": "2025-06-25T08:41:16.075Z" @@ -122799,7 +122951,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.182, "topicSearchString": "react react-native android ios wifi connect" }, { @@ -122862,7 +123014,7 @@ "configPlugin": false }, "npm": { - "downloads": 172, + "downloads": 184, "weekDownloads": 0, "size": 172201, "latestRelease": "0.1.5", @@ -122924,8 +123076,8 @@ "configPlugin": false }, "npm": { - "downloads": 5089379, - "weekDownloads": 982995, + "downloads": 5020805, + "weekDownloads": 1008001, "size": 419936, "latestRelease": "0.24.1", "latestReleaseDate": "2025-04-29T17:48:21.897Z" @@ -122937,7 +123089,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.171, "topicSearchString": "" }, { @@ -122948,6 +123100,7 @@ "android": true, "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/pioner92/react-native-auto-skeleton", @@ -122965,7 +123118,7 @@ "forks": 8, "issues": 3, "subscribers": 3, - "stars": 297, + "stars": 300, "dependencies": 0 }, "name": "react-native-auto-skeleton", @@ -123022,8 +123175,8 @@ }, "npmPkg": "react-native-auto-skeleton", "npm": { - "downloads": 4915, - "weekDownloads": 942, + "downloads": 4794, + "weekDownloads": 858, "size": 106538, "latestRelease": "0.1.28", "latestReleaseDate": "2025-09-27T22:59:13.853Z" @@ -123033,7 +123186,7 @@ "Known", "Recently updated" ], - "popularity": 0.163, + "popularity": 0.152, "topicSearchString": "react-native ios android skeleton skeleton-loader loading-placeholder shimmer-effect loading shimmer placeholder shimmer-placeholder shimmer-placeholder-view shimmer-placeholder-view-component shimmer-placeholder-component shimmer-placeholder-component-view rn-skeleton rn-loading rn-shimmer rn-placeholder rn-skeleton-loader rn-shimmer-placeholder rn-shimmer-placeholder-view skeleton-placeholder skeleton-placeholder-view skeleton-placeholder-component skeleton-placeholder-component-view placeholder-loader loader ui native-component fabric" }, { @@ -123107,8 +123260,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 53153, - "weekDownloads": 9609, + "downloads": 51693, + "weekDownloads": 10173, "size": 385180, "latestRelease": "1.4.6", "latestReleaseDate": "2025-10-06T15:37:52.706Z" @@ -123118,7 +123271,7 @@ "Known", "Recently updated" ], - "popularity": 0.154, + "popularity": 0.167, "topicSearchString": "react-native ios android web text-input masking input component form validation formatting phone-input credit-card-input date-input time-input mask" }, { @@ -123178,8 +123331,8 @@ }, "npmPkg": "react-native-translator", "npm": { - "downloads": 596, - "weekDownloads": 136, + "downloads": 605, + "weekDownloads": 127, "size": 27094, "latestRelease": "2.0.0", "latestReleaseDate": "2025-08-07T07:29:02.274Z" @@ -123188,7 +123341,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.556, + "popularity": -0.571, "topicSearchString": "translator translate react-native typescript google-translate deepl" }, { @@ -123199,6 +123352,7 @@ ], "android": true, "ios": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/corasan/image-compressor", @@ -123249,8 +123403,8 @@ "moduleType": "nitro" }, "npm": { - "downloads": 172, - "weekDownloads": 47, + "downloads": 169, + "weekDownloads": 28, "size": 72644702, "latestRelease": "0.3.3", "latestReleaseDate": "2025-03-26T00:26:14.628Z" @@ -123260,7 +123414,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.515, + "popularity": -0.606, "topicSearchString": "react-native nitro expo image compression compressor image-compressor image-compressor" }, { @@ -123315,8 +123469,8 @@ }, "npmPkg": "react-native-nitro-bip39", "npm": { - "downloads": 355, - "weekDownloads": 60, + "downloads": 340, + "weekDownloads": 59, "size": 2680120, "latestRelease": "0.0.6", "latestReleaseDate": "2025-05-01T12:01:02.764Z" @@ -123325,7 +123479,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.855, + "popularity": -0.853, "topicSearchString": "react-native nitro" }, { @@ -123384,8 +123538,8 @@ }, "npmPkg": "react-native-nitro-in-app-browser", "npm": { - "downloads": 398, - "weekDownloads": 30, + "downloads": 393, + "weekDownloads": 28, "size": 108468, "latestRelease": "2.0.0", "latestReleaseDate": "2025-08-17T08:11:54.474Z" @@ -123395,7 +123549,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.685, + "popularity": -0.689, "topicSearchString": "react-native nitro in-app-browser in-app-browser-module nitro-in-app-browser" }, { @@ -123521,7 +123675,7 @@ "npmPkg": "react-native-llm-mediapipe", "npm": { "downloads": 124, - "weekDownloads": 17, + "weekDownloads": 18, "size": 56729, "latestRelease": "0.5.0", "latestReleaseDate": "2024-10-05T16:10:43.789Z" @@ -123531,7 +123685,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.633, + "popularity": -0.626, "topicSearchString": "react-native ios android mediapipe llm local-llm" }, { @@ -123583,8 +123737,8 @@ }, "npmPkg": "react-native-bare-kit", "npm": { - "downloads": 3188, - "weekDownloads": 1093, + "downloads": 2833, + "weekDownloads": 853, "size": 322955045, "latestRelease": "0.10.2", "latestReleaseDate": "2025-10-17T13:36:46.084Z" @@ -123593,7 +123747,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.291, + "popularity": 0.256, "topicSearchString": "" }, { @@ -123658,8 +123812,8 @@ }, "npmPkg": "rn-build-version", "npm": { - "downloads": 38, - "weekDownloads": 2, + "downloads": 37, + "weekDownloads": 0, "size": 15301, "latestRelease": "1.2.2", "latestReleaseDate": "2025-03-28T05:14:54.391Z" @@ -123669,7 +123823,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.95, + "popularity": -1, "topicSearchString": "react-native management version-management android tools developer-tools mobile-app build-automation release-management build app-versioning auto ios rn rn-build-version upgrade-build-version" }, { @@ -123722,8 +123876,8 @@ }, "npmPkg": "expo-testflight", "npm": { - "downloads": 4410, - "weekDownloads": 846, + "downloads": 4306, + "weekDownloads": 791, "size": 5614, "latestRelease": "0.3.0", "latestReleaseDate": "2025-03-20T16:42:11.691Z" @@ -123733,7 +123887,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.087, + "popularity": -0.094, "topicSearchString": "react-native expo expo-testflight expotestflight" }, { @@ -123742,6 +123896,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/config-plugins", @@ -123785,8 +123940,8 @@ "configPlugin": true }, "npm": { - "downloads": 173580, - "weekDownloads": 34186, + "downloads": 167707, + "weekDownloads": 35352, "size": 7350, "latestRelease": "12.0.0", "latestReleaseDate": "2025-09-24T15:23:31.174Z" @@ -123798,7 +123953,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.179, "topicSearchString": "blob-util react-native expo" }, { @@ -123807,6 +123962,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/config-plugins", @@ -123850,8 +124006,8 @@ "configPlugin": true }, "npm": { - "downloads": 166031, - "weekDownloads": 32668, + "downloads": 160421, + "weekDownloads": 33834, "size": 6242, "latestRelease": "12.0.0", "latestReleaseDate": "2025-09-24T15:23:42.767Z" @@ -123863,7 +124019,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.179, "topicSearchString": "pdf react-native expo" }, { @@ -123887,10 +124043,10 @@ "updatedAt": "2023-10-24T22:01:45Z", "createdAt": "2013-04-08T20:16:40Z", "pushedAt": "2023-10-24T22:01:45Z", - "forks": 2456, + "forks": 2457, "issues": 261, "subscribers": 252, - "stars": 16318, + "stars": 16320, "dependencies": 0 }, "name": "crypto-js", @@ -123934,8 +124090,8 @@ }, "npmPkg": "crypto-js", "npm": { - "downloads": 40050962, - "weekDownloads": 7556884, + "downloads": 38532277, + "weekDownloads": 7840267, "size": 486947, "latestRelease": "4.2.0", "latestReleaseDate": "2023-10-24T22:20:29.229Z" @@ -123949,7 +124105,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.173, "topicSearchString": "security crypto hash md5 sha1 sha-1 sha256 sha-256 rc4 rabbit aes des pbkdf2 hmac ofb cfb ctr cbc base64 base64url" }, { @@ -123973,10 +124129,10 @@ "updatedAt": "2025-09-08T08:25:07Z", "createdAt": "2014-10-06T10:24:22Z", "pushedAt": "2025-09-08T08:25:07Z", - "forks": 1835, + "forks": 1837, "issues": 631, - "subscribers": 206, - "stars": 36201, + "subscribers": 205, + "stars": 36207, "dependencies": 0 }, "name": "date-fns", @@ -124008,8 +124164,8 @@ }, "npmPkg": "date-fns", "npm": { - "downloads": 142148928, - "weekDownloads": 26464331, + "downloads": 138650520, + "weekDownloads": 27420238, "size": 22601076, "latestRelease": "4.1.0", "latestReleaseDate": "2024-09-17T04:37:03.810Z" @@ -124022,7 +124178,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.168, "topicSearchString": "javascript date modules utilities nodejs time date-fns hacktoberfest" }, { @@ -124050,7 +124206,7 @@ "forks": 22, "issues": 4, "subscribers": 3, - "stars": 163, + "stars": 164, "dependencies": 1 }, "name": "react-native-audio-pro", @@ -124080,8 +124236,8 @@ }, "npmPkg": "react-native-audio-pro", "npm": { - "downloads": 2616, - "weekDownloads": 542, + "downloads": 2502, + "weekDownloads": 544, "size": 274282, "latestRelease": "10.1.1", "latestReleaseDate": "2025-09-17T05:44:03.065Z" @@ -124090,7 +124246,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.185, "topicSearchString": "react-native ios android web" }, { @@ -124120,7 +124276,7 @@ "forks": 673, "issues": 9, "subscribers": 84, - "stars": 8322, + "stars": 8323, "dependencies": 1 }, "name": "i18next", @@ -124157,8 +124313,8 @@ }, "npmPkg": "i18next", "npm": { - "downloads": 39890216, - "weekDownloads": 7537868, + "downloads": 38786530, + "weekDownloads": 7791611, "size": 558277, "latestRelease": "25.6.0", "latestReleaseDate": "2025-10-10T11:52:40.679Z" @@ -124171,7 +124327,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.171, "topicSearchString": "i18next internationalization i18n translation localization l10n globalization gettext ecosystem flexibility nodejs deno javascript" }, { @@ -124228,8 +124384,8 @@ }, "npmPkg": "posthog-react-native-session-replay", "npm": { - "downloads": 192400, - "weekDownloads": 37078, + "downloads": 184900, + "weekDownloads": 35851, "size": 37712, "latestRelease": "1.2.1", "latestReleaseDate": "2025-10-15T18:42:00.265Z" @@ -124240,7 +124396,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.086, + "popularity": -0.085, "topicSearchString": "react-native ios android" }, { @@ -124251,6 +124407,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/pioner92/rn-fade-wrapper", @@ -124311,8 +124468,8 @@ }, "npmPkg": "rn-fade-wrapper", "npm": { - "downloads": 421, - "weekDownloads": 123, + "downloads": 384, + "weekDownloads": 87, "size": 62279, "latestRelease": "0.1.10", "latestReleaseDate": "2025-09-28T12:29:47.927Z" @@ -124321,7 +124478,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.502, + "popularity": -0.557, "topicSearchString": "react-native ios android native-component app.plugin.js component wrapper fade fade-wrapper fade-in fade-out fade-container fade-view fade-in-out fade-gradient gradient fade-component" }, { @@ -124384,8 +124541,8 @@ }, "npmPkg": "react-native-check-version", "npm": { - "downloads": 87006, - "weekDownloads": 17495, + "downloads": 84013, + "weekDownloads": 18523, "size": 11672, "latestRelease": "1.4.0", "latestReleaseDate": "2025-05-20T08:04:40.089Z" @@ -124395,7 +124552,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.171, + "popularity": 0.187, "topicSearchString": "react native version checker check react-native update ios android versions app-store google-play" }, { @@ -124453,8 +124610,8 @@ "configPlugin": false }, "npm": { - "downloads": 61235, - "weekDownloads": 15990, + "downloads": 57576, + "weekDownloads": 13563, "size": 909920, "latestRelease": "2.9.3", "latestReleaseDate": "2025-10-13T18:07:53.405Z" @@ -124465,7 +124622,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.222, + "popularity": 0.2, "topicSearchString": "react-native ios android livekit webrtc" }, { @@ -124523,8 +124680,8 @@ "configPlugin": false }, "npm": { - "downloads": 69097, - "weekDownloads": 16950, + "downloads": 65171, + "weekDownloads": 14375, "size": 1410364, "latestRelease": "137.0.2", "latestReleaseDate": "2025-09-18T13:46:42.084Z" @@ -124534,7 +124691,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.041, + "popularity": -0.063, "topicSearchString": "react-component react-native ios android webrtc" }, { @@ -124558,13 +124715,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-16T08:13:41Z", + "updatedAt": "2025-10-20T17:10:49Z", "createdAt": "2020-11-03T06:15:40Z", - "pushedAt": "2025-10-16T08:13:41Z", + "pushedAt": "2025-10-20T17:10:49Z", "forks": 226, "issues": 26, - "subscribers": 27, - "stars": 512, + "subscribers": 28, + "stars": 515, "dependencies": 10 }, "name": "livekit-client", @@ -124590,11 +124747,11 @@ "configPlugin": false }, "npm": { - "downloads": 1111418, - "weekDownloads": 221308, - "size": 7265027, - "latestRelease": "2.15.11", - "latestReleaseDate": "2025-10-16T08:14:48.147Z" + "downloads": 1079105, + "weekDownloads": 220237, + "size": 7265837, + "latestRelease": "2.15.12", + "latestReleaseDate": "2025-10-20T17:11:55.614Z" }, "score": 73, "matchingScoreModifiers": [ @@ -124603,7 +124760,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.173, "topicSearchString": "typescript javascript webrtc" }, { @@ -124664,8 +124821,8 @@ "configPlugin": false }, "npm": { - "downloads": 7394, - "weekDownloads": 1469, + "downloads": 7201, + "weekDownloads": 1550, "size": 65645, "latestRelease": "2.2.5", "latestReleaseDate": "2025-04-02T06:55:57.083Z" @@ -124676,7 +124833,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.183, "topicSearchString": "react react-native android foreground service background java android-application" }, { @@ -124706,11 +124863,11 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-10T13:00:09Z", + "updatedAt": "2025-10-20T16:11:35Z", "createdAt": "2022-07-21T07:06:08Z", - "pushedAt": "2025-10-10T13:00:09Z", - "forks": 124, - "issues": 181, + "pushedAt": "2025-10-20T16:11:35Z", + "forks": 125, + "issues": 178, "subscribers": 24, "stars": 3928, "dependencies": 1 @@ -124741,8 +124898,8 @@ "configPlugin": false }, "npm": { - "downloads": 99824, - "weekDownloads": 19623, + "downloads": 97758, + "weekDownloads": 19986, "size": 992478, "latestRelease": "2.1.15", "latestReleaseDate": "2024-08-30T18:05:31.880Z" @@ -124755,7 +124912,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.174, "topicSearchString": "react react-native state hooks proxy" }, { @@ -124814,8 +124971,8 @@ }, "npmPkg": "expo-click-outside", "npm": { - "downloads": 262, - "weekDownloads": 75, + "downloads": 251, + "weekDownloads": 72, "size": 48082, "latestRelease": "0.1.1", "latestReleaseDate": "2025-10-09T02:07:45.003Z" @@ -124825,7 +124982,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.754, + "popularity": -0.756, "topicSearchString": "react-native click-outside expo expo-click-outside expoclickoutside" }, { @@ -124844,9 +125001,9 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-28T16:13:04Z", + "updatedAt": "2025-10-20T18:07:16Z", "createdAt": "2017-07-18T16:44:51Z", - "pushedAt": "2025-09-28T16:13:04Z", + "pushedAt": "2025-10-20T18:07:16Z", "forks": 245, "issues": 3, "subscribers": 44, @@ -124881,11 +125038,11 @@ }, "npmPkg": "mediasoup-client", "npm": { - "downloads": 158963, - "weekDownloads": 26941, - "size": 586044, - "latestRelease": "3.16.7", - "latestReleaseDate": "2025-09-25T09:47:19.651Z" + "downloads": 156600, + "weekDownloads": 29767, + "size": 594299, + "latestRelease": "3.17.0", + "latestReleaseDate": "2025-10-20T18:08:46.621Z" }, "score": 73, "matchingScoreModifiers": [ @@ -124894,7 +125051,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.162, "topicSearchString": "webrtc ortc browser nodejs javascript sfu client-library" }, { @@ -124953,8 +125110,8 @@ }, "npmPkg": "react-native-advanced-checkbox", "npm": { - "downloads": 646, - "weekDownloads": 130, + "downloads": 635, + "weekDownloads": 140, "size": 29087, "latestRelease": "2.0.6", "latestReleaseDate": "2025-05-13T09:13:12.799Z" @@ -124963,7 +125120,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.829, + "popularity": -0.812, "topicSearchString": "react-native checkbox advanced-checkbox animation haptic accessibility group-checkbox android ios" }, { @@ -125032,8 +125189,8 @@ }, "npmPkg": "bottom-sheet-stepper", "npm": { - "downloads": 129, - "weekDownloads": 50, + "downloads": 128, + "weekDownloads": 55, "size": 19354, "latestRelease": "0.1.8", "latestReleaseDate": "2025-06-08T07:31:13.057Z" @@ -125043,7 +125200,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.417, + "popularity": -0.383, "topicSearchString": "react-native bottom-sheet stepper wizard multi-step modal bottom-sheet-stepper onboarding reanimated gorhom gesture-handler component expo" }, { @@ -125105,8 +125262,8 @@ }, "npmPkg": "expo-image-compare", "npm": { - "downloads": 93, - "weekDownloads": 14, + "downloads": 91, + "weekDownloads": 15, "size": 15927, "latestRelease": "1.0.0", "latestReleaseDate": "2025-04-09T08:42:14.449Z" @@ -125116,7 +125273,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.867, + "popularity": -0.857, "topicSearchString": "expo react-native image-compare before-after-slider reanimated gesture-handler compare" }, { @@ -125177,15 +125334,15 @@ "moduleType": "turbo" }, "npm": { - "downloads": 52, - "weekDownloads": 4, + "downloads": 55, + "weekDownloads": 2, "size": 19903218, "latestRelease": "0.4.0", "latestReleaseDate": "2025-05-09T20:24:43.271Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.933, + "popularity": -0.967, "topicSearchString": "react-native cryptography crypto encryption decryption hashing encoding decoding base64 libsodium sodium" }, { @@ -125311,8 +125468,8 @@ }, "npmPkg": "rn-use-google-places-autocomplete", "npm": { - "downloads": 229, - "weekDownloads": 45, + "downloads": 239, + "weekDownloads": 51, "size": 29518, "latestRelease": "1.1.1", "latestReleaseDate": "2025-04-09T17:22:53.646Z" @@ -125321,7 +125478,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.83, + "popularity": -0.818, "topicSearchString": "react-native ios android google-api google-places-autocomplete" }, { @@ -125387,8 +125544,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 8121, - "weekDownloads": 1790, + "downloads": 7809, + "weekDownloads": 1657, "size": 327678, "latestRelease": "17.1.3", "latestReleaseDate": "2025-08-21T14:53:00.788Z" @@ -125397,7 +125554,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.063, + "popularity": -0.07, "topicSearchString": "shakebugs shake sdk bug crash report android ios react-native bug-reporting shake-sdk bug-reports debugging" }, { @@ -125417,13 +125574,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-19T05:13:44Z", + "updatedAt": "2025-10-20T17:02:05Z", "createdAt": "2024-05-19T21:40:04Z", - "pushedAt": "2025-10-19T05:13:44Z", - "forks": 1730, - "issues": 321, + "pushedAt": "2025-10-20T17:02:05Z", + "forks": 1741, + "issues": 327, "subscribers": 32, - "stars": 22017, + "stars": 22064, "dependencies": 14 }, "name": "better-auth", @@ -125455,8 +125612,8 @@ }, "npmPkg": "better-auth", "npm": { - "downloads": 1542590, - "weekDownloads": 269148, + "downloads": 1536871, + "weekDownloads": 275466, "size": 14179371, "latestRelease": "1.3.28", "latestReleaseDate": "2025-10-19T02:04:58.807Z" @@ -125470,7 +125627,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.152, "topicSearchString": "auth oauth oidc 2fa social security typescript nextjs" }, { @@ -125491,13 +125648,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-19T02:03:40Z", + "updatedAt": "2025-10-20T16:12:36Z", "createdAt": "2024-05-19T21:40:04Z", - "pushedAt": "2025-10-19T02:03:40Z", - "forks": 1730, - "issues": 321, + "pushedAt": "2025-10-20T16:12:36Z", + "forks": 1741, + "issues": 327, "subscribers": 32, - "stars": 22017, + "stars": 22064, "dependencies": 2 }, "name": "@better-auth/expo", @@ -125525,8 +125682,8 @@ "configPlugin": false }, "npm": { - "downloads": 119066, - "weekDownloads": 22885, + "downloads": 118843, + "weekDownloads": 23267, "size": 68188, "latestRelease": "1.3.28", "latestReleaseDate": "2025-10-19T02:05:03.273Z" @@ -125540,7 +125697,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.166, "topicSearchString": "auth expo react-native typescript better-auth" }, { @@ -125594,8 +125751,8 @@ "configPlugin": false }, "npm": { - "downloads": 140, - "weekDownloads": 3, + "downloads": 153, + "weekDownloads": 13, "size": 1103305, "latestRelease": "2.0.8", "latestReleaseDate": "2025-07-04T13:24:14.988Z" @@ -125604,7 +125761,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.981, + "popularity": -0.928, "topicSearchString": "react-native wav mp3 audio converter lame" }, { @@ -125663,8 +125820,8 @@ }, "npmPkg": "react-native-uuid", "npm": { - "downloads": 1147197, - "weekDownloads": 217673, + "downloads": 1114015, + "weekDownloads": 227392, "size": 160169, "latestRelease": "2.0.3", "latestReleaseDate": "2024-11-11T23:41:01.220Z" @@ -125676,7 +125833,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.174, "topicSearchString": "uuid rfc4122 react-native reactivelions random typescript" }, { @@ -125731,7 +125888,7 @@ }, "npmPkg": "react-native-screenshot-test", "npm": { - "downloads": 39, + "downloads": 42, "weekDownloads": 5, "size": 40726, "latestRelease": "0.0.8", @@ -125802,8 +125959,8 @@ }, "npmPkg": "react-native-splash-view", "npm": { - "downloads": 25247, - "weekDownloads": 3297, + "downloads": 25075, + "weekDownloads": 3642, "size": 46923, "latestRelease": "0.0.19", "latestReleaseDate": "2025-10-01T17:00:16.450Z" @@ -125812,7 +125969,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.111, + "popularity": 0.123, "topicSearchString": "react-native ios android component splash-screen splashscreen splash launch-screen launchscreen splash-view" }, { @@ -125834,13 +125991,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-10-15T19:28:12Z", + "updatedAt": "2025-10-20T15:21:07Z", "createdAt": "2017-10-06T14:59:14Z", - "pushedAt": "2025-10-15T19:28:12Z", - "forks": 4723, - "issues": 53, + "pushedAt": "2025-10-20T15:21:07Z", + "forks": 4724, + "issues": 54, "subscribers": 620, - "stars": 90664, + "stars": 90694, "dependencies": 0 }, "name": "tailwindcss", @@ -125863,11 +126020,11 @@ }, "npmPkg": "tailwindcss", "npm": { - "downloads": 105730537, - "weekDownloads": 19032871, - "size": 683816, - "latestRelease": "4.1.14", - "latestReleaseDate": "2025-10-01T16:06:45.574Z" + "downloads": 103985880, + "weekDownloads": 19520835, + "size": 762308, + "latestRelease": "4.1.15", + "latestReleaseDate": "2025-10-20T13:24:28.586Z" }, "score": 97, "matchingScoreModifiers": [ @@ -125877,7 +126034,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.16, "topicSearchString": "" }, { @@ -125933,8 +126090,8 @@ }, "npmPkg": "react-native-country-flag", "npm": { - "downloads": 97633, - "weekDownloads": 19332, + "downloads": 94724, + "weekDownloads": 19537, "size": 8223, "latestRelease": "2.0.2", "latestReleaseDate": "2023-09-04T11:18:09.834Z" @@ -125944,7 +126101,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.175, "topicSearchString": "react-native country flags flag iso icon" }, { @@ -126004,8 +126161,8 @@ }, "npmPkg": "react-native-alert-queue", "npm": { - "downloads": 246, - "weekDownloads": 28, + "downloads": 245, + "weekDownloads": 31, "size": 161301, "latestRelease": "2.1.0", "latestReleaseDate": "2025-05-01T10:08:49.922Z" @@ -126014,7 +126171,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.902, + "popularity": -0.891, "topicSearchString": "react-native alert dialog promise async queue modal ui react" }, { @@ -126086,15 +126243,15 @@ }, "npmPkg": "react-native-tiny-wavpack-decoder", "npm": { - "downloads": 207, - "weekDownloads": 37, + "downloads": 201, + "weekDownloads": 42, "size": 272291, "latestRelease": "1.1.1", "latestReleaseDate": "2025-08-30T13:00:07.535Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.846, + "popularity": -0.821, "topicSearchString": "react-native wavpack audio-decoder turbo-module new-architecture ios android audio-processing wav file-conversion native-module audio decoder cross-platform progress-events" }, { @@ -126150,8 +126307,8 @@ "unmaintained": true, "npmPkg": "react-native-gzip", "npm": { - "downloads": 217712, - "weekDownloads": 51716, + "downloads": 207185, + "weekDownloads": 49591, "size": 29032, "latestRelease": "1.1.0", "latestReleaseDate": "2023-08-26T05:51:03.540Z" @@ -126162,7 +126319,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.798, + "popularity": -0.797, "topicSearchString": "react-native ios android gzip compress decompress" }, { @@ -126187,7 +126344,7 @@ "forks": 39, "issues": 38, "subscribers": 9, - "stars": 291, + "stars": 293, "dependencies": 2 }, "name": "react-tv-space-navigation", @@ -126208,8 +126365,8 @@ "configPlugin": false }, "npm": { - "downloads": 2630, - "weekDownloads": 443, + "downloads": 2579, + "weekDownloads": 441, "size": 695643, "latestRelease": "6.0.0-beta1", "latestReleaseDate": "2025-07-17T07:38:47.619Z" @@ -126219,7 +126376,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.146, "topicSearchString": "" }, { @@ -126278,8 +126435,8 @@ }, "npmPkg": "expo-emoji-picker", "npm": { - "downloads": 93, - "weekDownloads": 22, + "downloads": 89, + "weekDownloads": 19, "size": 520912, "latestRelease": "1.0.0", "latestReleaseDate": "2025-04-26T11:00:47.122Z" @@ -126288,7 +126445,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.79, + "popularity": -0.81, "topicSearchString": "react-native expo expo-emoji-picker emoji ios android" }, { @@ -126300,6 +126457,7 @@ "android": true, "tvos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -126314,10 +126472,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 1 }, "name": "expo-background-task", @@ -126346,8 +126504,8 @@ }, "npmPkg": "expo-background-task", "npm": { - "downloads": 166940, - "weekDownloads": 34738, + "downloads": 160522, + "weekDownloads": 31815, "size": 138577, "latestRelease": "1.0.8", "latestReleaseDate": "2025-09-18T21:32:59.093Z" @@ -126361,7 +126519,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.177, + "popularity": 0.168, "topicSearchString": "expo react-native background background-task" }, { @@ -126416,8 +126574,8 @@ }, "npmPkg": "react-native-webgpu-worklets", "npm": { - "downloads": 104, - "weekDownloads": 19, + "downloads": 99, + "weekDownloads": 24, "size": 38243192, "latestRelease": "0.3.0", "latestReleaseDate": "2025-08-28T15:31:16.782Z" @@ -126426,7 +126584,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.541, "topicSearchString": "react-native ios android" }, { @@ -126451,7 +126609,7 @@ "forks": 28, "issues": 3, "subscribers": 6, - "stars": 969, + "stars": 970, "dependencies": 0 }, "name": "react-native-is-edge-to-edge", @@ -126482,8 +126640,8 @@ }, "npmPkg": "react-native-is-edge-to-edge", "npm": { - "downloads": 8708383, - "weekDownloads": 1710332, + "downloads": 8514276, + "weekDownloads": 1730175, "size": 13042, "latestRelease": "1.2.1", "latestReleaseDate": "2025-07-01T16:08:51.760Z" @@ -126495,7 +126653,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.173, "topicSearchString": "react react-native edge-to-edge status-bar navigation-bar system-bar system-bars" }, { @@ -126510,6 +126668,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/wn-na/react-native-capture-protection", @@ -126527,7 +126686,7 @@ "forks": 17, "issues": 2, "subscribers": 3, - "stars": 241, + "stars": 242, "dependencies": 0 }, "name": "react-native-capture-protection", @@ -126563,8 +126722,8 @@ }, "npmPkg": "react-native-capture-protection", "npm": { - "downloads": 32983, - "weekDownloads": 6179, + "downloads": 32098, + "weekDownloads": 6465, "size": 175789, "latestRelease": "2.3.2", "latestReleaseDate": "2025-10-09T05:10:08.147Z" @@ -126574,7 +126733,7 @@ "Known", "Recently updated" ], - "popularity": 0.159, + "popularity": 0.171, "topicSearchString": "react-native ios android screen-capture screenrecord screenshot mobile-security privacy screenshot-protection security" }, { @@ -126629,8 +126788,8 @@ }, "npmPkg": "react-native-stallion", "npm": { - "downloads": 4790, - "weekDownloads": 1017, + "downloads": 4598, + "weekDownloads": 996, "size": 485114, "latestRelease": "2.2.0", "latestReleaseDate": "2025-06-06T07:22:58.101Z" @@ -126639,7 +126798,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.184, "topicSearchString": "react-native ios android stallion" }, { @@ -126649,6 +126808,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/razorRun/react-native-vlc-media-player", @@ -126704,8 +126864,8 @@ }, "npmPkg": "react-native-vlc-media-player", "npm": { - "downloads": 8296, - "weekDownloads": 1967, + "downloads": 7834, + "weekDownloads": 1718, "size": 325443, "latestRelease": "1.0.96", "latestReleaseDate": "2025-09-22T10:51:36.784Z" @@ -126716,7 +126876,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.202, + "popularity": 0.186, "topicSearchString": "vlc player android ios react-native mp4 rtsp media video media-player rtmp video-player video-streaming vlc-player" }, { @@ -126773,8 +126933,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 108754, - "weekDownloads": 20877, + "downloads": 108408, + "weekDownloads": 22316, "size": 824490, "latestRelease": "25.3.0", "latestReleaseDate": "2025-10-08T01:52:43.700Z" @@ -126785,7 +126945,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.175, "topicSearchString": "react-native ios android airship" }, { @@ -126796,6 +126956,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/prisma/react-native-prisma", @@ -126841,8 +127002,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 4104, - "weekDownloads": 79, + "downloads": 4391, + "weekDownloads": 65, "size": 132404881, "latestRelease": "6.0.1", "latestReleaseDate": "2024-12-04T17:24:32.614Z" @@ -126853,7 +127014,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.016, + "popularity": 0.013, "topicSearchString": "react-native ios android" }, { @@ -126887,7 +127048,7 @@ "forks": 3, "issues": 6, "subscribers": 1, - "stars": 121, + "stars": 123, "dependencies": 0 }, "name": "@s77rt/react-native-date-picker", @@ -126915,15 +127076,15 @@ "moduleType": "turbo" }, "npm": { - "downloads": 790, - "weekDownloads": 113, + "downloads": 812, + "weekDownloads": 126, "size": 164984, "latestRelease": "3.1.1", "latestReleaseDate": "2025-07-15T23:07:31.614Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.628, + "popularity": -0.618, "topicSearchString": "react-native date-picker time-picker calendar" }, { @@ -126984,8 +127145,8 @@ "configPlugin": false }, "npm": { - "downloads": 6387, - "weekDownloads": 1320, + "downloads": 6176, + "weekDownloads": 1384, "size": 299599, "latestRelease": "5.1.10", "latestReleaseDate": "2025-08-23T10:56:38.184Z" @@ -126994,7 +127155,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.191, "topicSearchString": "react native react-native react-native-velements rn-vui ui components ui-library ios android bootstrap" }, { @@ -127061,8 +127222,8 @@ "configPlugin": false }, "npm": { - "downloads": 6344, - "weekDownloads": 1305, + "downloads": 6081, + "weekDownloads": 1374, "size": 69641, "latestRelease": "5.1.10", "latestReleaseDate": "2025-08-23T10:56:54.523Z" @@ -127071,7 +127232,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.192, "topicSearchString": "react native react-native react-native-velements elements elements-themed themed ui rneui rn-vui themed ui components ui-library ios android bootstrap" }, { @@ -127122,8 +127283,8 @@ "configPlugin": false }, "npm": { - "downloads": 53973, - "weekDownloads": 10292, + "downloads": 52378, + "weekDownloads": 10456, "size": 196378, "latestRelease": "3.0.0", "latestReleaseDate": "2025-06-05T12:44:51.167Z" @@ -127132,7 +127293,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.088, + "popularity": -0.08, "topicSearchString": "react-native rudder" }, { @@ -127183,8 +127344,8 @@ "configPlugin": false }, "npm": { - "downloads": 219, - "weekDownloads": 24, + "downloads": 229, + "weekDownloads": 32, "size": 42940, "latestRelease": "1.4.1", "latestReleaseDate": "2025-06-05T12:44:55.421Z" @@ -127193,7 +127354,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.906, + "popularity": -0.879, "topicSearchString": "react-native rudder db-encryption" }, { @@ -127244,8 +127405,8 @@ "configPlugin": false }, "npm": { - "downloads": 202, - "weekDownloads": 49, + "downloads": 205, + "weekDownloads": 44, "size": 43243, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:29.223Z" @@ -127254,7 +127415,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.791, + "popularity": -0.817, "topicSearchString": "react-native rudder amplitude" }, { @@ -127305,8 +127466,8 @@ "configPlugin": false }, "npm": { - "downloads": 863, - "weekDownloads": 144, + "downloads": 835, + "weekDownloads": 142, "size": 45581, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:31.091Z" @@ -127315,7 +127476,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.858, + "popularity": -0.855, "topicSearchString": "react-native rudder appcenter" }, { @@ -127366,8 +127527,8 @@ "configPlugin": false }, "npm": { - "downloads": 761, - "weekDownloads": 175, + "downloads": 770, + "weekDownloads": 173, "size": 78391, "latestRelease": "1.7.0", "latestReleaseDate": "2025-04-29T10:32:33.158Z" @@ -127376,7 +127537,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.804, + "popularity": -0.809, "topicSearchString": "react-native rudder appsflyer" }, { @@ -127427,8 +127588,8 @@ "configPlugin": false }, "npm": { - "downloads": 187, - "weekDownloads": 63, + "downloads": 193, + "weekDownloads": 56, "size": 44155, "latestRelease": "2.0.0", "latestReleaseDate": "2025-04-29T10:32:35.390Z" @@ -127437,7 +127598,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.714, + "popularity": -0.751, "topicSearchString": "react-native rudder braze" }, { @@ -127488,8 +127649,8 @@ "configPlugin": false }, "npm": { - "downloads": 309, - "weekDownloads": 66, + "downloads": 318, + "weekDownloads": 75, "size": 44124, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:37.525Z" @@ -127498,7 +127659,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.817, + "popularity": -0.797, "topicSearchString": "react-native rudder clevertap" }, { @@ -127550,7 +127711,7 @@ }, "npm": { "downloads": 100, - "weekDownloads": 6, + "weekDownloads": 4, "size": 38309, "latestRelease": "1.1.0", "latestReleaseDate": "2025-04-29T10:32:39.686Z" @@ -127559,7 +127720,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.948, + "popularity": -0.965, "topicSearchString": "react-native rudder facebook" }, { @@ -127610,8 +127771,8 @@ "configPlugin": false }, "npm": { - "downloads": 10230, - "weekDownloads": 1845, + "downloads": 9859, + "weekDownloads": 1886, "size": 27838, "latestRelease": "2.2.0", "latestReleaseDate": "2025-10-15T11:03:10.000Z" @@ -127621,7 +127782,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.097, + "popularity": -0.087, "topicSearchString": "react-native rudder firebase" }, { @@ -127672,8 +127833,8 @@ "configPlugin": false }, "npm": { - "downloads": 159, - "weekDownloads": 7, + "downloads": 173, + "weekDownloads": 8, "size": 43031, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:43.693Z" @@ -127682,7 +127843,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.962, + "popularity": -0.96, "topicSearchString": "react-native rudder moengage" }, { @@ -127733,8 +127894,8 @@ "configPlugin": false }, "npm": { - "downloads": 118, - "weekDownloads": 5, + "downloads": 132, + "weekDownloads": 7, "size": 43104, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:45.799Z" @@ -127743,7 +127904,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.963, + "popularity": -0.955, "topicSearchString": "react-native rudder singular" }, { @@ -127802,8 +127963,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 2070, - "weekDownloads": 245, + "downloads": 2062, + "weekDownloads": 317, "size": 368072, "latestRelease": "0.9.0", "latestReleaseDate": "2025-09-26T07:22:27.721Z" @@ -127813,7 +127974,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.101, + "popularity": 0.131, "topicSearchString": "react-native ios android skia video video-composition" }, { @@ -127873,8 +128034,8 @@ }, "npmPkg": "expo-image-crop-tool", "npm": { - "downloads": 12161, - "weekDownloads": 2051, + "downloads": 12181, + "weekDownloads": 2271, "size": 38387, "latestRelease": "0.3.1", "latestReleaseDate": "2025-07-18T18:11:11.329Z" @@ -127883,7 +128044,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.158, "topicSearchString": "react-native expo expo-image-crop-tool image-crop-tool cropper crop-tool image expoimagecroptool" }, { @@ -127938,7 +128099,7 @@ "npmPkg": "expo-cached-image", "npm": { "downloads": 5352, - "weekDownloads": 971, + "weekDownloads": 948, "size": 22983, "latestRelease": "54.0.7", "latestReleaseDate": "2025-10-13T22:40:20.931Z" @@ -127948,7 +128109,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.151, "topicSearchString": "expo react-native image cached" }, { @@ -127957,6 +128118,7 @@ "https://github.com/alanjhughes/expo-shazamkit/tree/main/example" ], "ios": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/alanjhughes/expo-shazamkit", @@ -128005,8 +128167,8 @@ }, "npmPkg": "expo-shazamkit", "npm": { - "downloads": 124, - "weekDownloads": 25, + "downloads": 115, + "weekDownloads": 14, "size": 25395, "latestRelease": "1.0.0", "latestReleaseDate": "2024-01-11T23:40:14.472Z" @@ -128016,7 +128178,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.578, + "popularity": -0.646, "topicSearchString": "react-native expo shazamkit shazam music ios" }, { @@ -128076,8 +128238,8 @@ "configPlugin": false }, "npm": { - "downloads": 6575, - "weekDownloads": 1348, + "downloads": 6349, + "weekDownloads": 1393, "size": 103415, "latestRelease": "0.5.0", "latestReleaseDate": "2025-05-16T17:44:36.588Z" @@ -128086,7 +128248,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.076, + "popularity": -0.063, "topicSearchString": "react-native ios android" }, { @@ -128114,7 +128276,7 @@ "forks": 935, "issues": 157, "subscribers": 75, - "stars": 23594, + "stars": 23595, "dependencies": 4 }, "name": "yup", @@ -128137,8 +128299,8 @@ }, "npmPkg": "yup", "npm": { - "downloads": 33554260, - "weekDownloads": 6431197, + "downloads": 32632604, + "weekDownloads": 6676424, "size": 270432, "latestRelease": "1.7.1", "latestReleaseDate": "2025-09-21T13:59:55.107Z" @@ -128152,7 +128314,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.174, "topicSearchString": "" }, { @@ -128175,10 +128337,10 @@ "updatedAt": "2025-10-17T22:44:37Z", "createdAt": "2024-12-06T23:16:55Z", "pushedAt": "2025-10-17T22:44:37Z", - "forks": 155, + "forks": 156, "issues": 69, "subscribers": 26, - "stars": 1167, + "stars": 1170, "dependencies": 2 }, "name": "@google/genai", @@ -128200,8 +128362,8 @@ "configPlugin": false }, "npm": { - "downloads": 7548123, - "weekDownloads": 1534651, + "downloads": 7464083, + "weekDownloads": 1526978, "size": 7966696, "latestRelease": "1.25.0", "latestReleaseDate": "2025-10-15T03:42:14.866Z" @@ -128214,7 +128376,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.173, + "popularity": 0.174, "topicSearchString": "" }, { @@ -128294,8 +128456,8 @@ "configPlugin": false }, "npm": { - "downloads": 1890, - "weekDownloads": 288, + "downloads": 1869, + "weekDownloads": 300, "size": 32414, "latestRelease": "1.0.5", "latestReleaseDate": "2025-08-15T09:24:18.866Z" @@ -128304,7 +128466,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.12, + "popularity": -0.113, "topicSearchString": "react-native checkbox animated-checkbox component ui-component cross-platform accessibility typescript expo ui mobile-ui customizable-checkbox animation ios android web material-design form-component paper vector-icons" }, { @@ -128362,7 +128524,7 @@ "moduleType": "turbo" }, "npm": { - "downloads": 22, + "downloads": 24, "weekDownloads": 0, "size": 1372806, "latestRelease": "0.1.5", @@ -128403,7 +128565,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 4 }, "name": "@rn-primitives/accordion", @@ -128425,8 +128587,8 @@ "configPlugin": false }, "npm": { - "downloads": 125962, - "weekDownloads": 22111, + "downloads": 124249, + "weekDownloads": 23698, "size": 41368, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.851Z" @@ -128437,7 +128599,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.162, "topicSearchString": "" }, { @@ -128470,7 +128632,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 4 }, "name": "@rn-primitives/alert-dialog", @@ -128492,8 +128654,8 @@ "configPlugin": false }, "npm": { - "downloads": 75527, - "weekDownloads": 13203, + "downloads": 74418, + "weekDownloads": 13382, "size": 43716, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.827Z" @@ -128503,7 +128665,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.153, "topicSearchString": "" }, { @@ -128536,7 +128698,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 2 }, "name": "@rn-primitives/aspect-ratio", @@ -128558,8 +128720,8 @@ "configPlugin": false }, "npm": { - "downloads": 53139, - "weekDownloads": 9871, + "downloads": 52081, + "weekDownloads": 9859, "size": 7257, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.989Z" @@ -128569,7 +128731,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.161, "topicSearchString": "" }, { @@ -128602,7 +128764,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 3 }, "name": "@rn-primitives/avatar", @@ -128624,8 +128786,8 @@ "configPlugin": false }, "npm": { - "downloads": 128194, - "weekDownloads": 23103, + "downloads": 125880, + "weekDownloads": 23367, "size": 13154, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.616Z" @@ -128636,7 +128798,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.158, "topicSearchString": "" }, { @@ -128669,7 +128831,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 4 }, "name": "@rn-primitives/checkbox", @@ -128691,8 +128853,8 @@ "configPlugin": false }, "npm": { - "downloads": 129014, - "weekDownloads": 23433, + "downloads": 125912, + "weekDownloads": 23147, "size": 21426, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.643Z" @@ -128703,7 +128865,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.156, "topicSearchString": "" }, { @@ -128736,7 +128898,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 4 }, "name": "@rn-primitives/collapsible", @@ -128758,8 +128920,8 @@ "configPlugin": false }, "npm": { - "downloads": 140665, - "weekDownloads": 26039, + "downloads": 137526, + "weekDownloads": 27326, "size": 25380, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.773Z" @@ -128770,7 +128932,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.169, "topicSearchString": "" }, { @@ -128803,7 +128965,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 5 }, "name": "@rn-primitives/context-menu", @@ -128825,8 +128987,8 @@ "configPlugin": false }, "npm": { - "downloads": 47693, - "weekDownloads": 8119, + "downloads": 46941, + "weekDownloads": 8223, "size": 86150, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.922Z" @@ -128836,7 +128998,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.145, + "popularity": 0.149, "topicSearchString": "" }, { @@ -128869,7 +129031,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 4 }, "name": "@rn-primitives/dialog", @@ -128891,8 +129053,8 @@ "configPlugin": false }, "npm": { - "downloads": 109075, - "weekDownloads": 19684, + "downloads": 106704, + "weekDownloads": 19530, "size": 40364, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.006Z" @@ -128903,7 +129065,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.156, "topicSearchString": "" }, { @@ -128936,7 +129098,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 5 }, "name": "@rn-primitives/dropdown-menu", @@ -128958,8 +129120,8 @@ "configPlugin": false }, "npm": { - "downloads": 152389, - "weekDownloads": 27409, + "downloads": 149947, + "weekDownloads": 28980, "size": 84829, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.021Z" @@ -128970,7 +129132,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.164, "topicSearchString": "" }, { @@ -129003,7 +129165,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 5 }, "name": "@rn-primitives/hover-card", @@ -129025,8 +129187,8 @@ "configPlugin": false }, "npm": { - "downloads": 40834, - "weekDownloads": 7008, + "downloads": 40239, + "weekDownloads": 6953, "size": 35695, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.245Z" @@ -129036,7 +129198,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.147, "topicSearchString": "" }, { @@ -129069,7 +129231,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 3 }, "name": "@rn-primitives/label", @@ -129091,8 +129253,8 @@ "configPlugin": false }, "npm": { - "downloads": 118186, - "weekDownloads": 21478, + "downloads": 115985, + "weekDownloads": 21665, "size": 13810, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.980Z" @@ -129103,7 +129265,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.159, "topicSearchString": "" }, { @@ -129136,7 +129298,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 5 }, "name": "@rn-primitives/menubar", @@ -129158,8 +129320,8 @@ "configPlugin": false }, "npm": { - "downloads": 39279, - "weekDownloads": 6980, + "downloads": 38608, + "weekDownloads": 6906, "size": 85643, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.664Z" @@ -129169,7 +129331,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.152, "topicSearchString": "" }, { @@ -129202,7 +129364,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 5 }, "name": "@rn-primitives/navigation-menu", @@ -129224,8 +129386,8 @@ "configPlugin": false }, "npm": { - "downloads": 33680, - "weekDownloads": 5995, + "downloads": 33062, + "weekDownloads": 6159, "size": 46892, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.589Z" @@ -129235,7 +129397,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.158, "topicSearchString": "" }, { @@ -129268,7 +129430,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 4 }, "name": "@rn-primitives/popover", @@ -129290,8 +129452,8 @@ "configPlugin": false }, "npm": { - "downloads": 63184, - "weekDownloads": 10731, + "downloads": 62281, + "weekDownloads": 10788, "size": 40267, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.184Z" @@ -129301,7 +129463,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.147, "topicSearchString": "" }, { @@ -129334,7 +129496,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 3 }, "name": "@rn-primitives/progress", @@ -129356,8 +129518,8 @@ "configPlugin": false }, "npm": { - "downloads": 106889, - "weekDownloads": 18394, + "downloads": 105357, + "weekDownloads": 19174, "size": 14774, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:03.843Z" @@ -129368,7 +129530,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.155, "topicSearchString": "" }, { @@ -129401,7 +129563,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 3 }, "name": "@rn-primitives/radio-group", @@ -129423,8 +129585,8 @@ "configPlugin": false }, "npm": { - "downloads": 88726, - "weekDownloads": 16967, + "downloads": 86935, + "weekDownloads": 16961, "size": 21539, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.163Z" @@ -129435,7 +129597,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.166, "topicSearchString": "" }, { @@ -129467,7 +129629,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 4 }, "name": "@rn-primitives/select", @@ -129489,8 +129651,8 @@ "configPlugin": false }, "npm": { - "downloads": 152440, - "weekDownloads": 27573, + "downloads": 148327, + "weekDownloads": 29488, "size": 62839, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.598Z" @@ -129501,7 +129663,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.154, + "popularity": 0.169, "topicSearchString": "" }, { @@ -129534,7 +129696,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 3 }, "name": "@rn-primitives/separator", @@ -129556,8 +129718,8 @@ "configPlugin": false }, "npm": { - "downloads": 100065, - "weekDownloads": 17103, + "downloads": 98488, + "weekDownloads": 17331, "size": 7629, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.825Z" @@ -129568,7 +129730,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.145, + "popularity": 0.15, "topicSearchString": "" }, { @@ -129601,7 +129763,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 3 }, "name": "@rn-primitives/slider", @@ -129623,8 +129785,8 @@ "configPlugin": false }, "npm": { - "downloads": 11872, - "weekDownloads": 2039, + "downloads": 11784, + "weekDownloads": 2116, "size": 19152, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.949Z" @@ -129634,7 +129796,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.153, "topicSearchString": "" }, { @@ -129667,7 +129829,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 3 }, "name": "@rn-primitives/switch", @@ -129689,8 +129851,8 @@ "configPlugin": false }, "npm": { - "downloads": 178629, - "weekDownloads": 32012, + "downloads": 173120, + "weekDownloads": 33316, "size": 15802, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.724Z" @@ -129701,7 +129863,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.164, "topicSearchString": "" }, { @@ -129734,7 +129896,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 2 }, "name": "@rn-primitives/table", @@ -129756,8 +129918,8 @@ "configPlugin": false }, "npm": { - "downloads": 52334, - "weekDownloads": 9991, + "downloads": 51047, + "weekDownloads": 9893, "size": 12999, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.352Z" @@ -129767,7 +129929,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.165, "topicSearchString": "" }, { @@ -129800,7 +129962,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 3 }, "name": "@rn-primitives/tabs", @@ -129822,8 +129984,8 @@ "configPlugin": false }, "npm": { - "downloads": 137329, - "weekDownloads": 22789, + "downloads": 135680, + "weekDownloads": 24375, "size": 25704, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.800Z" @@ -129834,7 +129996,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.141, + "popularity": 0.153, "topicSearchString": "" }, { @@ -129867,7 +130029,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 2 }, "name": "@rn-primitives/toast", @@ -129889,8 +130051,8 @@ "configPlugin": false }, "npm": { - "downloads": 8724, - "weekDownloads": 1492, + "downloads": 8366, + "weekDownloads": 1640, "size": 15022, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.531Z" @@ -129900,7 +130062,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.145, + "popularity": 0.167, "topicSearchString": "" }, { @@ -129933,7 +130095,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 3 }, "name": "@rn-primitives/toggle", @@ -129955,8 +130117,8 @@ "configPlugin": false }, "npm": { - "downloads": 63671, - "weekDownloads": 12032, + "downloads": 62354, + "weekDownloads": 12122, "size": 12843, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.562Z" @@ -129966,7 +130128,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.165, "topicSearchString": "" }, { @@ -129999,7 +130161,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 4 }, "name": "@rn-primitives/toggle-group", @@ -130021,8 +130183,8 @@ "configPlugin": false }, "npm": { - "downloads": 49355, - "weekDownloads": 8781, + "downloads": 48537, + "weekDownloads": 8839, "size": 25037, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.070Z" @@ -130032,7 +130194,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.155, "topicSearchString": "" }, { @@ -130065,7 +130227,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 4 }, "name": "@rn-primitives/toolbar", @@ -130087,8 +130249,8 @@ "configPlugin": false }, "npm": { - "downloads": 2728, - "weekDownloads": 472, + "downloads": 2697, + "weekDownloads": 542, "size": 30059, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.345Z" @@ -130098,7 +130260,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.171, "topicSearchString": "" }, { @@ -130131,7 +130293,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 4 }, "name": "@rn-primitives/tooltip", @@ -130153,18 +130315,19 @@ "configPlugin": false }, "npm": { - "downloads": 76758, - "weekDownloads": 13289, + "downloads": 75436, + "weekDownloads": 13395, "size": 36725, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.724Z" }, - "score": 51, + "score": 68, "matchingScoreModifiers": [ + "Popular", "Known", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.151, "topicSearchString": "" }, { @@ -130196,7 +130359,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 1 }, "name": "@rn-primitives/hooks", @@ -130218,8 +130381,8 @@ "configPlugin": false }, "npm": { - "downloads": 319383, - "weekDownloads": 59184, + "downloads": 313221, + "weekDownloads": 60776, "size": 21709, "latestRelease": "1.3.0", "latestReleaseDate": "2025-05-20T20:18:04.797Z" @@ -130230,7 +130393,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.165, "topicSearchString": "" }, { @@ -130262,7 +130425,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 1 }, "name": "@rn-primitives/portal", @@ -130284,8 +130447,8 @@ "configPlugin": false }, "npm": { - "downloads": 310950, - "weekDownloads": 57901, + "downloads": 304379, + "weekDownloads": 59957, "size": 9495, "latestRelease": "1.3.0", "latestReleaseDate": "2025-05-20T20:18:04.822Z" @@ -130296,7 +130459,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.167, "topicSearchString": "" }, { @@ -130328,7 +130491,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 0 }, "name": "@rn-primitives/slot", @@ -130350,8 +130513,8 @@ "configPlugin": false }, "npm": { - "downloads": 376346, - "weekDownloads": 70870, + "downloads": 369345, + "weekDownloads": 72042, "size": 13773, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.876Z" @@ -130362,7 +130525,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.166, "topicSearchString": "" }, { @@ -130395,7 +130558,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 0 }, "name": "@rn-primitives/types", @@ -130417,8 +130580,8 @@ "configPlugin": false }, "npm": { - "downloads": 366142, - "weekDownloads": 69206, + "downloads": 359217, + "weekDownloads": 70183, "size": 8209, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.715Z" @@ -130429,7 +130592,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.166, "topicSearchString": "" }, { @@ -130461,7 +130624,7 @@ "forks": 43, "issues": 18, "subscribers": 9, - "stars": 770, + "stars": 773, "dependencies": 0 }, "name": "@rn-primitives/utils", @@ -130483,8 +130646,8 @@ "configPlugin": false }, "npm": { - "downloads": 165068, - "weekDownloads": 29787, + "downloads": 162515, + "weekDownloads": 31571, "size": 7110, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.912Z" @@ -130495,7 +130658,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.165, "topicSearchString": "" }, { @@ -130559,8 +130722,8 @@ }, "npmPkg": "expo-passkey", "npm": { - "downloads": 982, - "weekDownloads": 131, + "downloads": 970, + "weekDownloads": 125, "size": 720146, "latestRelease": "0.3.0", "latestReleaseDate": "2025-10-17T18:31:23.403Z" @@ -130570,7 +130733,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.637, + "popularity": -0.64, "topicSearchString": "react-native expo expo-passkey expopasskeymodule passkey biometric authentication better-auth face-id touch-id fingerprint" }, { @@ -130631,8 +130794,8 @@ "unmaintained": true, "npmPkg": "react-native-turbo-mock-location-detector", "npm": { - "downloads": 9018, - "weekDownloads": 1462, + "downloads": 8782, + "weekDownloads": 1611, "size": 84310, "latestRelease": "2.3.1", "latestReleaseDate": "2023-10-12T16:52:22.491Z" @@ -130641,7 +130804,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.612, + "popularity": -0.594, "topicSearchString": "react-native ios android fabric typescript newarchitecture" }, { @@ -130706,8 +130869,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 1142, - "weekDownloads": 43, + "downloads": 1179, + "weekDownloads": 40, "size": 29975, "latestRelease": "0.2.1", "latestReleaseDate": "2025-06-03T13:07:57.371Z" @@ -130716,7 +130879,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.218, + "popularity": -0.221, "topicSearchString": "react-native ios android status-bar status-bar-height status-bar-height-ios status-bar-height-android status-bar-height-ios-android bottom-inset safe-area safe-area-inset" }, { @@ -130780,8 +130943,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 496, - "weekDownloads": 107, + "downloads": 493, + "weekDownloads": 108, "size": 92479, "latestRelease": "0.3.12", "latestReleaseDate": "2025-06-19T13:36:19.454Z" @@ -130790,7 +130953,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.816, + "popularity": -0.814, "topicSearchString": "react-native ios android tvos analytics tracking matomo tracker" }, { @@ -130857,8 +131020,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 905, - "weekDownloads": 153, + "downloads": 910, + "weekDownloads": 256, "size": 52409, "latestRelease": "0.3.2", "latestReleaseDate": "2025-08-07T16:44:04.091Z" @@ -130867,7 +131030,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.856, + "popularity": -0.761, "topicSearchString": "react-native ios android foldable fold-detection dual-screen foldable-phone fold foldable-device device-posture screen-posture multi-window foldable-support foldable-devices" }, { @@ -130922,8 +131085,8 @@ }, "npmPkg": "react-native-nitro-fs", "npm": { - "downloads": 313, - "weekDownloads": 22, + "downloads": 314, + "weekDownloads": 20, "size": 240475, "latestRelease": "0.7.0", "latestReleaseDate": "2025-10-07T16:57:43.306Z" @@ -130933,7 +131096,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.69, + "popularity": -0.695, "topicSearchString": "react-native" }, { @@ -130994,8 +131157,8 @@ }, "npmPkg": "react-native-nitro-google-sso", "npm": { - "downloads": 70, - "weekDownloads": 11, + "downloads": 74, + "weekDownloads": 13, "size": 114477, "latestRelease": "1.1.7", "latestReleaseDate": "2025-08-22T02:33:17.304Z" @@ -131004,7 +131167,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.863, + "popularity": -0.847, "topicSearchString": "react-native nitro nitro-modules google-sso nitro-google-sso google-signin sso" }, { @@ -131055,8 +131218,8 @@ }, "npmPkg": "rn-css", "npm": { - "downloads": 1569, - "weekDownloads": 176, + "downloads": 1546, + "weekDownloads": 167, "size": 438271, "latestRelease": "2.0.1", "latestReleaseDate": "2025-10-12T22:10:42.932Z" @@ -131066,7 +131229,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.095, + "popularity": 0.092, "topicSearchString": "" }, { @@ -131095,7 +131258,7 @@ "forks": 55, "issues": 26, "subscribers": 7, - "stars": 274, + "stars": 275, "dependencies": 7 }, "name": "@cantoo/pdf-lib", @@ -131130,8 +131293,8 @@ "configPlugin": false }, "npm": { - "downloads": 329984, - "weekDownloads": 69713, + "downloads": 321455, + "weekDownloads": 75749, "size": 21202312, "latestRelease": "2.5.3", "latestReleaseDate": "2025-09-28T18:36:39.486Z" @@ -131142,7 +131305,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.2, "topicSearchString": "pdf-lib pdf document create modify creation modification edit editing typescript javascript library" }, { @@ -131204,7 +131367,7 @@ "configPlugin": false }, "npm": { - "downloads": 23, + "downloads": 28, "weekDownloads": 2, "size": 63872, "latestRelease": "2.1.3", @@ -131214,7 +131377,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.92, + "popularity": -0.933, "topicSearchString": "react native navigation web" }, { @@ -131230,6 +131393,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/pushy/pushy-expo-plugin", @@ -131270,8 +131434,8 @@ }, "npmPkg": "pushy-expo-plugin", "npm": { - "downloads": 537, - "weekDownloads": 56, + "downloads": 526, + "weekDownloads": 54, "size": 14132, "latestRelease": "1.0.5", "latestReleaseDate": "2025-08-05T07:44:29.177Z" @@ -131280,7 +131444,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.911, + "popularity": -0.912, "topicSearchString": "" }, { @@ -131361,8 +131525,8 @@ }, "npmPkg": "fast-is-equal", "npm": { - "downloads": 1679, - "weekDownloads": 292, + "downloads": 1627, + "weekDownloads": 256, "size": 37837, "latestRelease": "1.2.3", "latestReleaseDate": "2025-05-31T07:56:12.995Z" @@ -131371,7 +131535,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.102, + "popularity": -0.116, "topicSearchString": "deep-equal equality compare lodash isequal fast performance typescript javascript react react-native vue angular object-comparison array-comparison deep-comparison utility lightweight zero-dependencies circular-references map set immutable benchmark speed efficient alternative replacement" }, { @@ -131424,8 +131588,8 @@ "configPlugin": false }, "npm": { - "downloads": 57563, - "weekDownloads": 11125, + "downloads": 56301, + "weekDownloads": 12230, "size": 94759, "latestRelease": "1.6.0", "latestReleaseDate": "2025-05-13T14:31:23.956Z" @@ -131434,7 +131598,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.164, + "popularity": 0.185, "topicSearchString": "" }, { @@ -131459,13 +131623,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-25T15:23:42Z", + "updatedAt": "2025-10-20T02:12:45Z", "createdAt": "2020-08-11T23:15:36Z", - "pushedAt": "2025-09-25T15:23:42Z", - "forks": 689, + "pushedAt": "2025-10-20T02:12:45Z", + "forks": 690, "issues": 1, "subscribers": 68, - "stars": 20614, + "stars": 20622, "dependencies": 0 }, "name": "jotai", @@ -131497,8 +131661,8 @@ }, "npmPkg": "jotai", "npm": { - "downloads": 8998479, - "weekDownloads": 1718068, + "downloads": 8729004, + "weekDownloads": 1775659, "size": 495678, "latestRelease": "2.15.0", "latestReleaseDate": "2025-09-25T15:30:23.496Z" @@ -131511,7 +131675,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.173, "topicSearchString": "react state manager management recoil store atomic hacktoberfest" }, { @@ -131569,8 +131733,8 @@ }, "npmPkg": "geolib", "npm": { - "downloads": 1363894, - "weekDownloads": 265040, + "downloads": 1309776, + "weekDownloads": 275110, "size": 104758, "latestRelease": "3.3.4", "latestReleaseDate": "2023-06-01T08:02:38.009Z" @@ -131583,7 +131747,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, + "popularity": 0.179, "topicSearchString": "geolib wgs84 distance geography geojson sexagesimal latlng hacktoberfest" }, { @@ -131643,8 +131807,8 @@ }, "npmPkg": "use-debounce", "npm": { - "downloads": 10444891, - "weekDownloads": 1941105, + "downloads": 10042094, + "weekDownloads": 2023061, "size": 110056, "latestRelease": "10.0.6", "latestReleaseDate": "2025-09-01T22:38:10.929Z" @@ -131656,7 +131820,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.171, "topicSearchString": "debounce react-hook react react-hooks usedebounce react-use" }, { @@ -131717,8 +131881,8 @@ }, "npmPkg": "react-native-google-places-sdk", "npm": { - "downloads": 12598, - "weekDownloads": 2643, + "downloads": 11988, + "weekDownloads": 2590, "size": 106004, "latestRelease": "0.3.1", "latestReleaseDate": "2025-01-30T16:07:51.849Z" @@ -131728,7 +131892,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.178, + "popularity": 0.184, "topicSearchString": "react-native ios android google-places places-sdk typescript autocomplete google-places-sdk" }, { @@ -131739,6 +131903,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/hyochan/expo-iap", @@ -131750,13 +131915,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-17T04:50:58Z", + "updatedAt": "2025-10-20T11:57:58Z", "createdAt": "2024-07-03T16:14:40Z", - "pushedAt": "2025-10-17T04:50:58Z", + "pushedAt": "2025-10-20T11:57:58Z", "forks": 27, "issues": 0, "subscribers": 1, - "stars": 279, + "stars": 281, "dependencies": 0 }, "name": "expo-iap", @@ -131790,11 +131955,11 @@ }, "npmPkg": "expo-iap", "npm": { - "downloads": 52300, - "weekDownloads": 9796, - "size": 1865806, - "latestRelease": "3.1.18", - "latestReleaseDate": "2025-10-17T04:51:25.324Z" + "downloads": 51303, + "weekDownloads": 9639, + "size": 1875980, + "latestRelease": "3.1.19", + "latestReleaseDate": "2025-10-19T23:17:19.936Z" }, "score": 57, "matchingScoreModifiers": [ @@ -131802,7 +131967,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.16, "topicSearchString": "react-native expo expo-iap expoiap inapp inapp-billing inapppurchase reactnative openiap" }, { @@ -131831,7 +131996,7 @@ "forks": 471, "issues": 17, "subscribers": 67, - "stars": 11656, + "stars": 11655, "dependencies": 0 }, "name": "mitt", @@ -131866,8 +132031,8 @@ "unmaintained": true, "npmPkg": "mitt", "npm": { - "downloads": 53397076, - "weekDownloads": 10211299, + "downloads": 52142131, + "weekDownloads": 10581057, "size": 26444, "latestRelease": "3.0.1", "latestReleaseDate": "2023-07-04T17:31:47.638Z" @@ -131880,7 +132045,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.587, + "popularity": -0.578, "topicSearchString": "events eventemitter emitter pubsub mitt event-handlers tiny event event-bus event-listener" }, { @@ -131910,7 +132075,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 24, + "stars": 25, "dependencies": 15 }, "name": "@eggl-js/expo-github-cache", @@ -131939,8 +132104,8 @@ "configPlugin": false }, "npm": { - "downloads": 481, - "weekDownloads": 72, + "downloads": 468, + "weekDownloads": 66, "size": 43527, "latestRelease": "0.2.1", "latestReleaseDate": "2025-10-07T21:35:28.592Z" @@ -131950,7 +132115,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.873, + "popularity": -0.63, "topicSearchString": "expo cache github build eas react-native" }, { @@ -131977,7 +132142,7 @@ "forks": 195, "issues": 52, "subscribers": 11, - "stars": 2125, + "stars": 2126, "dependencies": 1 }, "name": "@hookform/resolvers", @@ -132029,8 +132194,8 @@ "configPlugin": false }, "npm": { - "downloads": 46342167, - "weekDownloads": 9563669, + "downloads": 44929517, + "weekDownloads": 9158647, "size": 989826, "latestRelease": "5.2.2", "latestReleaseDate": "2025-09-14T08:30:00.918Z" @@ -132042,7 +132207,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.173, "topicSearchString": "scheme validation scheme-validation hookform react-hook-form yup joi superstruct typescript zod vest class-validator io-ts effect-ts nope computed-types typanion ajv typebox arktype typeschema vine fluentvalidation-ts standard-schema form form-validation hooks schema-validation resolvers" }, { @@ -132068,7 +132233,7 @@ "forks": 131, "issues": 1, "subscribers": 12, - "stars": 6550, + "stars": 6554, "dependencies": 1 }, "name": "class-variance-authority", @@ -132102,8 +132267,8 @@ }, "npmPkg": "class-variance-authority", "npm": { - "downloads": 35141735, - "weekDownloads": 6533730, + "downloads": 34619810, + "weekDownloads": 6712106, "size": 22073, "latestRelease": "0.7.1", "latestReleaseDate": "2024-11-26T08:20:34.604Z" @@ -132115,7 +132280,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, + "popularity": 0.165, "topicSearchString": "class-variance-authority class-variance-authority classes classname classnames css cva stitches vanilla-extract variants" }, { @@ -132177,8 +132342,8 @@ }, "npmPkg": "phosphor-react-native", "npm": { - "downloads": 186951, - "weekDownloads": 20960, + "downloads": 183286, + "weekDownloads": 21930, "size": 23534500, "latestRelease": "3.0.1", "latestReleaseDate": "2025-09-27T23:22:16.176Z" @@ -132189,7 +132354,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.095, + "popularity": 0.102, "topicSearchString": "react-native ios android react icons phosphoricons svg-icons svg" }, { @@ -132252,8 +132417,8 @@ }, "npmPkg": "react-native-ranking-leaderboard", "npm": { - "downloads": 60, - "weekDownloads": 0, + "downloads": 62, + "weekDownloads": 1, "size": 2626397, "latestRelease": "0.7.1", "latestReleaseDate": "2025-06-13T15:10:20.676Z" @@ -132262,7 +132427,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -0.986, "topicSearchString": "react-native leaderboard scoreboard ranking rank profile customizable ios android component library package" }, { @@ -132321,8 +132486,8 @@ }, "npmPkg": "react-native-reanimated-dnd", "npm": { - "downloads": 131609, - "weekDownloads": 27019, + "downloads": 126656, + "weekDownloads": 26378, "size": 99622, "latestRelease": "1.1.0", "latestReleaseDate": "2025-06-15T12:03:03.582Z" @@ -132333,7 +132498,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.175, + "popularity": 0.177, "topicSearchString": "react-native drag-and-drop reanimated sortable dnd gesture-handler" }, { @@ -132392,8 +132557,8 @@ "unmaintained": true, "npmPkg": "react-native-pressable-opacity", "npm": { - "downloads": 17121, - "weekDownloads": 2556, + "downloads": 16571, + "weekDownloads": 2887, "size": 16799, "latestRelease": "1.0.10", "latestReleaseDate": "2022-04-20T16:08:30.012Z" @@ -132403,7 +132568,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.623, + "popularity": -0.602, "topicSearchString": "react native pressable opacity component module pressability button" }, { @@ -132476,8 +132641,8 @@ "unmaintained": true, "npmPkg": "react-native-highlight-overlay", "npm": { - "downloads": 637, - "weekDownloads": 61, + "downloads": 629, + "weekDownloads": 67, "size": 152110, "latestRelease": "1.4.0", "latestReleaseDate": "2022-11-06T16:41:02.933Z" @@ -132487,7 +132652,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.418, + "popularity": -1.409, "topicSearchString": "react-native ios android web overlay highlight focus typed typescript tooltip tutorial hint walkthrough react reanimated reanimated2 tint typescript-library" }, { @@ -132512,7 +132677,7 @@ "updatedAt": "2025-09-26T16:39:18Z", "createdAt": "2023-07-28T09:08:03Z", "pushedAt": "2025-09-26T16:39:18Z", - "forks": 31, + "forks": 32, "issues": 5, "subscribers": 1, "stars": 120, @@ -132548,8 +132713,8 @@ }, "npmPkg": "react-native-video-trim", "npm": { - "downloads": 7743, - "weekDownloads": 1734, + "downloads": 7481, + "weekDownloads": 1762, "size": 310064, "latestRelease": "6.0.7", "latestReleaseDate": "2025-09-26T16:38:56.595Z" @@ -132558,7 +132723,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.19, + "popularity": 0.2, "topicSearchString": "react-native ios android video video-processing video-editor video-trim" }, { @@ -132622,8 +132787,8 @@ }, "npmPkg": "pressto", "npm": { - "downloads": 3913, - "weekDownloads": 471, + "downloads": 3816, + "weekDownloads": 476, "size": 120098, "latestRelease": "0.6.0", "latestReleaseDate": "2025-10-18T10:35:06.858Z" @@ -132633,7 +132798,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.102, + "popularity": 0.106, "topicSearchString": "react-native ios android pressable touchable gesture animation reanimated gesture-handler pressables" }, { @@ -132656,10 +132821,10 @@ "updatedAt": "2025-10-02T09:30:21Z", "createdAt": "2021-06-24T09:03:05Z", "pushedAt": "2025-10-02T09:30:21Z", - "forks": 1043, + "forks": 1045, "issues": 1486, - "subscribers": 65, - "stars": 30816, + "subscribers": 66, + "stars": 30844, "dependencies": 0 }, "name": "drizzle-orm", @@ -132696,8 +132861,8 @@ }, "npmPkg": "drizzle-orm", "npm": { - "downloads": 9392645, - "weekDownloads": 1682264, + "downloads": 9260617, + "weekDownloads": 1724167, "size": 10380227, "latestRelease": "0.44.6", "latestReleaseDate": "2025-10-02T09:49:33.326Z" @@ -132711,7 +132876,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.158, "topicSearchString": "drizzle orm pg mysql singlestore postgresql postgres sqlite database sql typescript ts drizzle-orm" }, { @@ -132771,8 +132936,8 @@ "unmaintained": true, "npmPkg": "react-native-exit-app", "npm": { - "downloads": 181353, - "weekDownloads": 34214, + "downloads": 175292, + "weekDownloads": 34213, "size": 40270, "latestRelease": "2.0.0", "latestReleaseDate": "2023-06-30T06:50:14.405Z" @@ -132782,7 +132947,7 @@ "Known", "Not updated recently" ], - "popularity": -0.59, + "popularity": -0.584, "topicSearchString": "react native exit close shutdown kill android ios react-native" }, { @@ -132848,8 +133013,8 @@ }, "npmPkg": "react-native-device-country", "npm": { - "downloads": 12079, - "weekDownloads": 2725, + "downloads": 11539, + "weekDownloads": 2681, "size": 34817, "latestRelease": "1.1.1", "latestReleaseDate": "2025-06-04T07:58:35.224Z" @@ -132858,7 +133023,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.192, + "popularity": 0.197, "topicSearchString": "react-native ios android country device location device-location phone-location gps-location gps phone-code phone-number simcard" }, { @@ -132881,10 +133046,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-checkbox", @@ -132912,8 +133077,8 @@ }, "npmPkg": "expo-checkbox", "npm": { - "downloads": 318437, - "weekDownloads": 63597, + "downloads": 311301, + "weekDownloads": 63725, "size": 50415, "latestRelease": "5.0.7", "latestReleaseDate": "2025-09-11T20:26:09.695Z" @@ -132926,7 +133091,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.17, + "popularity": 0.174, "topicSearchString": "react-native expo expo-checkbox" }, { @@ -132995,7 +133160,7 @@ }, "npmPkg": "react-native-pushdown-alert", "npm": { - "downloads": 27, + "downloads": 29, "weekDownloads": 1, "size": 126341, "latestRelease": "0.5.2", @@ -133017,6 +133182,7 @@ "android": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/benjamineruvieru/react-native-credentials-manager", @@ -133032,9 +133198,9 @@ "createdAt": "2025-02-04T14:57:04Z", "pushedAt": "2025-10-16T11:09:34Z", "forks": 3, - "issues": 1, + "issues": 2, "subscribers": 2, - "stars": 74, + "stars": 73, "dependencies": 0 }, "name": "react-native-credentials-manager", @@ -133077,8 +133243,8 @@ }, "npmPkg": "react-native-credentials-manager", "npm": { - "downloads": 1271, - "weekDownloads": 324, + "downloads": 1229, + "weekDownloads": 295, "size": 158464, "latestRelease": "0.8.0", "latestReleaseDate": "2025-10-16T10:41:15.348Z" @@ -133087,7 +133253,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.217, + "popularity": 0.204, "topicSearchString": "react-native ios android passkeys webauthn authentication credential-manager google-signin passwordless biometric security identity fido2 signin google-sign-in password-manager signup" }, { @@ -133147,8 +133313,8 @@ }, "npmPkg": "expo-resolve-url", "npm": { - "downloads": 4, - "weekDownloads": 1, + "downloads": 5, + "weekDownloads": 2, "size": 14753, "latestRelease": "1.0.1", "latestReleaseDate": "2025-04-17T15:52:03.756Z" @@ -133158,7 +133324,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -0.6, "topicSearchString": "react-native expo expo-resolve-url resolveurl unshorten url url-shortener" }, { @@ -133219,8 +133385,8 @@ "configPlugin": false }, "npm": { - "downloads": 5230, - "weekDownloads": 1073, + "downloads": 5152, + "weekDownloads": 1199, "size": 23031, "latestRelease": "1.0.6", "latestReleaseDate": "2024-12-16T11:19:16.263Z" @@ -133230,7 +133396,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.076, + "popularity": -0.052, "topicSearchString": "react react-native word cloud wordcloud word-cloud buuble bubble-chart visualization tag tagcloud tag-cloud" }, { @@ -133292,8 +133458,8 @@ }, "npmPkg": "react-native-nitro-network-info", "npm": { - "downloads": 99, - "weekDownloads": 24, + "downloads": 100, + "weekDownloads": 23, "size": 93607, "latestRelease": "1.0.5", "latestReleaseDate": "2025-08-20T16:09:01.085Z" @@ -133302,7 +133468,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.791, + "popularity": -0.8, "topicSearchString": "react-native nitro-network-info nitro network connection wifi cellular ethernet" }, { @@ -133365,8 +133531,8 @@ }, "npmPkg": "expo-pencilkit-ui", "npm": { - "downloads": 169, - "weekDownloads": 12, + "downloads": 168, + "weekDownloads": 16, "size": 53913, "latestRelease": "1.0.4", "latestReleaseDate": "2025-06-07T20:44:54.408Z" @@ -133375,7 +133541,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.688, + "popularity": -0.668, "topicSearchString": "expo expo-module react-native pencilkit apple-pencil drawing canvas ios expo-pencilkit-ui expo-pencilkit apple-pencilkit" }, { @@ -133386,6 +133552,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/software-mansion/react-native-whip-whep", @@ -133434,8 +133601,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 782, - "weekDownloads": 60, + "downloads": 781, + "weekDownloads": 66, "size": 133907, "latestRelease": "0.5.0", "latestReleaseDate": "2025-10-16T10:47:36.652Z" @@ -133445,7 +133612,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.685, + "popularity": -0.678, "topicSearchString": "react-native whip whep webrtc streaming video audio" }, { @@ -133455,6 +133622,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/software-mansion/react-native-audio-api", @@ -133466,13 +133634,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-15T11:00:44Z", + "updatedAt": "2025-10-20T12:06:09Z", "createdAt": "2024-07-03T09:13:20Z", - "pushedAt": "2025-10-15T11:00:44Z", - "forks": 31, + "pushedAt": "2025-10-20T12:06:09Z", + "forks": 32, "issues": 13, "subscribers": 10, - "stars": 554, + "stars": 555, "dependencies": 0 }, "name": "react-native-audio-api", @@ -133505,8 +133673,8 @@ }, "npmPkg": "react-native-audio-api", "npm": { - "downloads": 19767, - "weekDownloads": 3468, + "downloads": 19808, + "weekDownloads": 3743, "size": 145758416, "latestRelease": "0.9.1", "latestReleaseDate": "2025-10-13T12:11:15.861Z" @@ -133517,7 +133685,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.161, "topicSearchString": "react-native audio audio-api web-audio-api react music player" }, { @@ -133573,8 +133741,8 @@ "unmaintained": true, "npmPkg": "react-native-public-ip", "npm": { - "downloads": 35764, - "weekDownloads": 6436, + "downloads": 34513, + "weekDownloads": 6461, "size": 2558, "latestRelease": "1.0.2", "latestReleaseDate": "2019-10-18T15:43:52.105Z" @@ -133584,7 +133752,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, + "popularity": -0.591, "topicSearchString": "ip ipv4 ipv6 address public external own" }, { @@ -133651,8 +133819,8 @@ }, "npmPkg": "react-native-viewport-detector", "npm": { - "downloads": 1875, - "weekDownloads": 388, + "downloads": 1823, + "weekDownloads": 431, "size": 14942, "latestRelease": "1.0.7", "latestReleaseDate": "2025-04-01T07:24:00.815Z" @@ -133662,7 +133830,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.176, + "popularity": 0.201, "topicSearchString": "react-native viewport visibility detector in-view screen components ui visibility-detection mobile user-experience optimization library react utility performance" }, { @@ -133729,7 +133897,7 @@ }, "unmaintained": true, "npm": { - "downloads": 155, + "downloads": 158, "weekDownloads": 9, "size": 2196927, "latestRelease": "1.1.5", @@ -133740,7 +133908,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.7, + "popularity": -1.701, "topicSearchString": "react-native component splash-screen lottie-splash-screen lottie animation splashscreen splash launch-screen launchscreen android ios" }, { @@ -133788,8 +133956,8 @@ }, "npmPkg": "react-fast-memo", "npm": { - "downloads": 144, - "weekDownloads": 1, + "downloads": 143, + "weekDownloads": 0, "size": 9571, "latestRelease": "2.0.1", "latestReleaseDate": "2024-03-10T19:24:12.099Z" @@ -133799,7 +133967,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.744, + "popularity": -1, "topicSearchString": "" }, { @@ -133859,8 +134027,8 @@ }, "npmPkg": "mutative", "npm": { - "downloads": 546531, - "weekDownloads": 97421, + "downloads": 536038, + "weekDownloads": 100695, "size": 705484, "latestRelease": "1.3.0", "latestReleaseDate": "2025-09-21T16:02:59.572Z" @@ -133872,7 +134040,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.16, "topicSearchString": "immutable mutable copy-on-write mutative immutability mutation immer reducer redux state-management react" }, { @@ -133895,10 +134063,10 @@ "updatedAt": "2025-10-06T15:53:12Z", "createdAt": "2017-12-29T12:25:47Z", "pushedAt": "2025-10-06T15:53:12Z", - "forks": 860, + "forks": 861, "issues": 33, "subscribers": 149, - "stars": 28662, + "stars": 28663, "dependencies": 0 }, "name": "immer", @@ -133929,8 +134097,8 @@ }, "npmPkg": "immer", "npm": { - "downloads": 71973668, - "weekDownloads": 13465226, + "downloads": 70291325, + "weekDownloads": 13950194, "size": 632100, "latestRelease": "10.1.3", "latestReleaseDate": "2025-09-01T18:14:01.763Z" @@ -133943,7 +134111,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.169, "topicSearchString": "immutable mutable copy-on-write immutables reducer redux state-tree" }, { @@ -134010,8 +134178,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 9156, - "weekDownloads": 1980, + "downloads": 9196, + "weekDownloads": 2380, "size": 13570, "latestRelease": "0.2.0", "latestReleaseDate": "2025-09-05T11:14:01.465Z" @@ -134020,7 +134188,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.066, + "popularity": -0.03, "topicSearchString": "react-native ios android exit exit-app close-app quit-app app-exit android-exit ios-exit system-exit" }, { @@ -134084,8 +134252,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 47, - "weekDownloads": 11, + "downloads": 49, + "weekDownloads": 13, "size": 27210, "latestRelease": "0.1.2", "latestReleaseDate": "2025-06-03T13:17:40.181Z" @@ -134094,7 +134262,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.8, + "popularity": -0.764, "topicSearchString": "react-native ios tvos apple-tv keyboard native-keyboard tvos-keyboard voice-typing voice-search uisearchcontroller tv" }, { @@ -134167,8 +134335,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 16, - "weekDownloads": 3, + "downloads": 17, + "weekDownloads": 2, "size": 51365, "latestRelease": "0.1.0", "latestReleaseDate": "2025-06-09T05:15:33.852Z" @@ -134177,7 +134345,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.8, + "popularity": -0.9, "topicSearchString": "react-native ios android ssl ssl-pinning tvos certificate-pinning https network-security fetch axios ssl-pinning-tvos secure-networking networking tls cert-pinning native-module" }, { @@ -134241,7 +134409,7 @@ "npmPkg": "rn-watch-connect", "npm": { "downloads": 16, - "weekDownloads": 1, + "weekDownloads": 3, "size": 65492, "latestRelease": "1.0.0", "latestReleaseDate": "2025-06-13T20:20:40.809Z" @@ -134250,7 +134418,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.933, + "popularity": -0.8, "topicSearchString": "react-native expo rn-watch-connect rnwatchconnect watchconnectivity apple-watch apple-watch-connectivity apple-watch-communication apple-watch-data-transfer apple-watch-message-transfer apple-watch-file-transfer" }, { @@ -134308,7 +134476,7 @@ "npmPkg": "loro-react-native", "npm": { "downloads": 181, - "weekDownloads": 72, + "weekDownloads": 75, "size": 59874231, "latestRelease": "1.8.1", "latestReleaseDate": "2025-09-24T00:56:00.660Z" @@ -134317,7 +134485,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.657, + "popularity": -0.643, "topicSearchString": "react-native ios android" }, { @@ -134332,6 +134500,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/JairajJangle/react-native-navigation-mode", @@ -134386,8 +134555,8 @@ }, "npmPkg": "react-native-navigation-mode", "npm": { - "downloads": 33530, - "weekDownloads": 4754, + "downloads": 32511, + "weekDownloads": 5443, "size": 44049, "latestRelease": "1.2.3", "latestReleaseDate": "2025-09-24T02:44:58.258Z" @@ -134396,7 +134565,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.121, + "popularity": 0.142, "topicSearchString": "react-native android ios navigation gesture navigation-buttons edge-to-edge navigation-bar turbo-module native gestures" }, { @@ -134427,9 +134596,9 @@ "createdAt": "2025-06-13T03:34:57Z", "pushedAt": "2025-10-15T19:34:08Z", "forks": 0, - "issues": 7, - "subscribers": 2, - "stars": 135, + "issues": 8, + "subscribers": 3, + "stars": 136, "dependencies": 0 }, "name": "@sbaiahmed1/react-native-blur", @@ -134467,8 +134636,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 5661, - "weekDownloads": 728, + "downloads": 5670, + "weekDownloads": 713, "size": 133658, "latestRelease": "3.2.0", "latestReleaseDate": "2025-10-14T22:33:39.151Z" @@ -134477,7 +134646,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.109, + "popularity": 0.107, "topicSearchString": "react-native ios android blur react-blur modern-blur android-blur blur-effect blurview visualeffectview liquid-glass liquidglass liquidglassreact" }, { @@ -134537,8 +134706,8 @@ }, "npmPkg": "react-native-rn-in-app-update", "npm": { - "downloads": 73, - "weekDownloads": 16, + "downloads": 71, + "weekDownloads": 17, "size": 21067, "latestRelease": "1.1.0", "latestReleaseDate": "2025-08-04T13:55:40.591Z" @@ -134547,7 +134716,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.812, + "popularity": -0.787, "topicSearchString": "react-native ios android in-app-update android-update play-store google-play update play-core app-update" }, { @@ -134574,7 +134743,7 @@ "forks": 28, "issues": 26, "subscribers": 9, - "stars": 586, + "stars": 590, "dependencies": 2 }, "name": "@nandorojo/galeria", @@ -134601,8 +134770,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 21626, - "weekDownloads": 3722, + "downloads": 21354, + "weekDownloads": 3849, "size": 83169, "latestRelease": "1.2.0", "latestReleaseDate": "2025-03-21T15:33:41.079Z" @@ -134613,7 +134782,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.153, "topicSearchString": "react-native expo galeria" }, { @@ -134673,8 +134842,8 @@ }, "npmPkg": "stan-js", "npm": { - "downloads": 1796, - "weekDownloads": 299, + "downloads": 1768, + "weekDownloads": 319, "size": 80092, "latestRelease": "1.8.2", "latestReleaseDate": "2025-09-30T13:05:06.166Z" @@ -134684,7 +134853,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.153, "topicSearchString": "state react store context rerenders typescript intellisense" }, { @@ -134748,8 +134917,8 @@ "configPlugin": false }, "npm": { - "downloads": 129943, - "weekDownloads": 23421, + "downloads": 126328, + "weekDownloads": 25484, "size": 499156, "latestRelease": "2.4.2", "latestReleaseDate": "2025-04-28T20:17:43.570Z" @@ -134759,7 +134928,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.171, "topicSearchString": "react-native react-component ios android pinch-to-zoom pinch mobile native component view zoom zoomable double tap" }, { @@ -134785,7 +134954,7 @@ "createdAt": "2025-06-02T04:09:25Z", "pushedAt": "2025-09-13T13:41:20Z", "forks": 2, - "issues": 0, + "issues": 1, "subscribers": 1, "stars": 51, "dependencies": 0 @@ -134823,8 +134992,8 @@ }, "npmPkg": "react-native-nitro-toast", "npm": { - "downloads": 269, - "weekDownloads": 14, + "downloads": 275, + "weekDownloads": 16, "size": 173119, "latestRelease": "1.2.5", "latestReleaseDate": "2025-09-13T13:41:52.355Z" @@ -134833,7 +135002,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.706, + "popularity": -0.7, "topicSearchString": "react-native nitro toast toast-notification jetpack-compose kotlin native-ui nitro-modules swift swiftui" }, { @@ -134886,7 +135055,7 @@ }, "npmPkg": "react-native-document-picker-macos", "npm": { - "downloads": 133, + "downloads": 134, "weekDownloads": 4, "size": 29573, "latestRelease": "1.0.0", @@ -134963,8 +135132,8 @@ "configPlugin": false }, "npm": { - "downloads": 3078, - "weekDownloads": 459, + "downloads": 2968, + "weekDownloads": 386, "size": 250928, "latestRelease": "1.1.6", "latestReleaseDate": "2025-07-18T05:37:34.906Z" @@ -134973,7 +135142,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.127, + "popularity": 0.111, "topicSearchString": "deep equal equals equality comparison object compare fast high-performance engine-aware deep-equal typescript react circular crossrealm symbols custom-equality structured-equality cross-realm" }, { @@ -135031,7 +135200,7 @@ }, "npm": { "downloads": 235, - "weekDownloads": 11, + "weekDownloads": 21, "size": 45624, "latestRelease": "1.1.1", "latestReleaseDate": "2025-06-20T10:24:27.962Z" @@ -135040,7 +135209,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.96, + "popularity": -0.924, "topicSearchString": "react-native toast notification alert expo react toastify" }, { @@ -135106,8 +135275,8 @@ }, "npmPkg": "react-native-youtube-bridge", "npm": { - "downloads": 1705, - "weekDownloads": 250, + "downloads": 1666, + "weekDownloads": 223, "size": 166350, "latestRelease": "2.1.4", "latestReleaseDate": "2025-09-16T16:59:10.233Z" @@ -135116,7 +135285,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.125, + "popularity": -0.136, "topicSearchString": "react-native ios android youtube youtube youtube-bridge youtube-iframe-api youtube-iframe" }, { @@ -135145,7 +135314,7 @@ "updatedAt": "2025-10-07T20:29:24Z", "createdAt": "2025-06-17T00:44:22Z", "pushedAt": "2025-10-07T20:29:24Z", - "forks": 4, + "forks": 5, "issues": 3, "subscribers": 0, "stars": 61, @@ -135196,8 +135365,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 6279, - "weekDownloads": 622, + "downloads": 6267, + "weekDownloads": 586, "size": 435640, "latestRelease": "0.7.2", "latestReleaseDate": "2025-10-07T20:29:24.089Z" @@ -135206,7 +135375,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.084, + "popularity": 0.08, "topicSearchString": "react-native ios android biometrics biometric-authentication face-id touch-id fingerprint authentication security mobile-security biometric-login face-recognition touchid faceid mobile-authentication secure-login expo mobile-biometrics native-modules turbo-modules typescript mobile-login" }, { @@ -135264,8 +135433,8 @@ }, "npmPkg": "input-otp-native", "npm": { - "downloads": 43930, - "weekDownloads": 7837, + "downloads": 42255, + "weekDownloads": 7732, "size": 163111, "latestRelease": "0.5.0", "latestReleaseDate": "2025-06-22T00:57:07.494Z" @@ -135275,7 +135444,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.156, "topicSearchString": "react-native otp otp-input expo-otp-input expo otp-verification react-ntive" }, { @@ -135333,8 +135502,8 @@ "configPlugin": false }, "npm": { - "downloads": 542, - "weekDownloads": 68, + "downloads": 551, + "weekDownloads": 69, "size": 344180, "latestRelease": "0.5.4", "latestReleaseDate": "2025-10-12T15:27:34.648Z" @@ -135417,8 +135586,8 @@ }, "npmPkg": "react-native-vimeo-bridge", "npm": { - "downloads": 1015, - "weekDownloads": 172, + "downloads": 980, + "weekDownloads": 216, "size": 174340, "latestRelease": "1.1.0", "latestReleaseDate": "2025-07-15T13:21:06.558Z" @@ -135427,7 +135596,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.105, + "popularity": -0.812, "topicSearchString": "react-native expo ios android web vimeo player vimeo-player vimeo-video vimeo-bridge expo-vimeo-player expo-vimeo-video bridges vimeo-iframe expo-vimeo" }, { @@ -135491,8 +135660,8 @@ "configPlugin": false }, "npm": { - "downloads": 257, - "weekDownloads": 67, + "downloads": 234, + "weekDownloads": 52, "size": 45225, "latestRelease": "0.5.0", "latestReleaseDate": "2025-01-24T15:55:35.382Z" @@ -135502,7 +135671,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.777, + "popularity": -0.811, "topicSearchString": "react-native ui aria aria-description aria-describedby a11y react jsx hoc higher-order-component" }, { @@ -135570,8 +135739,8 @@ }, "npmPkg": "eventemitter3", "npm": { - "downloads": 229316190, - "weekDownloads": 43964293, + "downloads": 223732941, + "weekDownloads": 45172700, "size": 73390, "latestRelease": "5.0.1", "latestReleaseDate": "2023-04-30T19:49:14.500Z" @@ -135584,7 +135753,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.172, "topicSearchString": "eventemitter eventemitter2 eventemitter3 events addeventlistener addlistener emit emits emitter event once pub/sub publish reactor subscribe nodejs browser" }, { @@ -135644,15 +135813,15 @@ }, "npmPkg": "react-native-place-autocomplete-picker", "npm": { - "downloads": 406, - "weekDownloads": 45, + "downloads": 415, + "weekDownloads": 50, "size": 28395, "latestRelease": "1.0.2", "latestReleaseDate": "2025-08-07T02:34:20.246Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.905, + "popularity": -0.897, "topicSearchString": "react-native ios android" }, { @@ -135663,6 +135832,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/superwall/expo-superwall", @@ -135709,8 +135879,8 @@ }, "npmPkg": "expo-superwall", "npm": { - "downloads": 12486, - "weekDownloads": 2221, + "downloads": 12346, + "weekDownloads": 2133, "size": 825787, "latestRelease": "0.3.2", "latestReleaseDate": "2025-10-16T17:48:11.348Z" @@ -135720,7 +135890,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.147, "topicSearchString": "react-native expo expo-superwall superwallexpo" }, { @@ -135812,7 +135982,7 @@ "pushedAt": "2025-10-16T20:30:46Z", "forks": 38, "issues": 10, - "subscribers": 7, + "subscribers": 6, "stars": 46, "dependencies": 0 }, @@ -135844,8 +136014,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 105955, - "weekDownloads": 22367, + "downloads": 101974, + "weekDownloads": 24747, "size": 879588, "latestRelease": "2.0.4", "latestReleaseDate": "2025-10-16T20:40:20.737Z" @@ -135855,7 +136025,7 @@ "Known", "Recently updated" ], - "popularity": 0.179, + "popularity": 0.206, "topicSearchString": "react-native ios android iterable sdk library" }, { @@ -135867,6 +136037,7 @@ "ios": true, "android": true, "newArchitecture": false, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/Iterable/iterable-expo-plugin", @@ -135912,8 +136083,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 16620, - "weekDownloads": 3272, + "downloads": 16193, + "weekDownloads": 3175, "size": 529222, "latestRelease": "1.0.1", "latestReleaseDate": "2025-07-17T00:33:00.719Z" @@ -135934,6 +136105,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/Soomgo-Mobile/react-native-code-push", @@ -135945,9 +136117,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-18T14:30:01Z", + "updatedAt": "2025-10-20T11:56:37Z", "createdAt": "2024-03-17T09:22:42Z", - "pushedAt": "2025-10-18T14:30:01Z", + "pushedAt": "2025-10-20T11:56:37Z", "forks": 20, "issues": 3, "subscribers": 2, @@ -135982,18 +136154,18 @@ "configPlugin": true }, "npm": { - "downloads": 7168, - "weekDownloads": 1572, - "size": 1346567, - "latestRelease": "12.0.2", - "latestReleaseDate": "2025-09-26T05:28:34.357Z" + "downloads": 6946, + "weekDownloads": 1698, + "size": 1250649, + "latestRelease": "12.1.0", + "latestReleaseDate": "2025-10-20T11:57:26.449Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.186, + "popularity": 0.208, "topicSearchString": "react-native expo code push code-push expo-code-push codepush self-hosted" }, { @@ -136054,8 +136226,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 7111, - "weekDownloads": 2989, + "downloads": 6290, + "weekDownloads": 2117, "size": 1494730, "latestRelease": "0.10.0", "latestReleaseDate": "2025-09-11T07:03:54.469Z" @@ -136064,7 +136236,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.107, + "popularity": 0.036, "topicSearchString": "moyasar react-native ios android apple-pay samsung-pay credit-card stc-pay" }, { @@ -136075,6 +136247,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/cornejobarraza/expo-libvlc-player", @@ -136090,7 +136263,7 @@ "createdAt": "2025-07-03T10:20:01Z", "pushedAt": "2025-10-18T20:24:48Z", "forks": 1, - "issues": 1, + "issues": 0, "subscribers": 4, "stars": 17, "dependencies": 0 @@ -136123,8 +136296,8 @@ }, "npmPkg": "expo-libvlc-player", "npm": { - "downloads": 1449, - "weekDownloads": 73, + "downloads": 1433, + "weekDownloads": 52, "size": 125007, "latestRelease": "2.2.2", "latestReleaseDate": "2025-10-18T20:27:22.226Z" @@ -136134,7 +136307,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.207, + "popularity": -0.219, "topicSearchString": "react-native expo libvlc player expo-libvlc-player expolibvlcplayer" }, { @@ -136166,7 +136339,7 @@ "createdAt": "2025-06-30T15:10:12Z", "pushedAt": "2025-10-17T04:18:52Z", "forks": 2, - "issues": 1, + "issues": 0, "subscribers": 1, "stars": 43, "dependencies": 0 @@ -136220,8 +136393,8 @@ }, "npmPkg": "react-native-gesture-image-viewer", "npm": { - "downloads": 2204, - "weekDownloads": 407, + "downloads": 2144, + "weekDownloads": 420, "size": 210721, "latestRelease": "1.9.1", "latestReleaseDate": "2025-10-17T04:45:03.931Z" @@ -136231,7 +136404,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.167, "topicSearchString": "react-native ios android web expo image-viewer image-gallery gesture pinch-to-zoom swipe zoom customizable modal carousel slider photo-viewer image-carousel touch-gestures lightbox gallery viewer zoomable double-tap reanimated gesture-handler reanimated-image-viewer image-zoom-viewer" }, { @@ -136298,8 +136471,8 @@ }, "npmPkg": "react-native-cashfree-pg-sdk", "npm": { - "downloads": 5185, - "weekDownloads": 992, + "downloads": 5171, + "weekDownloads": 1047, "size": 1046320, "latestRelease": "2.2.5", "latestReleaseDate": "2025-07-25T09:52:12.956Z" @@ -136308,7 +136481,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.087, + "popularity": -0.078, "topicSearchString": "react-native ios android cashfree cashfree-sdk payment-gateway cashfree-pg-sdk bnpl card cardless-emi emi net-banking payment-integration payments upi" }, { @@ -136364,7 +136537,7 @@ }, "npmPkg": "react-native-unilist", "npm": { - "downloads": 10, + "downloads": 12, "weekDownloads": 0, "size": 70326, "latestRelease": "0.2.0", @@ -136432,7 +136605,7 @@ "configPlugin": false }, "npm": { - "downloads": 19, + "downloads": 21, "weekDownloads": 0, "size": 56451, "latestRelease": "1.4.0", @@ -136497,8 +136670,8 @@ }, "npmPkg": "expo-android-keyboard-fix", "npm": { - "downloads": 7937, - "weekDownloads": 686, + "downloads": 7841, + "weekDownloads": 856, "size": 4298, "latestRelease": "2.1.0", "latestReleaseDate": "2025-08-11T05:29:01.464Z" @@ -136507,7 +136680,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.177, + "popularity": -0.157, "topicSearchString": "expo react-native android keyboard keyboardavoidingview sdk35 android15 expo-config-plugin" }, { @@ -136534,10 +136707,10 @@ "updatedAt": "2025-08-06T07:45:20Z", "createdAt": "2021-06-24T09:03:05Z", "pushedAt": "2025-08-06T07:45:20Z", - "forks": 1043, + "forks": 1045, "issues": 1486, - "subscribers": 65, - "stars": 30816, + "subscribers": 66, + "stars": 30844, "dependencies": 0 }, "name": "drizzle-zod", @@ -136576,8 +136749,8 @@ }, "npmPkg": "drizzle-zod", "npm": { - "downloads": 3031651, - "weekDownloads": 567248, + "downloads": 2997790, + "weekDownloads": 580176, "size": 92553, "latestRelease": "0.8.3", "latestReleaseDate": "2025-08-06T08:03:58.355Z" @@ -136590,7 +136763,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.165, "topicSearchString": "zod validate validation schema drizzle orm pg mysql postgresql postgres sqlite database sql typescript ts" }, { @@ -136652,8 +136825,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 36265, - "weekDownloads": 6667, + "downloads": 35564, + "weekDownloads": 6810, "size": 3171727, "latestRelease": "0.2.1", "latestReleaseDate": "2025-10-13T12:17:09.348Z" @@ -136663,7 +136836,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.163, "topicSearchString": "expo devtools drizzle drizzle-orm expo-sqlite react-native sqlite" }, { @@ -136687,9 +136860,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-19T03:13:25Z", + "updatedAt": "2025-10-20T15:32:32Z", "createdAt": "2022-10-05T14:46:35Z", - "pushedAt": "2025-10-19T03:13:25Z", + "pushedAt": "2025-10-20T15:32:32Z", "forks": 8, "issues": 2, "subscribers": 1, @@ -136739,18 +136912,18 @@ }, "npmPkg": "enum-plus", "npm": { - "downloads": 19349, - "weekDownloads": 3640, - "size": 1040390, - "latestRelease": "3.0.1", - "latestReleaseDate": "2025-10-06T08:09:32.672Z" + "downloads": 18822, + "weekDownloads": 3673, + "size": 1119777, + "latestRelease": "3.1.0", + "latestReleaseDate": "2025-10-20T15:32:26.774Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.166, "topicSearchString": "enum enumeration javascript typescript front-end back-end node.js browser mini-program react-native ui-binding ssr localization globalization plugin-system react vue angular internationalization reactjs vuejs" }, { @@ -136774,10 +136947,10 @@ "updatedAt": "2025-09-11T20:01:41Z", "createdAt": "2017-07-18T06:16:45Z", "pushedAt": "2025-09-11T20:01:41Z", - "forks": 219, + "forks": 220, "issues": 1, "subscribers": 27, - "stars": 7721, + "stars": 7722, "dependencies": 1 }, "name": "react-error-boundary", @@ -136800,8 +136973,8 @@ }, "npmPkg": "react-error-boundary", "npm": { - "downloads": 31161063, - "weekDownloads": 5844763, + "downloads": 30289115, + "weekDownloads": 6095073, "size": 21910, "latestRelease": "6.0.0", "latestReleaseDate": "2025-05-03T20:26:02.358Z" @@ -136813,7 +136986,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.171, "topicSearchString": "" }, { @@ -136873,7 +137046,7 @@ "configPlugin": false }, "npm": { - "downloads": 57, + "downloads": 69, "weekDownloads": 7, "size": 46268, "latestRelease": "1.0.21", @@ -136883,7 +137056,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.892, + "popularity": -0.912, "topicSearchString": "react-native responsive scaling expo typescript font-scale width-scale height-scale @shayrn/scaler scaler" }, { @@ -136947,8 +137120,8 @@ }, "npmPkg": "react-native-inappbrowser-nitro", "npm": { - "downloads": 371, - "weekDownloads": 92, + "downloads": 368, + "weekDownloads": 95, "size": 405544, "latestRelease": "2.0.0", "latestReleaseDate": "2025-10-13T20:14:10.033Z" @@ -136958,7 +137131,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.789, + "popularity": -0.779, "topicSearchString": "react-native inappbrowser-nitro android custom-tabs ios nitro-modules nitrogen" }, { @@ -137021,7 +137194,7 @@ "npmPkg": "react-native-scroll-track", "npm": { "downloads": 48, - "weekDownloads": 3, + "weekDownloads": 4, "size": 52958, "latestRelease": "1.2.0", "latestReleaseDate": "2025-08-20T15:54:26.449Z" @@ -137030,7 +137203,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.945, + "popularity": -0.927, "topicSearchString": "react-native scrollbar scroll-indicator gesture flatlist draggable-scrollbar scroll-track animated-scroll" }, { @@ -137087,8 +137260,8 @@ }, "npmPkg": "rn-selector", "npm": { - "downloads": 620, - "weekDownloads": 32, + "downloads": 705, + "weekDownloads": 30, "size": 52487, "latestRelease": "0.1.3", "latestReleaseDate": "2025-08-19T23:43:49.739Z" @@ -137097,7 +137270,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.956, + "popularity": -0.964, "topicSearchString": "react-native ios android" }, { @@ -137108,6 +137281,7 @@ "https://github.com/ihwf/expo-native-alipay/tree/master/example" ], "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/ihwf/expo-native-alipay", @@ -137156,8 +137330,8 @@ }, "npmPkg": "expo-native-alipay", "npm": { - "downloads": 101, - "weekDownloads": 21, + "downloads": 96, + "weekDownloads": 13, "size": 7412352, "latestRelease": "0.1.1", "latestReleaseDate": "2025-07-21T09:51:53.409Z" @@ -137166,7 +137340,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.817, + "popularity": -0.882, "topicSearchString": "react-native expo expo-native-alipay exponativealipay alipay alipay-sdk" }, { @@ -137222,8 +137396,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 539, - "weekDownloads": 45, + "downloads": 583, + "weekDownloads": 48, "size": 31333, "latestRelease": "0.1.5", "latestReleaseDate": "2025-10-17T21:02:48.829Z" @@ -137232,7 +137406,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.929, + "popularity": -0.93, "topicSearchString": "react-native ios android" }, { @@ -137242,6 +137416,7 @@ "https://github.com/linhvovan29546/react-native-full-screen-notification-incoming-call/tree/master/expo-example" ], "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/linhvovan29546/react-native-full-screen-notification-incoming-call", @@ -137296,8 +137471,8 @@ }, "npmPkg": "react-native-full-screen-notification-incoming-call", "npm": { - "downloads": 3394, - "weekDownloads": 959, + "downloads": 3305, + "weekDownloads": 883, "size": 208622, "latestRelease": "1.1.0", "latestReleaseDate": "2025-05-31T08:34:57.109Z" @@ -137306,7 +137481,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.24, + "popularity": 0.227, "topicSearchString": "react-native ios android notification fullscreen-intent time-sensitive-notification block-screen incoming-notifications foreground-service voip incomming" }, { @@ -137333,7 +137508,7 @@ "forks": 24, "issues": 5, "subscribers": 2, - "stars": 753, + "stars": 756, "dependencies": 0 }, "name": "react-native-screen-transitions", @@ -137363,8 +137538,8 @@ }, "npmPkg": "react-native-screen-transitions", "npm": { - "downloads": 5090, - "weekDownloads": 1086, + "downloads": 5001, + "weekDownloads": 1047, "size": 1174070, "latestRelease": "2.4.2", "latestReleaseDate": "2025-10-04T16:32:40.939Z" @@ -137375,7 +137550,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.181, + "popularity": 0.178, "topicSearchString": "react-native transitions animation react-navigation expo-router reanimated" }, { @@ -137431,8 +137606,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 16114, - "weekDownloads": 2086, + "downloads": 15828, + "weekDownloads": 2200, "size": 2205293, "latestRelease": "0.1.13", "latestReleaseDate": "2025-10-06T07:18:03.584Z" @@ -137443,7 +137618,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.11, + "popularity": 0.118, "topicSearchString": "react-native ios android" }, { @@ -137472,9 +137647,9 @@ "createdAt": "2025-02-01T13:40:42Z", "pushedAt": "2025-10-18T07:50:04Z", "forks": 4, - "issues": 103, + "issues": 106, "subscribers": 7, - "stars": 157, + "stars": 158, "dependencies": 3 }, "name": "react-native-node-api", @@ -137510,8 +137685,8 @@ "configPlugin": false }, "npm": { - "downloads": 371, - "weekDownloads": 141, + "downloads": 361, + "weekDownloads": 137, "size": 1232349, "latestRelease": "0.5.2", "latestReleaseDate": "2025-10-17T18:04:16.161Z" @@ -137522,7 +137697,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.426, + "popularity": -0.424, "topicSearchString": "react-native node-api napi node-api node-addon-api native addon module c c++ bindings buildtools cmake" }, { @@ -137600,8 +137775,8 @@ }, "npmPkg": "react-native-apple-llm", "npm": { - "downloads": 432, - "weekDownloads": 64, + "downloads": 429, + "weekDownloads": 71, "size": 70426, "latestRelease": "1.0.12", "latestReleaseDate": "2025-08-07T02:32:13.162Z" @@ -137611,7 +137786,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.623, + "popularity": -0.608, "topicSearchString": "react-native apple apple-intelligence foundation-models llm local-llm plugin apple-llm apple-foundation-models ai on-device-llm machine-learning ios swift chatbot natural-language-processing nlp text-generation structured-output json-schema offline-ai privacy-focused-ai mobile-ai ios-llm apple-silicon neural-engine siri-intelligence core-ml on-device-inference apple-llm-integration zod" }, { @@ -137671,8 +137846,8 @@ "unmaintained": true, "npmPkg": "expo-atproto-auth", "npm": { - "downloads": 104, - "weekDownloads": 7, + "downloads": 102, + "weekDownloads": 14, "size": 696564, "latestRelease": "0.1.1", "latestReleaseDate": "2025-07-17T21:10:56.606Z" @@ -137682,7 +137857,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -1.692, + "popularity": -1.633, "topicSearchString": "react-native expo expo-atproto-auth expoatprotoauth" }, { @@ -137709,7 +137884,7 @@ "forks": 12, "issues": 2, "subscribers": 4, - "stars": 128, + "stars": 129, "dependencies": 4 }, "name": "react-native-css", @@ -137739,8 +137914,8 @@ }, "npmPkg": "react-native-css", "npm": { - "downloads": 16093, - "weekDownloads": 740, + "downloads": 16810, + "weekDownloads": 1364, "size": 1924145, "latestRelease": "3.0.1", "latestReleaseDate": "2025-10-11T08:13:45.212Z" @@ -137750,7 +137925,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.039, + "popularity": 0.069, "topicSearchString": "react-native ios android css css-in-js" }, { @@ -137809,7 +137984,7 @@ }, "npmPkg": "rn-maps-clustering", "npm": { - "downloads": 227, + "downloads": 220, "weekDownloads": 64, "size": 95370, "latestRelease": "0.1.2", @@ -137819,7 +137994,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.508, + "popularity": -0.499, "topicSearchString": "react-native maps cluster clustering supercluster ios android" }, { @@ -137886,8 +138061,8 @@ "configPlugin": false }, "npm": { - "downloads": 41, - "weekDownloads": 4, + "downloads": 45, + "weekDownloads": 6, "size": 34848, "latestRelease": "0.3.0", "latestReleaseDate": "2025-07-04T20:42:08.838Z" @@ -137896,7 +138071,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.911, + "popularity": -0.88, "topicSearchString": "react-native responsive-ui responsive-view responsive-screen responsive scaling ui-design screen-size mobile-ui adaptive cross-platform android ios responsive-layout ui" }, { @@ -137959,8 +138134,8 @@ }, "npmPkg": "react-native-orientation-turbo", "npm": { - "downloads": 2376, - "weekDownloads": 650, + "downloads": 2271, + "weekDownloads": 630, "size": 78868, "latestRelease": "2.2.0", "latestReleaseDate": "2025-07-28T18:50:57.827Z" @@ -137969,7 +138144,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.017, + "popularity": -0.014, "topicSearchString": "react-native orientation screen-orientation rotation portrait landscape turbo-module new-architecture ios android" }, { @@ -137997,7 +138172,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 4, + "stars": 5, "dependencies": 0 }, "name": "react-native-mixins", @@ -138026,8 +138201,8 @@ }, "npmPkg": "react-native-mixins", "npm": { - "downloads": 10, - "weekDownloads": 0, + "downloads": 11, + "weekDownloads": 2, "size": 14323, "latestRelease": "0.1.0", "latestReleaseDate": "2025-07-06T20:06:07.391Z" @@ -138036,7 +138211,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -0.8, "topicSearchString": "react-native ios android typescript" }, { @@ -138093,7 +138268,7 @@ }, "npmPkg": "expo-azure-blob-storage", "npm": { - "downloads": 2, + "downloads": 3, "weekDownloads": 0, "size": 88275, "latestRelease": "0.0.1", @@ -138134,7 +138309,7 @@ "forks": 298, "issues": 3, "subscribers": 35, - "stars": 9348, + "stars": 9349, "dependencies": 3 }, "name": "@instantdb/react-native", @@ -138149,8 +138324,8 @@ "configPlugin": false }, "npm": { - "downloads": 36342, - "weekDownloads": 5408, + "downloads": 35989, + "weekDownloads": 5801, "size": 111767, "latestRelease": "0.22.21", "latestReleaseDate": "2025-10-17T18:52:46.985Z" @@ -138163,7 +138338,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.126, + "popularity": 0.137, "topicSearchString": "" }, { @@ -138216,8 +138391,8 @@ "configPlugin": false }, "npm": { - "downloads": 420, - "weekDownloads": 134, + "downloads": 417, + "weekDownloads": 137, "size": 10705, "latestRelease": "1.0.2", "latestReleaseDate": "2025-09-23T00:13:09.248Z" @@ -138227,7 +138402,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.727, + "popularity": -0.72, "topicSearchString": "react-native barcode generator" }, { @@ -138253,7 +138428,7 @@ "forks": 67, "issues": 0, "subscribers": 10, - "stars": 1252, + "stars": 1253, "dependencies": 1 }, "name": "otpauth", @@ -138293,8 +138468,8 @@ }, "npmPkg": "otpauth", "npm": { - "downloads": 2863272, - "weekDownloads": 537881, + "downloads": 2786391, + "weekDownloads": 543352, "size": 750590, "latestRelease": "9.4.1", "latestReleaseDate": "2025-08-12T16:46:16.606Z" @@ -138306,7 +138481,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.166, "topicSearchString": "otp hotp totp one-time-password 2fa 2-factor two-factor 2step 2-step two-step auth authenticator google-authenticator otpauth two-step-authentication two-factor-authentication" }, { @@ -138362,8 +138537,8 @@ "unmaintained": true, "npmPkg": "fast-deep-equal", "npm": { - "downloads": 314341440, - "weekDownloads": 58449070, + "downloads": 308185065, + "weekDownloads": 60203822, "size": 12966, "latestRelease": "3.1.3", "latestReleaseDate": "2020-06-08T07:27:28.474Z" @@ -138376,7 +138551,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, + "popularity": -0.584, "topicSearchString": "fast equal deep-equal deep-equals" }, { @@ -138437,8 +138612,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 224, - "weekDownloads": 21, + "downloads": 216, + "weekDownloads": 11, "size": 142883, "latestRelease": "1.3.2", "latestReleaseDate": "2025-09-26T14:26:48.765Z" @@ -138447,7 +138622,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.919, + "popularity": -0.956, "topicSearchString": "react-native ping-react-native ping ping-ios ping-android ping-macos" }, { @@ -138512,8 +138687,8 @@ "configPlugin": false }, "npm": { - "downloads": 4065713, - "weekDownloads": 733353, + "downloads": 3924228, + "weekDownloads": 762339, "size": 150096, "latestRelease": "3.9.0", "latestReleaseDate": "2025-09-30T16:51:51.217Z" @@ -138525,7 +138700,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, + "popularity": 0.165, "topicSearchString": "launchdarkly launch darkly react sdk bindings launchdarkly-sdk reactjs react-js feature-flags feature-toggles typescript managed-by-terraform" }, { @@ -138551,10 +138726,10 @@ "updatedAt": "2025-10-08T18:39:32Z", "createdAt": "2015-11-30T12:48:48Z", "pushedAt": "2025-10-08T18:39:32Z", - "forks": 758, + "forks": 757, "issues": 157, - "subscribers": 103, - "stars": 16178, + "subscribers": 104, + "stars": 16182, "dependencies": 0 }, "name": "luxon", @@ -138585,8 +138760,8 @@ }, "npmPkg": "luxon", "npm": { - "downloads": 68685864, - "weekDownloads": 12900516, + "downloads": 66924345, + "weekDownloads": 13387162, "size": 4592735, "latestRelease": "3.7.2", "latestReleaseDate": "2025-09-05T10:14:55.814Z" @@ -138600,7 +138775,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.17, "topicSearchString": "date immutable intl timezones dates times datetime" }, { @@ -138656,7 +138831,7 @@ "npmPkg": "react-native-feather-toast", "npm": { "downloads": 114, - "weekDownloads": 3, + "weekDownloads": 6, "size": 33529, "latestRelease": "1.0.14", "latestReleaseDate": "2025-02-02T05:48:54.808Z" @@ -138666,7 +138841,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.977, + "popularity": -0.954, "topicSearchString": "react-native expo toast expo-toast" }, { @@ -138731,7 +138906,7 @@ }, "npmPkg": "react-native-scroll-sync", "npm": { - "downloads": 14, + "downloads": 15, "weekDownloads": 0, "size": 34866, "latestRelease": "0.3.0", @@ -138768,7 +138943,7 @@ "forks": 7017, "issues": 89, "subscribers": 817, - "stars": 61284, + "stars": 61287, "dependencies": 0 }, "name": "lodash", @@ -138796,8 +138971,8 @@ }, "npmPkg": "lodash", "npm": { - "downloads": 310225602, - "weekDownloads": 58796914, + "downloads": 304158040, + "weekDownloads": 60508189, "size": 1412415, "latestRelease": "4.17.21", "latestReleaseDate": "2021-02-20T15:42:16.891Z" @@ -138811,7 +138986,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.169, "topicSearchString": "lodash utilities javascript modules" }, { @@ -138838,7 +139013,7 @@ "forks": 193, "issues": 72, "subscribers": 20, - "stars": 4789, + "stars": 4791, "dependencies": 0 }, "name": "radash", @@ -138867,8 +139042,8 @@ }, "npmPkg": "radash", "npm": { - "downloads": 2080404, - "weekDownloads": 358192, + "downloads": 2008877, + "weekDownloads": 376772, "size": 306084, "latestRelease": "12.1.1", "latestReleaseDate": "2025-06-18T04:22:49.665Z" @@ -138880,7 +139055,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.159, "topicSearchString": "functions javascript javascript-library typescript hacktoberfest" }, { @@ -138905,9 +139080,9 @@ "createdAt": "2024-04-25T11:56:31Z", "pushedAt": "2025-10-17T09:58:54Z", "forks": 498, - "issues": 115, + "issues": 117, "subscribers": 33, - "stars": 10273, + "stars": 10284, "dependencies": 0 }, "name": "es-toolkit", @@ -138930,8 +139105,8 @@ }, "npmPkg": "es-toolkit", "npm": { - "downloads": 19640398, - "weekDownloads": 3630135, + "downloads": 19380816, + "weekDownloads": 3751706, "size": 2501699, "latestRelease": "1.40.0", "latestReleaseDate": "2025-10-08T11:46:27.997Z" @@ -138945,7 +139120,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.165, "topicSearchString": "" }, { @@ -138973,7 +139148,7 @@ "forks": 2686, "issues": 174, "subscribers": 91, - "stars": 14716, + "stars": 14720, "dependencies": 0 }, "name": "ahooks", @@ -139001,8 +139176,8 @@ "configPlugin": false }, "npm": { - "downloads": 1764293, - "weekDownloads": 331255, + "downloads": 1729451, + "weekDownloads": 354316, "size": 620757, "latestRelease": "3.9.5", "latestReleaseDate": "2025-08-31T13:56:25.816Z" @@ -139016,7 +139191,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.16, + "popularity": 0.174, "topicSearchString": "ahooks react hooks-library umi-hooks react-hooks" }, { @@ -139174,9 +139349,9 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-18T04:41:50Z", + "updatedAt": "2025-10-20T09:26:06Z", "createdAt": "2025-06-22T22:45:31Z", - "pushedAt": "2025-10-18T04:41:50Z", + "pushedAt": "2025-10-20T09:26:06Z", "forks": 0, "issues": 1, "subscribers": 0, @@ -139217,7 +139392,7 @@ }, "npmPkg": "react-native-scroll-to-child", "npm": { - "downloads": 108, + "downloads": 109, "weekDownloads": 12, "size": 146512, "latestRelease": "0.2.0", @@ -139290,7 +139465,7 @@ }, "npmPkg": "react-native-dream-toast", "npm": { - "downloads": 20, + "downloads": 18, "weekDownloads": 2, "size": 33262, "latestRelease": "1.0.0", @@ -139355,8 +139530,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 534, - "weekDownloads": 16, + "downloads": 530, + "weekDownloads": 13, "size": 158467, "latestRelease": "3.0.7", "latestReleaseDate": "2025-10-03T21:41:07.120Z" @@ -139366,7 +139541,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.974, + "popularity": -0.979, "topicSearchString": "react-native ios android" }, { @@ -139421,8 +139596,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 311, - "weekDownloads": 14, + "downloads": 309, + "weekDownloads": 13, "size": 126658, "latestRelease": "3.0.7", "latestReleaseDate": "2025-10-03T21:16:56.654Z" @@ -139432,7 +139607,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.962, + "popularity": -0.964, "topicSearchString": "react-native expo expo-helium helium-expo-sdk expo-helium-sdk heliumpaywallsdk" }, { @@ -139440,6 +139615,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/OneSignal/onesignal-expo-plugin", @@ -139492,8 +139668,8 @@ }, "npmPkg": "onesignal-expo-plugin", "npm": { - "downloads": 157222, - "weekDownloads": 29868, + "downloads": 151996, + "weekDownloads": 29655, "size": 101579, "latestRelease": "2.0.3", "latestReleaseDate": "2024-06-04T23:31:59.485Z" @@ -139503,7 +139679,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.161, + "popularity": 0.166, "topicSearchString": "expo onesignal push notifications eas react-native ios android onesignal-notifications push-notifications" }, { @@ -139563,8 +139739,8 @@ }, "npmPkg": "react-native-input-suggestion", "npm": { - "downloads": 14, - "weekDownloads": 4, + "downloads": 15, + "weekDownloads": 3, "size": 13892, "latestRelease": "1.0.2", "latestReleaseDate": "2025-08-02T14:02:25.113Z" @@ -139573,7 +139749,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.733, + "popularity": -0.8, "topicSearchString": "react-native textinput autocomplete suggestion-input input auto-fill input-suggestion swipe-to-fill textinput-suggestion component library" }, { @@ -139584,6 +139760,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/ChristopherGabba/react-native-nitro-screen-recorder", @@ -139595,9 +139772,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-06T11:06:47Z", + "updatedAt": "2025-10-20T18:41:54Z", "createdAt": "2025-07-13T19:44:27Z", - "pushedAt": "2025-10-06T11:06:47Z", + "pushedAt": "2025-10-20T18:41:54Z", "forks": 1, "issues": 2, "subscribers": 3, @@ -139657,18 +139834,18 @@ }, "npmPkg": "react-native-nitro-screen-recorder", "npm": { - "downloads": 951, - "weekDownloads": 48, + "downloads": 940, + "weekDownloads": 104, "size": 664714, - "latestRelease": "0.4.7", - "latestReleaseDate": "2025-10-06T11:06:46.413Z" + "latestRelease": "0.4.8", + "latestReleaseDate": "2025-10-20T18:41:51.903Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.707, + "popularity": -0.656, "topicSearchString": "react-native ios android nitro-screen-recorder nitro screen-recording screen-recorder video-recording screen-capture screen-sharing recording video-capture camera-overlay microphone audio-recording global-recording in-app-recording broadcast-extension media-projection nitro-modules replaykit expo-plugin permissions mobile-recording video camera audio multimedia native-module typescript" }, { @@ -139680,6 +139857,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/braze-inc/braze-expo-plugin", @@ -139723,8 +139901,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 132327, - "weekDownloads": 23673, + "downloads": 128399, + "weekDownloads": 25069, "size": 65701, "latestRelease": "3.1.0", "latestReleaseDate": "2025-04-09T16:19:56.324Z" @@ -139734,7 +139912,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.098, + "popularity": -0.084, "topicSearchString": "react expo config-plugins prebuild appboy-sdk braze appboy analytics segmentation" }, { @@ -139759,7 +139937,7 @@ "forks": 27, "issues": 9, "subscribers": 3, - "stars": 333, + "stars": 334, "dependencies": 0 }, "name": "react-native-zoom-toolkit", @@ -139799,8 +139977,8 @@ }, "npmPkg": "react-native-zoom-toolkit", "npm": { - "downloads": 42699, - "weekDownloads": 6708, + "downloads": 42457, + "weekDownloads": 7744, "size": 594147, "latestRelease": "5.0.1", "latestReleaseDate": "2025-08-14T00:02:40.753Z" @@ -139810,7 +139988,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.134, + "popularity": 0.155, "topicSearchString": "zoom zoomable zoomable-view pan pinch pinch-to-zoom double-tap gallery lightbox image-gallery image-cropper react-native image-zoom zoomable-image crop" }, { @@ -139880,7 +140058,7 @@ }, "npmPkg": "react-native-trays", "npm": { - "downloads": 251, + "downloads": 242, "weekDownloads": 52, "size": 113348, "latestRelease": "0.11.0", @@ -139890,7 +140068,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.574, + "popularity": -0.564, "topicSearchString": "react-native ios android tray bottom-sheet modal drawer popup component ui animation reanimated expo mobile-ui bottomsheet family react" }, { @@ -139902,6 +140080,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/kingstinct/react-native-activity-kit", @@ -139947,7 +140126,7 @@ }, "npm": { "downloads": 453, - "weekDownloads": 286, + "weekDownloads": 298, "size": 340278, "latestRelease": "0.0.9", "latestReleaseDate": "2025-09-24T13:08:59.519Z" @@ -139957,7 +140136,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.21, + "popularity": -0.188, "topicSearchString": "react-native nitro" }, { @@ -140167,8 +140346,8 @@ }, "npmPkg": "react-native-crossfade-image", "npm": { - "downloads": 555, - "weekDownloads": 92, + "downloads": 548, + "weekDownloads": 95, "size": 12191, "latestRelease": "1.3.4", "latestReleaseDate": "2025-04-19T09:11:43.661Z" @@ -140178,7 +140357,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, + "popularity": -0.602, "topicSearchString": "react-native ios android crossfade image transition animation background-image cross-fade" }, { @@ -140248,8 +140427,8 @@ "configPlugin": false }, "npm": { - "downloads": 3267, - "weekDownloads": 583, + "downloads": 3270, + "weekDownloads": 521, "size": 90907, "latestRelease": "2.1.6", "latestReleaseDate": "2025-09-10T20:50:40.499Z" @@ -140258,7 +140437,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.136, "topicSearchString": "react-native ios android userpic avatar gravatar avatar-image user-picture user-image user-avatar initials badge image picture user" }, { @@ -140328,8 +140507,8 @@ "configPlugin": false }, "npm": { - "downloads": 12760, - "weekDownloads": 2858, + "downloads": 12081, + "weekDownloads": 2806, "size": 418766, "latestRelease": "1.4.1", "latestReleaseDate": "2025-04-19T09:26:58.159Z" @@ -140339,7 +140518,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.19, + "popularity": 0.197, "topicSearchString": "react-native ios android rating rate evaluate feedback user-rating stars-rating hearts-rating emoji-rating rating-stars" }, { @@ -140408,8 +140587,8 @@ }, "npmPkg": "react-native-page-indicator", "npm": { - "downloads": 11719, - "weekDownloads": 2296, + "downloads": 11428, + "weekDownloads": 2514, "size": 21603, "latestRelease": "2.4.3", "latestReleaseDate": "2025-09-12T16:35:25.511Z" @@ -140418,7 +140597,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.167, + "popularity": 0.187, "topicSearchString": "react-native ios android pager paging pagination indicator swiper slideshow carousel indicators" }, { @@ -140487,7 +140666,7 @@ "configPlugin": false }, "npm": { - "downloads": 41, + "downloads": 46, "weekDownloads": 5, "size": 17975, "latestRelease": "1.0.2", @@ -140498,7 +140677,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.889, + "popularity": -0.9, "topicSearchString": "react-native ios android parallax swiper carousel intro onboarding scrollable reanimated parallax-effect parallax-swiper parallax-scrolling parallax-carousel parallax-slider" }, { @@ -140564,15 +140743,15 @@ "moduleType": "turbo" }, "npm": { - "downloads": 442, - "weekDownloads": 62, + "downloads": 506, + "weekDownloads": 72, "size": 46579, "latestRelease": "1.0.1", "latestReleaseDate": "2025-08-11T17:54:16.750Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.881, + "popularity": -0.879, "topicSearchString": "react-native ios android haptics vibration haptic-feedback vibration-effects haptic-feedback-ios haptic haptic-feedback-android haptics-ios haptics-android" }, { @@ -140629,8 +140808,8 @@ }, "npmPkg": "react-native-device-attest", "npm": { - "downloads": 6346, - "weekDownloads": 1153, + "downloads": 6410, + "weekDownloads": 1369, "size": 29001, "latestRelease": "0.1.6", "latestReleaseDate": "2025-08-01T18:33:56.209Z" @@ -140639,7 +140818,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.096, + "popularity": -0.068, "topicSearchString": "react-native expo device-attest reactnativedeviceattest" }, { @@ -140691,8 +140870,8 @@ }, "npmPkg": "react-native-linear-gradient-web", "npm": { - "downloads": 24, - "weekDownloads": 0, + "downloads": 25, + "weekDownloads": 2, "size": 12286, "latestRelease": "1.1.0", "latestReleaseDate": "2025-07-16T08:13:11.536Z" @@ -140701,7 +140880,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -0.92, "topicSearchString": "" }, { @@ -140757,7 +140936,7 @@ }, "npmPkg": "react-native-fbtee", "npm": { - "downloads": 23, + "downloads": 24, "weekDownloads": 3, "size": 17942, "latestRelease": "1.1.0", @@ -140817,8 +140996,8 @@ }, "npmPkg": "react-native-bundle-discovery", "npm": { - "downloads": 1297, - "weekDownloads": 185, + "downloads": 1266, + "weekDownloads": 215, "size": 361499, "latestRelease": "1.2.1", "latestReleaseDate": "2025-09-28T10:28:43.544Z" @@ -140828,7 +141007,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.121, + "popularity": 0.145, "topicSearchString": "metro react-native" }, { @@ -140852,10 +141031,10 @@ "updatedAt": "2025-10-11T07:53:07Z", "createdAt": "2016-11-29T04:53:07Z", "pushedAt": "2025-10-11T07:53:07Z", - "forks": 525, - "issues": 111, - "subscribers": 44, - "stars": 5900, + "forks": 526, + "issues": 112, + "subscribers": 43, + "stars": 5907, "dependencies": 4 }, "name": "@tanstack/react-form", @@ -140877,8 +141056,8 @@ "configPlugin": false }, "npm": { - "downloads": 1736621, - "weekDownloads": 319320, + "downloads": 1694529, + "weekDownloads": 330763, "size": 372104, "latestRelease": "1.23.7", "latestReleaseDate": "2025-10-11T07:53:54.880Z" @@ -140892,7 +141071,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.166, "topicSearchString": "" }, { @@ -140917,10 +141096,10 @@ "updatedAt": "2025-10-16T15:09:02Z", "createdAt": "2019-09-10T19:23:58Z", "pushedAt": "2025-10-16T15:09:02Z", - "forks": 3486, - "issues": 66, - "subscribers": 214, - "stars": 47040, + "forks": 3487, + "issues": 68, + "subscribers": 215, + "stars": 47059, "dependencies": 2 }, "name": "@tanstack/query-async-storage-persister", @@ -140942,8 +141121,8 @@ "configPlugin": false }, "npm": { - "downloads": 814239, - "weekDownloads": 161696, + "downloads": 788389, + "weekDownloads": 162326, "size": 56548, "latestRelease": "5.90.7", "latestReleaseDate": "2025-10-16T15:15:34.995Z" @@ -140956,7 +141135,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.175, "topicSearchString": "" }, { @@ -140981,10 +141160,10 @@ "updatedAt": "2025-10-16T15:09:02Z", "createdAt": "2019-09-10T19:23:58Z", "pushedAt": "2025-10-16T15:09:02Z", - "forks": 3486, - "issues": 66, - "subscribers": 214, - "stars": 47040, + "forks": 3487, + "issues": 68, + "subscribers": 215, + "stars": 47059, "dependencies": 1 }, "name": "@tanstack/react-query-persist-client", @@ -141006,8 +141185,8 @@ "configPlugin": false }, "npm": { - "downloads": 2210904, - "weekDownloads": 423767, + "downloads": 2148786, + "weekDownloads": 439579, "size": 33909, "latestRelease": "5.90.7", "latestReleaseDate": "2025-10-16T15:15:34.197Z" @@ -141020,7 +141199,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.174, "topicSearchString": "" }, { @@ -141046,7 +141225,7 @@ "forks": 158, "issues": 47, "subscribers": 45, - "stars": 2971, + "stars": 2972, "dependencies": 4 }, "name": "gl-react-native", @@ -141077,8 +141256,8 @@ "unmaintained": true, "npmPkg": "gl-react-native", "npm": { - "downloads": 2929, - "weekDownloads": 338, + "downloads": 2893, + "weekDownloads": 361, "size": 5765, "latestRelease": "5.2.1", "latestReleaseDate": "2022-05-28T20:16:26.073Z" @@ -141090,7 +141269,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.652, + "popularity": -0.644, "topicSearchString": "gl-react gl opengl react react-native react-component" }, { @@ -141115,7 +141294,7 @@ "forks": 5, "issues": 3, "subscribers": 1, - "stars": 353, + "stars": 354, "dependencies": 0 }, "name": "react-native-fast-squircle", @@ -141144,8 +141323,8 @@ }, "npmPkg": "react-native-fast-squircle", "npm": { - "downloads": 1419, - "weekDownloads": 368, + "downloads": 1412, + "weekDownloads": 328, "size": 184944, "latestRelease": "1.0.11", "latestReleaseDate": "2025-09-18T09:24:05.381Z" @@ -141154,7 +141333,7 @@ "matchingScoreModifiers": [ "Known" ], - "popularity": 0.221, + "popularity": 0.198, "topicSearchString": "react-native ios android" }, { @@ -141216,8 +141395,8 @@ "configPlugin": false }, "npm": { - "downloads": 2389, - "weekDownloads": 453, + "downloads": 2320, + "weekDownloads": 479, "size": 37556, "latestRelease": "3.0.0", "latestReleaseDate": "2025-08-14T00:56:54.865Z" @@ -141226,7 +141405,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.089, + "popularity": -0.074, "topicSearchString": "react-native component splash-screen lottie-splash-screen lottie animation splashscreen splash launch-screen launchscreen android ios swift" }, { @@ -141248,10 +141427,10 @@ "updatedAt": "2025-10-08T12:16:39Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-08T12:16:39Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-mesh-gradient", @@ -141281,8 +141460,8 @@ }, "npmPkg": "expo-mesh-gradient", "npm": { - "downloads": 20710, - "weekDownloads": 2656, + "downloads": 21090, + "weekDownloads": 2805, "size": 61658, "latestRelease": "0.4.7", "latestReleaseDate": "2025-09-11T20:24:05.826Z" @@ -141296,7 +141475,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.109, + "popularity": 0.113, "topicSearchString": "react-native expo mesh-gradient gradient mesh" }, { @@ -141316,13 +141495,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-17T11:55:29Z", + "updatedAt": "2025-10-20T15:18:22Z", "createdAt": "2018-04-25T06:35:29Z", - "pushedAt": "2025-10-17T11:55:29Z", + "pushedAt": "2025-10-20T15:18:22Z", "forks": 1372, "issues": 203, "subscribers": 80, - "stars": 10341, + "stars": 10344, "dependencies": 11 }, "name": "react-native-worklets", @@ -141351,8 +141530,8 @@ }, "npmPkg": "react-native-worklets", "npm": { - "downloads": 1918652, - "weekDownloads": 299648, + "downloads": 1922087, + "weekDownloads": 313639, "size": 688037, "latestRelease": "0.6.1", "latestReleaseDate": "2025-10-09T14:03:07.533Z" @@ -141365,7 +141544,7 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.133, + "popularity": 0.139, "topicSearchString": "react-native react native worklets" }, { @@ -141395,7 +141574,7 @@ "forks": 9, "issues": 6, "subscribers": 0, - "stars": 313, + "stars": 316, "dependencies": 1 }, "name": "react-native-animated-glow", @@ -141437,8 +141616,8 @@ }, "npmPkg": "react-native-animated-glow", "npm": { - "downloads": 3151, - "weekDownloads": 407, + "downloads": 3156, + "weekDownloads": 398, "size": 251743, "latestRelease": "3.0.1", "latestReleaseDate": "2025-09-05T03:16:53.426Z" @@ -141448,7 +141627,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.11, + "popularity": 0.107, "topicSearchString": "react-native skia reanimated glow animation animated border effect neon button-glow animated-glow glowing-button inner-glow apple-intelligence gradient hover press interactive" }, { @@ -141505,8 +141684,8 @@ }, "npmPkg": "react-native-video-player", "npm": { - "downloads": 16709, - "weekDownloads": 3592, + "downloads": 16196, + "weekDownloads": 3509, "size": 215370, "latestRelease": "0.16.3", "latestReleaseDate": "2025-05-05T18:35:32.931Z" @@ -141517,7 +141696,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.183, + "popularity": 0.184, "topicSearchString": "react-native ios android video-player hacktoberfest" }, { @@ -141573,8 +141752,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 3846, - "weekDownloads": 1166, + "downloads": 3722, + "weekDownloads": 1351, "size": 527188, "latestRelease": "0.0.5", "latestReleaseDate": "2025-07-08T22:33:05.310Z" @@ -141583,7 +141762,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.258, + "popularity": 0.309, "topicSearchString": "react-native ios android" }, { @@ -141638,7 +141817,7 @@ }, "npmPkg": "react-native-drop-shadow-view", "npm": { - "downloads": 20, + "downloads": 21, "weekDownloads": 0, "size": 27337, "latestRelease": "0.3.1", @@ -141703,8 +141882,8 @@ }, "npmPkg": "expo-liquid-glass-view", "npm": { - "downloads": 782, - "weekDownloads": 144, + "downloads": 734, + "weekDownloads": 82, "size": 334070, "latestRelease": "0.1.9", "latestReleaseDate": "2025-09-19T13:44:13.028Z" @@ -141714,7 +141893,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.593, + "popularity": -0.655, "topicSearchString": "react-native expo expo-liquid-glass expoliquidglass" }, { @@ -141772,8 +141951,8 @@ }, "npmPkg": "react-native-thermal-receipt-printer", "npm": { - "downloads": 1842, - "weekDownloads": 275, + "downloads": 1829, + "weekDownloads": 241, "size": 6242614, "latestRelease": "1.2.0-rc.2", "latestReleaseDate": "2023-12-06T15:18:12.977Z" @@ -141785,7 +141964,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.127, + "popularity": 0.112, "topicSearchString": "react-native thermal printer bluetooth net rn android" }, { @@ -141795,6 +141974,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/riderodd/react-native-vosk", @@ -141812,7 +141992,7 @@ "forks": 20, "issues": 7, "subscribers": 3, - "stars": 78, + "stars": 79, "dependencies": 0 }, "name": "react-native-vosk", @@ -141846,8 +142026,8 @@ }, "npmPkg": "react-native-vosk", "npm": { - "downloads": 4034, - "weekDownloads": 465, + "downloads": 4036, + "weekDownloads": 575, "size": 186811367, "latestRelease": "2.1.6", "latestReleaseDate": "2025-09-12T15:35:23.028Z" @@ -141856,7 +142036,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.098, + "popularity": 0.121, "topicSearchString": "react-native ios android vosk speech-to-text speech-recognition asr offline" }, { @@ -141881,7 +142061,7 @@ "updatedAt": "2025-10-09T18:55:30Z", "createdAt": "2022-03-03T17:18:21Z", "pushedAt": "2025-10-09T18:55:30Z", - "forks": 17, + "forks": 18, "issues": 14, "subscribers": 9, "stars": 37, @@ -141913,8 +142093,8 @@ "configPlugin": false }, "npm": { - "downloads": 7407, - "weekDownloads": 1415, + "downloads": 7200, + "weekDownloads": 1346, "size": 1130584, "latestRelease": "0.3.8", "latestReleaseDate": "2025-06-17T15:37:17.610Z" @@ -141924,7 +142104,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.159, "topicSearchString": "react-native ios android stripe identity" }, { @@ -141987,8 +142167,8 @@ }, "npmPkg": "react-native-screen-corner-radius", "npm": { - "downloads": 3501, - "weekDownloads": 691, + "downloads": 3420, + "weekDownloads": 738, "size": 28527, "latestRelease": "0.2.2", "latestReleaseDate": "2023-12-07T17:51:57.567Z" @@ -141998,7 +142178,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.168, + "popularity": 0.184, "topicSearchString": "react-native ios android react native screen library native-module" }, { @@ -142078,6 +142258,7 @@ ], "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/fordat/expo-roomplan", @@ -142132,8 +142313,8 @@ }, "npmPkg": "expo-roomplan", "npm": { - "downloads": 256, - "weekDownloads": 44, + "downloads": 254, + "weekDownloads": 60, "size": 102541, "latestRelease": "1.2.1", "latestReleaseDate": "2025-08-30T16:41:17.752Z" @@ -142142,7 +142323,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.853, + "popularity": -0.797, "topicSearchString": "react-native expo expo-roomplan exporoomplan roomplan arkit room-scanning augmented-reality ar lidar ios mobile" }, { @@ -142193,8 +142374,8 @@ }, "npmPkg": "matomo-tracker-react-native", "npm": { - "downloads": 9640, - "weekDownloads": 1722, + "downloads": 9311, + "weekDownloads": 1876, "size": 84881, "latestRelease": "0.3.3", "latestReleaseDate": "2025-04-02T07:52:36.348Z" @@ -142204,7 +142385,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.171, "topicSearchString": "matomo react-native expo" }, { @@ -142260,8 +142441,8 @@ "configPlugin": false }, "npm": { - "downloads": 16009, - "weekDownloads": 3605, + "downloads": 15624, + "weekDownloads": 3581, "size": 3165422, "latestRelease": "1.7.0", "latestReleaseDate": "2025-10-08T18:32:44.529Z" @@ -142272,7 +142453,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.191, + "popularity": 0.195, "topicSearchString": "react-native ios android" }, { @@ -142330,8 +142511,8 @@ }, "npmPkg": "react-native-feedback-hub", "npm": { - "downloads": 34, - "weekDownloads": 4, + "downloads": 35, + "weekDownloads": 8, "size": 88174, "latestRelease": "1.1.4", "latestReleaseDate": "2025-08-27T23:07:51.573Z" @@ -142340,7 +142521,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.9, + "popularity": -0.8, "topicSearchString": "react-native feedback slack jira teams bug-reporting user-feedback screenshot screen-recording" }, { @@ -142406,7 +142587,7 @@ "configPlugin": false }, "npm": { - "downloads": 58, + "downloads": 59, "weekDownloads": 10, "size": 70279, "latestRelease": "0.1.11", @@ -142439,9 +142620,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-13T15:08:03Z", + "updatedAt": "2025-10-20T17:12:48Z", "createdAt": "2024-11-21T13:42:10Z", - "pushedAt": "2025-10-13T15:08:03Z", + "pushedAt": "2025-10-20T17:12:48Z", "forks": 50, "issues": 22, "subscribers": 17, @@ -142474,8 +142655,8 @@ "configPlugin": false }, "npm": { - "downloads": 6254, - "weekDownloads": 993, + "downloads": 6321, + "weekDownloads": 971, "size": 270254, "latestRelease": "0.4.3", "latestReleaseDate": "2025-10-13T15:10:17.174Z" @@ -142486,7 +142667,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.135, + "popularity": 0.131, "topicSearchString": "elevenlabs react-native conversational-ai webrtc voice ai" }, { @@ -142505,9 +142686,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-18T18:20:51Z", + "updatedAt": "2025-10-20T17:29:40Z", "createdAt": "2020-07-27T11:17:39Z", - "pushedAt": "2025-09-18T18:20:51Z", + "pushedAt": "2025-10-20T17:29:40Z", "forks": 4, "issues": 2, "subscribers": 21, @@ -142537,17 +142718,18 @@ }, "npmPkg": "scandit-react-native-datacapture-core", "npm": { - "downloads": 29166, - "weekDownloads": 5378, - "size": 613118, - "latestRelease": "7.6.1", - "latestReleaseDate": "2025-09-18T18:21:34.950Z" + "downloads": 27998, + "weekDownloads": 5716, + "size": 615012, + "latestRelease": "7.6.2", + "latestReleaseDate": "2025-10-20T17:30:50.544Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.093, + "popularity": -0.076, "topicSearchString": "scandit react-native" }, { @@ -142566,11 +142748,11 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-18T18:20:55Z", + "updatedAt": "2025-10-20T17:29:42Z", "createdAt": "2020-07-27T11:18:01Z", - "pushedAt": "2025-09-18T18:20:55Z", + "pushedAt": "2025-10-20T17:29:42Z", "forks": 7, - "issues": 0, + "issues": 1, "subscribers": 19, "stars": 1, "dependencies": 3 @@ -142598,17 +142780,18 @@ }, "npmPkg": "scandit-react-native-datacapture-barcode", "npm": { - "downloads": 27637, - "weekDownloads": 5128, - "size": 2113757, - "latestRelease": "7.6.1", - "latestReleaseDate": "2025-09-18T18:21:44.257Z" + "downloads": 26499, + "weekDownloads": 5352, + "size": 2122887, + "latestRelease": "7.6.2", + "latestReleaseDate": "2025-10-20T17:31:03.879Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.092, + "popularity": -0.078, "topicSearchString": "scandit react-native" }, { @@ -142627,9 +142810,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-18T18:20:57Z", + "updatedAt": "2025-10-20T17:29:45Z", "createdAt": "2021-06-03T20:11:59Z", - "pushedAt": "2025-09-18T18:20:57Z", + "pushedAt": "2025-10-20T17:29:45Z", "forks": 0, "issues": 0, "subscribers": 22, @@ -142659,14 +142842,15 @@ }, "npmPkg": "scandit-react-native-datacapture-id", "npm": { - "downloads": 12345, - "weekDownloads": 2264, - "size": 446828, - "latestRelease": "7.6.1", - "latestReleaseDate": "2025-09-18T18:21:55.200Z" + "downloads": 11780, + "weekDownloads": 2158, + "size": 449570, + "latestRelease": "7.6.2", + "latestReleaseDate": "2025-10-20T17:31:14.125Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], "popularity": -0.094, @@ -142688,9 +142872,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-18T18:21:03Z", + "updatedAt": "2025-10-20T17:29:51Z", "createdAt": "2020-07-27T11:18:20Z", - "pushedAt": "2025-09-18T18:21:03Z", + "pushedAt": "2025-10-20T17:29:51Z", "forks": 1, "issues": 0, "subscribers": 21, @@ -142720,17 +142904,18 @@ }, "npmPkg": "scandit-react-native-datacapture-parser", "npm": { - "downloads": 9622, - "weekDownloads": 1788, - "size": 101083, - "latestRelease": "7.6.1", - "latestReleaseDate": "2025-09-18T18:22:11.191Z" + "downloads": 9112, + "weekDownloads": 1593, + "size": 103319, + "latestRelease": "7.6.2", + "latestReleaseDate": "2025-10-20T17:31:28.266Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.092, + "popularity": -0.101, "topicSearchString": "scandit react-native" }, { @@ -142749,9 +142934,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-18T18:21:00Z", + "updatedAt": "2025-10-20T17:29:48Z", "createdAt": "2023-10-05T10:53:19Z", - "pushedAt": "2025-09-18T18:21:00Z", + "pushedAt": "2025-10-20T17:29:48Z", "forks": 0, "issues": 0, "subscribers": 21, @@ -142781,17 +142966,18 @@ }, "npmPkg": "scandit-react-native-datacapture-label", "npm": { - "downloads": 773, - "weekDownloads": 58, - "size": 504437, - "latestRelease": "7.6.1", - "latestReleaseDate": "2025-09-18T18:22:03.770Z" + "downloads": 769, + "weekDownloads": 75, + "size": 506680, + "latestRelease": "7.6.2", + "latestReleaseDate": "2025-10-20T17:31:22.163Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.936, + "popularity": -0.917, "topicSearchString": "scandit react-native" }, { @@ -142810,9 +142996,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-18T18:21:10Z", + "updatedAt": "2025-10-20T17:29:59Z", "createdAt": "2023-10-05T10:54:45Z", - "pushedAt": "2025-09-18T18:21:10Z", + "pushedAt": "2025-10-20T17:29:59Z", "forks": 0, "issues": 0, "subscribers": 21, @@ -142842,17 +143028,18 @@ }, "npmPkg": "scandit-react-native-datacapture-label-text", "npm": { - "downloads": 851, - "weekDownloads": 56, - "size": 57013, - "latestRelease": "7.6.1", - "latestReleaseDate": "2025-09-18T18:22:33.609Z" + "downloads": 845, + "weekDownloads": 72, + "size": 59249, + "latestRelease": "7.6.2", + "latestReleaseDate": "2025-10-20T17:32:26.682Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.944, + "popularity": -0.927, "topicSearchString": "scandit react-native" }, { @@ -142871,9 +143058,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-18T18:21:05Z", + "updatedAt": "2025-10-20T17:29:53Z", "createdAt": "2023-10-05T10:55:35Z", - "pushedAt": "2025-09-18T18:21:05Z", + "pushedAt": "2025-10-20T17:29:53Z", "forks": 0, "issues": 0, "subscribers": 21, @@ -142903,17 +143090,18 @@ }, "npmPkg": "scandit-react-native-datacapture-price-label", "npm": { - "downloads": 1629, - "weekDownloads": 56, - "size": 57270, - "latestRelease": "7.6.1", - "latestReleaseDate": "2025-09-18T18:22:19.116Z" + "downloads": 1621, + "weekDownloads": 131, + "size": 59506, + "latestRelease": "7.6.2", + "latestReleaseDate": "2025-10-20T17:31:34.440Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.221, + "popularity": -0.181, "topicSearchString": "scandit react-native" }, { @@ -142971,8 +143159,8 @@ "configPlugin": false }, "npm": { - "downloads": 299, - "weekDownloads": 6, + "downloads": 323, + "weekDownloads": 9, "size": 473970, "latestRelease": "0.15.0", "latestReleaseDate": "2025-10-06T17:03:43.419Z" @@ -142982,7 +143170,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.733, + "popularity": -0.726, "topicSearchString": "react-native ui components" }, { @@ -143040,8 +143228,8 @@ "configPlugin": false }, "npm": { - "downloads": 205, - "weekDownloads": 6, + "downloads": 220, + "weekDownloads": 7, "size": 122276, "latestRelease": "0.15.0", "latestReleaseDate": "2025-10-06T17:03:43.123Z" @@ -143051,7 +143239,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.725, + "popularity": -0.723, "topicSearchString": "react-native calendar dates" }, { @@ -143120,8 +143308,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 71662, - "weekDownloads": 14727, + "downloads": 68827, + "weekDownloads": 14205, "size": 4488272, "latestRelease": "0.7.4", "latestReleaseDate": "2025-07-02T08:38:51.306Z" @@ -143192,8 +143380,8 @@ "configPlugin": false }, "npm": { - "downloads": 389, - "weekDownloads": 288, + "downloads": 388, + "weekDownloads": 299, "size": 42792, "latestRelease": "1.0.5", "latestReleaseDate": "2025-09-23T11:57:11.048Z" @@ -143203,7 +143391,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.367, + "popularity": -0.343, "topicSearchString": "react-native qr-code decoder scanner qr qr-code qr-local-image qr-decode qr-kit" }, { @@ -143232,7 +143420,7 @@ "forks": 11, "issues": 0, "subscribers": 89, - "stars": 63, + "stars": 64, "dependencies": 0 }, "name": "@shopify/checkout-sheet-kit", @@ -143259,8 +143447,8 @@ "configPlugin": false }, "npm": { - "downloads": 14688, - "weekDownloads": 2791, + "downloads": 14152, + "weekDownloads": 2536, "size": 294179, "latestRelease": "3.4.0", "latestReleaseDate": "2025-10-08T15:01:24.584Z" @@ -143271,7 +143459,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, + "popularity": 0.152, "topicSearchString": "react-native shopify checkout" }, { @@ -143281,6 +143469,7 @@ ], "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/software-mansion-labs/expo-live-activity", @@ -143297,8 +143486,8 @@ "pushedAt": "2025-10-17T15:06:25Z", "forks": 9, "issues": 1, - "subscribers": 3, - "stars": 332, + "subscribers": 2, + "stars": 333, "dependencies": 0 }, "name": "expo-live-activity", @@ -143328,8 +143517,8 @@ }, "npmPkg": "expo-live-activity", "npm": { - "downloads": 3183, - "weekDownloads": 787, + "downloads": 3014, + "weekDownloads": 566, "size": 116809, "latestRelease": "0.4.1", "latestReleaseDate": "2025-10-13T15:48:00.223Z" @@ -143340,7 +143529,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.21, + "popularity": 0.16, "topicSearchString": "react-native expo live-activity ios apple" }, { @@ -143368,7 +143557,7 @@ "forks": 12, "issues": 3, "subscribers": 0, - "stars": 235, + "stars": 239, "dependencies": 2 }, "name": "react-native-rag", @@ -143399,7 +143588,7 @@ }, "npmPkg": "react-native-rag", "npm": { - "downloads": 1065, + "downloads": 1064, "weekDownloads": 93, "size": 134263, "latestRelease": "0.2.0", @@ -143421,6 +143610,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/mybigday/llama.rn", @@ -143438,7 +143628,7 @@ "forks": 69, "issues": 11, "subscribers": 10, - "stars": 699, + "stars": 700, "dependencies": 0 }, "name": "llama.rn", @@ -143473,8 +143663,8 @@ }, "npmPkg": "llama.rn", "npm": { - "downloads": 8589, - "weekDownloads": 1578, + "downloads": 8644, + "weekDownloads": 1689, "size": 158951813, "latestRelease": "0.8.0-rc.3", "latestReleaseDate": "2025-10-18T05:14:52.084Z" @@ -143485,7 +143675,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.166, "topicSearchString": "react-native ios android large-language-model llm local-llm llama.cpp llama llama-2 llama-cpp" }, { @@ -143536,8 +143726,8 @@ }, "npmPkg": "rn-toptabs", "npm": { - "downloads": 36, - "weekDownloads": 1, + "downloads": 38, + "weekDownloads": 2, "size": 34977, "latestRelease": "1.0.11", "latestReleaseDate": "2025-09-04T14:44:47.397Z" @@ -143546,7 +143736,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.975, + "popularity": -0.95, "topicSearchString": "" }, { @@ -143606,8 +143796,8 @@ }, "npmPkg": "react-native-gnss-status-checker", "npm": { - "downloads": 33, - "weekDownloads": 7, + "downloads": 32, + "weekDownloads": 5, "size": 115812, "latestRelease": "1.1.0-beta.1", "latestReleaseDate": "2025-08-29T09:22:57.310Z" @@ -143616,7 +143806,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.8, + "popularity": -0.857, "topicSearchString": "react-native android gnss gps navic satellite dual-frequency location" }, { @@ -143676,8 +143866,8 @@ }, "npmPkg": "typewriter4react-native", "npm": { - "downloads": 324, - "weekDownloads": 8, + "downloads": 333, + "weekDownloads": 6, "size": 59844, "latestRelease": "0.5.3", "latestReleaseDate": "2025-09-15T09:10:27.105Z" @@ -143686,7 +143876,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.979, + "popularity": -0.985, "topicSearchString": "react-native ios android component reactjs expo npm-package typewriter-animation typewriter-effect typewriter-effects" }, { @@ -143744,15 +143934,15 @@ "moduleType": "turbo" }, "npm": { - "downloads": 286, - "weekDownloads": 40, + "downloads": 283, + "weekDownloads": 48, "size": 33566, "latestRelease": "0.2.0", "latestReleaseDate": "2025-07-26T01:07:14.096Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.881, + "popularity": -0.855, "topicSearchString": "react-native ios android keep-awake" }, { @@ -143813,8 +144003,8 @@ }, "npmPkg": "expo-better-auth-passkey", "npm": { - "downloads": 755, - "weekDownloads": 161, + "downloads": 789, + "weekDownloads": 234, "size": 111080, "latestRelease": "1.3.0", "latestReleaseDate": "2025-10-08T12:55:00.326Z" @@ -143824,7 +144014,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.818, + "popularity": -0.747, "topicSearchString": "react-native expo expo-better-auth-passkey better-auth passkey webauthn" }, { @@ -143873,8 +144063,8 @@ "configPlugin": false }, "npm": { - "downloads": 1163, - "weekDownloads": 262, + "downloads": 1108, + "weekDownloads": 218, "size": 32136, "latestRelease": "2.3.1", "latestReleaseDate": "2025-10-07T11:45:34.125Z" @@ -143884,7 +144074,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.192, + "popularity": 0.168, "topicSearchString": "" }, { @@ -143910,9 +144100,9 @@ "createdAt": "2025-09-02T14:44:03Z", "pushedAt": "2025-10-19T11:59:16Z", "forks": 17, - "issues": 1, + "issues": 2, "subscribers": 7, - "stars": 747, + "stars": 756, "dependencies": 0 }, "name": "@callstack/liquid-glass", @@ -143940,8 +144130,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 5932, - "weekDownloads": 720, + "downloads": 6200, + "weekDownloads": 810, "size": 36907, "latestRelease": "0.4.3", "latestReleaseDate": "2025-10-19T11:59:15.152Z" @@ -143951,7 +144141,7 @@ "Known", "Recently updated" ], - "popularity": 0.103, + "popularity": 0.111, "topicSearchString": "react-native ios android" }, { @@ -144009,7 +144199,7 @@ }, "npmPkg": "react-native-nitro-event-kit", "npm": { - "downloads": 25, + "downloads": 26, "weekDownloads": 0, "size": 438129, "latestRelease": "1.7.6", @@ -144042,9 +144232,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-25T11:06:22Z", + "updatedAt": "2025-10-20T18:45:20Z", "createdAt": "2025-04-17T19:26:26Z", - "pushedAt": "2025-09-25T11:06:22Z", + "pushedAt": "2025-10-20T18:45:20Z", "forks": 0, "issues": 0, "subscribers": 2, @@ -144078,17 +144268,17 @@ "npmPkg": "react-native-nitro-audio-manager", "npm": { "downloads": 303, - "weekDownloads": 31, - "size": 574815, - "latestRelease": "0.1.6", - "latestReleaseDate": "2025-09-25T11:06:19.723Z" + "weekDownloads": 100, + "size": 581570, + "latestRelease": "0.1.8", + "latestReleaseDate": "2025-10-20T19:07:55.714Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.663, + "popularity": -0.468, "topicSearchString": "react-native ios android" }, { @@ -144110,11 +144300,11 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-13T09:12:40Z", + "updatedAt": "2025-10-20T09:55:19Z", "createdAt": "2025-04-17T08:02:15Z", - "pushedAt": "2025-10-13T09:12:40Z", + "pushedAt": "2025-10-20T09:55:19Z", "forks": 14, - "issues": 9, + "issues": 8, "subscribers": 5, "stars": 737, "dependencies": 0 @@ -144147,18 +144337,18 @@ }, "npmPkg": "react-native-enriched", "npm": { - "downloads": 7723, - "weekDownloads": 1231, - "size": 583914, - "latestRelease": "0.1.3", - "latestReleaseDate": "2025-09-24T09:14:41.767Z" + "downloads": 7476, + "weekDownloads": 1135, + "size": 573814, + "latestRelease": "0.1.4", + "latestReleaseDate": "2025-10-20T09:58:11.645Z" }, "score": 59, "matchingScoreModifiers": [ "Known", "Recently updated" ], - "popularity": 0.135, + "popularity": 0.129, "topicSearchString": "react-native ios android rich-text-editor text-input" }, { @@ -144216,8 +144406,8 @@ }, "unmaintained": true, "npm": { - "downloads": 32935, - "weekDownloads": 6010, + "downloads": 32742, + "weekDownloads": 6362, "size": 16913, "latestRelease": "1.4.2", "latestReleaseDate": "2023-06-06T07:24:32.759Z" @@ -144228,7 +144418,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, + "popularity": -0.585, "topicSearchString": "masonry react-native masonry-list pinterest flatlist masonry-layout" }, { @@ -144249,10 +144439,10 @@ "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-10-01T01:01:24Z", - "forks": 9243, - "issues": 386, - "subscribers": 333, - "stars": 44203, + "forks": 9273, + "issues": 387, + "subscribers": 332, + "stars": 44242, "dependencies": 0 }, "name": "expo-glass-effect", @@ -144282,8 +144472,8 @@ }, "npmPkg": "expo-glass-effect", "npm": { - "downloads": 88298, - "weekDownloads": 29998, + "downloads": 86069, + "weekDownloads": 33799, "size": 29528, "latestRelease": "0.1.4", "latestReleaseDate": "2025-09-17T00:06:51.348Z" @@ -144297,7 +144487,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.539, + "popularity": 0.584, "topicSearchString": "react-native apple liquid-glass expo expo-glass-effect" }, { @@ -144310,6 +144500,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/crossplatformkorea/react-native-naver-login", @@ -144358,8 +144549,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 8531, - "weekDownloads": 1850, + "downloads": 8357, + "weekDownloads": 1686, "size": 69246, "latestRelease": "4.2.2", "latestReleaseDate": "2025-09-07T11:14:35.768Z" @@ -144369,7 +144560,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.184, + "popularity": 0.172, "topicSearchString": "react-native naver 네아로 네이버 seoul dooboolab naver-login" }, { @@ -144380,6 +144571,7 @@ ], "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/zoontek/react-native-navigation-bar", @@ -144428,8 +144620,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 1408, - "weekDownloads": 173, + "downloads": 1365, + "weekDownloads": 124, "size": 51475, "latestRelease": "1.0.1", "latestReleaseDate": "2025-09-07T17:52:20.712Z" @@ -144438,7 +144630,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.105, + "popularity": 0.077, "topicSearchString": "react react-native navigation-bar edge-to-edge status-bar system-bar" }, { @@ -144466,7 +144658,7 @@ "forks": 1, "issues": 0, "subscribers": 2, - "stars": 67, + "stars": 68, "dependencies": 0 }, "name": "react-native-animated-observer", @@ -144495,15 +144687,15 @@ }, "npmPkg": "react-native-animated-observer", "npm": { - "downloads": 63, - "weekDownloads": 15, + "downloads": 67, + "weekDownloads": 17, "size": 37950, "latestRelease": "0.2.4", "latestReleaseDate": "2025-09-13T21:31:35.764Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.536, + "popularity": -0.523, "topicSearchString": "react-native ios android" }, { @@ -144563,15 +144755,15 @@ "moduleType": "turbo" }, "npm": { - "downloads": 53703, - "weekDownloads": 10126, + "downloads": 51909, + "weekDownloads": 10337, "size": 78390, "latestRelease": "0.2.2", "latestReleaseDate": "2025-09-10T06:48:11.576Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": 0.16, + "popularity": 0.169, "topicSearchString": "googlepay google-pay pay payment react-native ios android" }, { @@ -144596,7 +144788,7 @@ "createdAt": "2025-02-26T21:03:41Z", "pushedAt": "2025-09-15T19:35:12Z", "forks": 6, - "issues": 1, + "issues": 2, "subscribers": 1, "stars": 14, "dependencies": 0 @@ -144630,7 +144822,7 @@ }, "npmPkg": "react-native-tiktok-business-sdk", "npm": { - "downloads": 2246, + "downloads": 2198, "weekDownloads": 345, "size": 90276, "latestRelease": "1.5.0", @@ -144640,7 +144832,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.119, + "popularity": -0.117, "topicSearchString": "react-native tiktok business sdk ios android" }, { @@ -144699,7 +144891,7 @@ "npmPkg": "react-native-multi-resource-timeline", "npm": { "downloads": 32, - "weekDownloads": 3, + "weekDownloads": 4, "size": 393137, "latestRelease": "2.0.2", "latestReleaseDate": "2025-09-13T08:54:12.074Z" @@ -144708,7 +144900,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.914, + "popularity": -0.886, "topicSearchString": "react-native timeline calendar scheduler multi-resource gesture-handler reanimated expo typescript" }, { @@ -144731,10 +144923,10 @@ "updatedAt": "2025-10-17T18:15:17Z", "createdAt": "2021-12-14T16:53:48Z", "pushedAt": "2025-10-17T18:15:17Z", - "forks": 393, - "issues": 16, + "forks": 394, + "issues": 15, "subscribers": 8, - "stars": 1580, + "stars": 1582, "dependencies": 2 }, "name": "@clerk/expo-passkeys", @@ -144764,8 +144956,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 20260, - "weekDownloads": 1484, + "downloads": 21532, + "weekDownloads": 1268, "size": 227778, "latestRelease": "0.4.10", "latestReleaseDate": "2025-10-17T18:18:48.509Z" @@ -144777,7 +144969,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.062, + "popularity": 0.05, "topicSearchString": "react-native expo expo-passkey clerkexpopasskeys clerk passkeys" }, { @@ -144839,7 +145031,7 @@ "npmPkg": "react-native-nitro-keyevent", "npm": { "downloads": 67, - "weekDownloads": 11, + "weekDownloads": 9, "size": 85182, "latestRelease": "0.0.6", "latestReleaseDate": "2025-09-09T03:35:48.776Z" @@ -144848,7 +145040,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.853, + "popularity": -0.88, "topicSearchString": "react-native nitro nitro-keyevent keyevent keyboard external android module remote tvos androidtv" }, { @@ -144905,8 +145097,8 @@ "configPlugin": false }, "npm": { - "downloads": 739, - "weekDownloads": 58, + "downloads": 735, + "weekDownloads": 95, "size": 66248, "latestRelease": "1.2.1", "latestReleaseDate": "2024-01-23T14:40:01.381Z" @@ -144916,7 +145108,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.933, + "popularity": -0.89, "topicSearchString": "js react-native ios music-kit apple native" }, { @@ -144976,7 +145168,7 @@ }, "npmPkg": "react-native-app-clip-overlay", "npm": { - "downloads": 18, + "downloads": 19, "weekDownloads": 4, "size": 15407, "latestRelease": "0.1.6", @@ -144992,6 +145184,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/sbaiahmed1/react-native-google-auth", @@ -145062,8 +145255,8 @@ }, "npmPkg": "react-native-google-auth", "npm": { - "downloads": 1427, - "weekDownloads": 587, + "downloads": 1321, + "weekDownloads": 488, "size": 177761, "latestRelease": "1.1.1", "latestReleaseDate": "2025-09-21T23:09:36.915Z" @@ -145072,7 +145265,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.35, + "popularity": 0.315, "topicSearchString": "react-native google-auth google-signin google-login google-oauth google-sso authentication oauth2 openid-connect social-login credential-manager one-tap-signin ios android typescript cross-platform mobile-auth google-identity auth google-api signin-sdk mobile-oauth user-authentication google-services google google-authentication google-sign-in" }, { @@ -145129,8 +145322,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 1695, - "weekDownloads": 1174, + "downloads": 1530, + "weekDownloads": 1329, "size": 110862, "latestRelease": "1.3.1", "latestReleaseDate": "2025-09-25T15:54:10.866Z" @@ -145139,7 +145332,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.34, + "popularity": 0.488, "topicSearchString": "react-native ios android" }, { @@ -145171,7 +145364,7 @@ "forks": 0, "issues": 1, "subscribers": 1, - "stars": 77, + "stars": 78, "dependencies": 0 }, "name": "react-native-teleport", @@ -145209,8 +145402,8 @@ }, "npmPkg": "react-native-teleport", "npm": { - "downloads": 717, - "weekDownloads": 97, + "downloads": 712, + "weekDownloads": 94, "size": 75911, "latestRelease": "0.3.0", "latestReleaseDate": "2025-09-23T08:49:16.321Z" @@ -145219,7 +145412,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.635, + "popularity": -0.637, "topicSearchString": "react-native portal teleport tunnel re-parent reparent reparentable gateway ios android web reparenting" }, { @@ -145277,17 +145470,15 @@ }, "npmPkg": "react-native-calllogs-android", "npm": { - "downloads": 261, - "weekDownloads": 236, + "downloads": 139, + "weekDownloads": 113, "size": 35149, "latestRelease": "0.2.1", "latestReleaseDate": "2025-09-20T05:27:37.792Z" }, - "score": 51, - "matchingScoreModifiers": [ - "Recently updated" - ], - "popularity": -0.226, + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.294, "topicSearchString": "react-native ios android" }, { @@ -145295,6 +145486,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/huextrat/expo-core-spotlight", @@ -145344,8 +145536,8 @@ }, "npmPkg": "expo-core-spotlight", "npm": { - "downloads": 939, - "weekDownloads": 645, + "downloads": 942, + "weekDownloads": 664, "size": 44666, "latestRelease": "1.1.1", "latestReleaseDate": "2025-09-23T09:43:09.470Z" @@ -145355,7 +145547,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.414, + "popularity": -0.399, "topicSearchString": "react-native expo expo-core-spotlight expocorespotlight ios spotlight spotlight-search" }, { @@ -145364,6 +145556,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/Survicate/survicate-react-native-sdk", @@ -145407,8 +145600,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 51840, - "weekDownloads": 9185, + "downloads": 50490, + "weekDownloads": 9870, "size": 92736, "latestRelease": "6.4.2", "latestReleaseDate": "2025-09-30T12:43:13.069Z" @@ -145417,7 +145610,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.099, + "popularity": -0.084, "topicSearchString": "react-native expo" }, { @@ -145487,8 +145680,8 @@ }, "npmPkg": "react-native-xenon", "npm": { - "downloads": 476, - "weekDownloads": 174, + "downloads": 471, + "weekDownloads": 182, "size": 375543, "latestRelease": "2.3.0", "latestReleaseDate": "2025-10-12T00:30:43.981Z" @@ -145498,7 +145691,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.439, + "popularity": -0.419, "topicSearchString": "react-native android ios xenon inspector debugger devtools https network nsurlsession okhttp logger console" }, { @@ -145531,7 +145724,7 @@ "createdAt": "2025-09-07T18:39:21Z", "pushedAt": "2025-09-23T17:20:08Z", "forks": 0, - "issues": 0, + "issues": 1, "subscribers": 0, "stars": 2, "dependencies": 0 @@ -145573,7 +145766,7 @@ }, "npm": { "downloads": 30, - "weekDownloads": 10, + "weekDownloads": 7, "size": 65733, "latestRelease": "0.2.0", "latestReleaseDate": "2025-09-17T18:09:46.842Z" @@ -145583,7 +145776,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.714, + "popularity": -0.8, "topicSearchString": "react react-native video video-player media media-player youtube youtube-player yt player streaming custom-player playback web-video iframe" }, { @@ -145611,7 +145804,7 @@ "forks": 18, "issues": 0, "subscribers": 3, - "stars": 455, + "stars": 459, "dependencies": 1 }, "name": "@react-buoy/core", @@ -145626,8 +145819,8 @@ "configPlugin": false }, "npm": { - "downloads": 1459, - "weekDownloads": 719, + "downloads": 1494, + "weekDownloads": 776, "size": 459232, "latestRelease": "0.1.14", "latestReleaseDate": "2025-10-16T03:19:40.240Z" @@ -145638,7 +145831,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.419, + "popularity": 0.442, "topicSearchString": "" }, { @@ -145666,7 +145859,7 @@ "forks": 18, "issues": 0, "subscribers": 3, - "stars": 455, + "stars": 459, "dependencies": 1 }, "name": "@react-buoy/shared-ui", @@ -145681,8 +145874,8 @@ "configPlugin": false }, "npm": { - "downloads": 2064, - "weekDownloads": 1159, + "downloads": 2101, + "weekDownloads": 1285, "size": 3692478, "latestRelease": "0.1.14", "latestReleaseDate": "2025-10-16T03:19:33.659Z" @@ -145693,7 +145886,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.478, + "popularity": 0.52, "topicSearchString": "" }, { @@ -145721,7 +145914,7 @@ "forks": 18, "issues": 0, "subscribers": 3, - "stars": 455, + "stars": 459, "dependencies": 1 }, "name": "@react-buoy/env", @@ -145736,8 +145929,8 @@ "configPlugin": false }, "npm": { - "downloads": 1181, - "weekDownloads": 714, + "downloads": 1209, + "weekDownloads": 748, "size": 217488, "latestRelease": "0.1.14", "latestReleaseDate": "2025-10-16T03:19:46.232Z" @@ -145748,7 +145941,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.516, + "popularity": 0.527, "topicSearchString": "" }, { @@ -145776,7 +145969,7 @@ "forks": 18, "issues": 0, "subscribers": 3, - "stars": 455, + "stars": 459, "dependencies": 2 }, "name": "@react-buoy/network", @@ -145791,8 +145984,8 @@ "configPlugin": false }, "npm": { - "downloads": 1433, - "weekDownloads": 808, + "downloads": 1468, + "weekDownloads": 856, "size": 545905, "latestRelease": "0.1.14", "latestReleaseDate": "2025-10-16T03:19:51.848Z" @@ -145803,7 +145996,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.48, + "popularity": 0.496, "topicSearchString": "" }, { @@ -145831,7 +146024,7 @@ "forks": 18, "issues": 0, "subscribers": 3, - "stars": 455, + "stars": 459, "dependencies": 1 }, "name": "@react-buoy/react-query", @@ -145847,7 +146040,7 @@ }, "npm": { "downloads": 1421, - "weekDownloads": 889, + "weekDownloads": 954, "size": 1193496, "latestRelease": "0.1.14", "latestReleaseDate": "2025-10-16T03:20:04.284Z" @@ -145858,7 +146051,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.532, + "popularity": 0.571, "topicSearchString": "" }, { @@ -145886,7 +146079,7 @@ "forks": 18, "issues": 0, "subscribers": 3, - "stars": 455, + "stars": 459, "dependencies": 2 }, "name": "@react-buoy/storage", @@ -145902,7 +146095,7 @@ }, "npm": { "downloads": 1279, - "weekDownloads": 821, + "weekDownloads": 871, "size": 1387434, "latestRelease": "0.1.14", "latestReleaseDate": "2025-10-16T03:19:58.473Z" @@ -145913,7 +146106,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.547, + "popularity": 0.581, "topicSearchString": "" }, { @@ -145940,7 +146133,7 @@ "forks": 10, "issues": 8, "subscribers": 2, - "stars": 419, + "stars": 421, "dependencies": 0 }, "name": "react-native-nitro-fetch-monorepo", @@ -145975,8 +146168,8 @@ }, "npmPkg": "react-native-nitro-fetch", "npm": { - "downloads": 417, - "weekDownloads": 146, + "downloads": 350, + "weekDownloads": 90, "size": 218496, "latestRelease": "0.1.3", "latestReleaseDate": "2025-09-19T18:08:46.394Z" @@ -145987,7 +146180,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.452, + "popularity": -0.53, "topicSearchString": "cronet fast fetch http http2 network nitro prefetch react react-native" }, { @@ -146043,8 +146236,8 @@ }, "npmPkg": "react-native-nitro-text", "npm": { - "downloads": 752, - "weekDownloads": 538, + "downloads": 760, + "weekDownloads": 551, "size": 340211, "latestRelease": "1.0.3", "latestReleaseDate": "2025-09-22T11:02:51.970Z" @@ -146054,7 +146247,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.139, + "popularity": -0.131, "topicSearchString": "react-native nitro-text" }, { @@ -146201,7 +146394,7 @@ }, "npmPkg": "react-native-unarchive", "npm": { - "downloads": 198, + "downloads": 230, "weekDownloads": 0, "size": 81878, "latestRelease": "1.1.0", @@ -146281,7 +146474,7 @@ }, "npmPkg": "react-native-ultrastore", "npm": { - "downloads": 79, + "downloads": 80, "weekDownloads": 0, "size": 101840, "latestRelease": "1.0.0", @@ -146353,7 +146546,7 @@ "moduleType": "turbo" }, "npm": { - "downloads": 277, + "downloads": 284, "weekDownloads": 0, "size": 54421, "latestRelease": "1.2.0", @@ -146425,8 +146618,8 @@ }, "npmPkg": "react-native-restart-newarch", "npm": { - "downloads": 17892, - "weekDownloads": 2945, + "downloads": 17588, + "weekDownloads": 3037, "size": 21457, "latestRelease": "1.0.82", "latestReleaseDate": "2025-10-05T08:11:23.196Z" @@ -146435,7 +146628,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.11, + "popularity": -0.103, "topicSearchString": "react-native restart restart-newarch newarch android ios native" }, { @@ -146492,7 +146685,7 @@ }, "npmPkg": "react-native-mdm-config", "npm": { - "downloads": 160, + "downloads": 166, "weekDownloads": 0, "size": 14443, "latestRelease": "1.0.1", @@ -146564,7 +146757,7 @@ "moduleType": "turbo" }, "npm": { - "downloads": 2487, + "downloads": 2504, "weekDownloads": 0, "size": 47981, "latestRelease": "2.1.0", @@ -146586,6 +146779,7 @@ "android": true, "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/huytdps13400/react-native-ssl-manager", @@ -146637,15 +146831,15 @@ }, "npmPkg": "react-native-ssl-manager", "npm": { - "downloads": 92, - "weekDownloads": 8, + "downloads": 95, + "weekDownloads": 10, "size": 77333, "latestRelease": "1.0.2", "latestReleaseDate": "2025-09-03T10:25:11.212Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.674, + "popularity": -0.659, "topicSearchString": "react-native ios android expo bun ssl-pinning security certificate-pinning" }, { @@ -146656,6 +146850,7 @@ ], "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/huytdps13400/react-native-sms-retriever-nitro-module", @@ -146722,7 +146917,7 @@ "moduleType": "nitro" }, "npm": { - "downloads": 135, + "downloads": 141, "weekDownloads": 0, "size": 81039, "latestRelease": "1.0.0", @@ -146792,7 +146987,7 @@ "moduleType": "expo" }, "npm": { - "downloads": 919, + "downloads": 939, "weekDownloads": 0, "size": 115770, "latestRelease": "0.1.10", @@ -146828,9 +147023,9 @@ "createdAt": "2025-06-03T15:21:45Z", "pushedAt": "2025-10-16T14:12:42Z", "forks": 42, - "issues": 0, + "issues": 1, "subscribers": 12, - "stars": 927, + "stars": 932, "dependencies": 0 }, "name": "heroui-native", @@ -146866,8 +147061,8 @@ }, "npmPkg": "heroui-native", "npm": { - "downloads": 4245, - "weekDownloads": 676, + "downloads": 4338, + "weekDownloads": 687, "size": 2438149, "latestRelease": "1.0.0-alpha.15", "latestReleaseDate": "2025-10-15T13:21:12.194Z" @@ -146897,9 +147092,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-10-19T13:42:33Z", + "updatedAt": "2025-10-20T18:21:07Z", "createdAt": "2025-03-30T00:54:38Z", - "pushedAt": "2025-10-19T13:42:33Z", + "pushedAt": "2025-10-20T18:21:07Z", "forks": 0, "issues": 0, "subscribers": 1, @@ -146940,8 +147135,8 @@ }, "npmPkg": "react-native-google-places-textinput", "npm": { - "downloads": 13154, - "weekDownloads": 2584, + "downloads": 12960, + "weekDownloads": 2568, "size": 90864, "latestRelease": "0.8.0", "latestReleaseDate": "2025-07-09T20:49:38.314Z" @@ -146951,7 +147146,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.083, + "popularity": -0.082, "topicSearchString": "react-native ios android autocomplete autocompletion geocode google google-api places places-api react textinput" }, { @@ -147009,8 +147204,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 1110, - "weekDownloads": 228, + "downloads": 1105, + "weekDownloads": 220, "size": 53895, "latestRelease": "0.8.0", "latestReleaseDate": "2025-10-08T12:24:16.887Z" @@ -147019,7 +147214,7 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.175, + "popularity": 0.169, "topicSearchString": "react-native ios android blur blur-view blurview react" }, { @@ -147075,8 +147270,8 @@ }, "npmPkg": "react-native-shimmer-text", "npm": { - "downloads": 2025, - "weekDownloads": 29, + "downloads": 2028, + "weekDownloads": 38, "size": 85212, "latestRelease": "0.1.4", "latestReleaseDate": "2025-09-14T19:25:07.660Z" @@ -147085,7 +147280,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.012, + "popularity": 0.016, "topicSearchString": "react-native expo shimmer text ios android web" }, { @@ -147149,8 +147344,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 216, - "weekDownloads": 27, + "downloads": 219, + "weekDownloads": 25, "size": 392687, "latestRelease": "1.0.2", "latestReleaseDate": "2025-08-11T08:52:05.979Z" @@ -147160,7 +147355,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.892, + "popularity": -0.902, "topicSearchString": "react-native expo otp-autofill avasotpautofill expo-modules otp-verification android autofill" }, { @@ -147183,7 +147378,7 @@ "createdAt": "2024-03-07T07:40:59Z", "pushedAt": "2025-10-09T11:03:30Z", "forks": 34, - "issues": 1, + "issues": 2, "subscribers": 13, "stars": 4316, "dependencies": 2 @@ -147213,8 +147408,8 @@ "configPlugin": false }, "npm": { - "downloads": 19012, - "weekDownloads": 4380, + "downloads": 18684, + "weekDownloads": 4262, "size": 2442926, "latestRelease": "0.17.1", "latestReleaseDate": "2025-10-09T11:07:37.670Z" @@ -147226,13 +147421,14 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.196, + "popularity": 0.194, "topicSearchString": "appwrite baas javascript react-native typescript" }, { "githubUrl": "https://github.com/itsRares/react-native-deepgram", "android": true, "ios": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/itsRares/react-native-deepgram", @@ -147295,7 +147491,7 @@ }, "npmPkg": "react-native-deepgram", "npm": { - "downloads": 554, + "downloads": 558, "weekDownloads": 3, "size": 1298016, "latestRelease": "1.0.4", @@ -147361,7 +147557,7 @@ "configPlugin": false }, "npm": { - "downloads": 343, + "downloads": 394, "weekDownloads": 15, "size": 709633, "latestRelease": "1.0.0-beta.24", @@ -147372,7 +147568,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.963, + "popularity": -0.967, "topicSearchString": "react-native ios android component-library reusable-components nayan-ui" }, { @@ -147426,8 +147622,8 @@ "configPlugin": false }, "npm": { - "downloads": 1362, - "weekDownloads": 111, + "downloads": 1365, + "weekDownloads": 117, "size": 628571, "latestRelease": "0.0.205", "latestReleaseDate": "2025-10-12T12:39:56.786Z" @@ -147437,7 +147633,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.181, + "popularity": -0.177, "topicSearchString": "react-native form-builder form-generator model-based-design form forms" }, { @@ -147497,7 +147693,7 @@ }, "npmPkg": "react-native-play-age-range-declaration", "npm": { - "downloads": 147, + "downloads": 148, "weekDownloads": 0, "size": 27207, "latestRelease": "1.1.5", @@ -147779,8 +147975,8 @@ }, "npmPkg": "react-native-google-code-scanner-android", "npm": { - "downloads": 594, - "weekDownloads": 39, + "downloads": 580, + "weekDownloads": 25, "size": 42099, "latestRelease": "1.2.4", "latestReleaseDate": "2025-10-12T11:43:50.492Z" @@ -147790,7 +147986,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.944, + "popularity": -0.963, "topicSearchString": "react-native ios android" }, { @@ -147802,6 +147998,7 @@ "android": true, "newArchitecture": "new-arch-only", "expoGo": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/pinpong/react-native-google-maps-plus", @@ -147819,7 +148016,7 @@ "forks": 2, "issues": 0, "subscribers": 2, - "stars": 12, + "stars": 13, "dependencies": 0 }, "name": "react-native-google-maps-plus", @@ -147852,7 +148049,7 @@ }, "npmPkg": "react-native-google-maps-plus", "npm": { - "downloads": 2604, + "downloads": 2619, "weekDownloads": 0, "size": 1091213, "latestRelease": "1.6.0", @@ -147995,8 +148192,8 @@ }, "npmPkg": "react-native-ble-nitro", "npm": { - "downloads": 715, - "weekDownloads": 16, + "downloads": 716, + "weekDownloads": 21, "size": 551531, "latestRelease": "1.8.0", "latestReleaseDate": "2025-10-16T11:47:15.510Z" @@ -148006,7 +148203,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.731, + "popularity": -0.725, "topicSearchString": "react-native bluetooth ble bluetooth-low-energy nitro-modules expo ios android performance nitro" }, { @@ -148062,8 +148259,8 @@ }, "npmPkg": "expo-onboarding", "npm": { - "downloads": 264, - "weekDownloads": 3, + "downloads": 263, + "weekDownloads": 2, "size": 85181, "latestRelease": "1.1.2", "latestReleaseDate": "2025-10-17T00:39:01.934Z" @@ -148073,7 +148270,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.99, + "popularity": -0.993, "topicSearchString": "react-native expo onboarding onboarding-screen onboard" }, { @@ -148099,13 +148296,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-10-18T12:53:12Z", + "updatedAt": "2025-10-20T13:10:22Z", "createdAt": "2025-07-29T08:10:42Z", - "pushedAt": "2025-10-18T12:53:12Z", + "pushedAt": "2025-10-20T13:10:22Z", "forks": 4, - "issues": 0, + "issues": 1, "subscribers": 4, - "stars": 340, + "stars": 360, "dependencies": 4 }, "name": "uniwind", @@ -148138,11 +148335,11 @@ }, "npmPkg": "uniwind", "npm": { - "downloads": 2804, - "weekDownloads": 229, - "size": 485063, - "latestRelease": "1.0.0-beta.8", - "latestReleaseDate": "2025-10-14T07:04:55.330Z" + "downloads": 2767, + "weekDownloads": 484, + "size": 489422, + "latestRelease": "1.0.0-rc.1", + "latestReleaseDate": "2025-10-20T12:53:51.154Z" }, "score": 57, "matchingScoreModifiers": [ @@ -148150,7 +148347,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.069, + "popularity": 0.149, "topicSearchString": "unistyles unistyles react-native react native tailwind tailwindcss theme style" }, { @@ -148214,8 +148411,8 @@ "moduleType": "turbo" }, "npm": { - "downloads": 673, - "weekDownloads": 67, + "downloads": 678, + "weekDownloads": 58, "size": 200893, "latestRelease": "0.6.0", "latestReleaseDate": "2025-10-17T03:09:28.008Z" @@ -148225,7 +148422,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.915, + "popularity": -0.927, "topicSearchString": "react-native ios android web lottie dotlottie player animation lottie-android lottie-ios lottie-react-native" }, { @@ -148294,8 +148491,8 @@ "moduleType": "expo" }, "npm": { - "downloads": 251327, - "weekDownloads": 49111, + "downloads": 245215, + "weekDownloads": 51175, "size": 241489, "latestRelease": "2.5.3", "latestReleaseDate": "2025-10-17T10:53:32.378Z" @@ -148306,7 +148503,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, + "popularity": 0.177, "topicSearchString": "react native react-native animations transitions framer motion framer-motion" }, { @@ -148329,10 +148526,10 @@ "updatedAt": "2025-10-06T17:13:28Z", "createdAt": "2021-12-17T20:06:47Z", "pushedAt": "2025-10-06T17:13:28Z", - "forks": 755, - "issues": 461, + "forks": 756, + "issues": 462, "subscribers": 108, - "stars": 8860, + "stars": 8867, "dependencies": 9 }, "name": "@atproto/oauth-client-expo", @@ -148361,7 +148558,7 @@ "moduleType": "expo" }, "npm": { - "downloads": 95, + "downloads": 96, "weekDownloads": 0, "size": 96611, "latestRelease": "0.0.1", @@ -148431,8 +148628,8 @@ }, "npmPkg": "expo-ios-visual-blur", "npm": { - "downloads": 301, - "weekDownloads": 34, + "downloads": 298, + "weekDownloads": 32, "size": 1129748, "latestRelease": "0.1.0", "latestReleaseDate": "2025-08-09T13:48:49.691Z" @@ -148441,7 +148638,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.653, + "popularity": -0.659, "topicSearchString": "react-native expo expo-ios-visual-blur expoiosvisualblur" }, { @@ -148462,10 +148659,10 @@ "updatedAt": "2025-10-16T12:14:20Z", "createdAt": "2025-06-17T07:41:33Z", "pushedAt": "2025-10-16T12:14:20Z", - "forks": 1, + "forks": 2, "issues": 0, "subscribers": 0, - "stars": 125, + "stars": 132, "dependencies": 5 }, "name": "react-native-harness", @@ -148480,8 +148677,8 @@ }, "npmPkg": "react-native-harness", "npm": { - "downloads": 1248, - "weekDownloads": 176, + "downloads": 1187, + "weekDownloads": 299, "size": 43808, "latestRelease": "1.0.0-alpha.15", "latestReleaseDate": "2025-10-15T14:22:47.626Z" @@ -148491,7 +148688,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.12, + "popularity": 0.214, "topicSearchString": "" }, { @@ -148561,8 +148758,8 @@ }, "npmPkg": "react-native-reanimated-modal", "npm": { - "downloads": 452, - "weekDownloads": 59, + "downloads": 457, + "weekDownloads": 74, "size": 112138, "latestRelease": "1.2.3", "latestReleaseDate": "2025-10-16T20:34:03.590Z" @@ -148572,7 +148769,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.889, + "popularity": -0.862, "topicSearchString": "react-native ios android modal popup overlay reanimated gesture-handler animation swipe fade slide typescript performant lightweight javascript gesture" } ], From 54ea52f06da2d92f91e2bacecdbac3590ce8007d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20M=C3=BCller?= Date: Tue, 21 Oct 2025 00:47:52 +0200 Subject: [PATCH 5/6] add info about configPlugin to README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 2be4e32c7..d02e6f078 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,7 @@ "unmaintained": false, "dev": false, "template": false, + "configPlugin": false, "newArchitecture": false } ``` @@ -138,6 +139,8 @@ **(boolean)** - signify that a library is a development tool or is only a part of development process. - #### `template` **(boolean)** - signify that a library is a new project template. +- #### `configPlugin` + **(boolean \| string \[URL to 3rd Party Config Plugin\])** - Indicates if the library includes an [Expo config plugin](https://docs.expo.dev/config-plugins/introduction/). If the plugin is provided by a third party, supply the URL as a string. This field is optional and will be detected automatically if omitted. - #### `newArchitecture` **(boolean|'new-arch-only')** - signify that a library supports both, or not, the New Architecture and the Old Architecture or only the New Architecture. Skipping the field will result in "untested" status, unless automatic support detection returned a result. You can provide additional context with the `newArchitectureNote` field, if needed. From a5a01ca8c241056acda6236f89379350ac33240e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20M=C3=BCller?= Date: Tue, 21 Oct 2025 12:30:35 +0200 Subject: [PATCH 6/6] add improvements & wording changes to configPlugin feature --- README.md | 2 +- components/Filters/helpers.ts | 2 +- components/Library/ConfigPlugin.tsx | 25 ++++++++++++++----------- components/Library/MetaData.tsx | 2 +- react-native-libraries.schema.json | 2 +- types/index.ts | 4 ++-- 6 files changed, 20 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index d02e6f078..6383109f6 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ - #### `template` **(boolean)** - signify that a library is a new project template. - #### `configPlugin` - **(boolean \| string \[URL to 3rd Party Config Plugin\])** - Indicates if the library includes an [Expo config plugin](https://docs.expo.dev/config-plugins/introduction/). If the plugin is provided by a third party, supply the URL as a string. This field is optional and will be detected automatically if omitted. + **(boolean \| string \[URL to third-party config plugin\])** - Indicates if the library includes an [Expo config plugin](https://docs.expo.dev/config-plugins/introduction/). If the plugin is provided by a third party, supply the URL as a string. This field is optional and will be detected automatically if omitted. - #### `newArchitecture` **(boolean|'new-arch-only')** - signify that a library supports both, or not, the New Architecture and the Old Architecture or only the New Architecture. Skipping the field will result in "untested" status, unless automatic support detection returned a result. You can provide additional context with the `newArchitectureNote` field, if needed. diff --git a/components/Filters/helpers.ts b/components/Filters/helpers.ts index 92684af82..e08afc31e 100644 --- a/components/Filters/helpers.ts +++ b/components/Filters/helpers.ts @@ -58,7 +58,7 @@ export const FILTER_STATUS: FilterParamsType[] = [ }, { param: 'configPlugin', - title: 'Has Expo Config Plugin', + title: 'Has Expo config plugin', }, { param: 'hasExample', diff --git a/components/Library/ConfigPlugin.tsx b/components/Library/ConfigPlugin.tsx index 967453471..f1b10da23 100644 --- a/components/Library/ConfigPlugin.tsx +++ b/components/Library/ConfigPlugin.tsx @@ -1,18 +1,21 @@ import { type StyleProp, type TextStyle } from 'react-native'; import { A, P } from '~/common/styleguide'; +import { type LibraryDataEntryType } from '~/types'; -export const ConfigPluginContent = ({ +type Props = { + configPlugin?: LibraryDataEntryType['configPlugin']; + hoverStyle?: StyleProp; + linkStyles?: StyleProp; + paragraphStyles?: StyleProp; +}; + +export function ConfigPluginContent({ configPlugin, linkStyles, paragraphStyles, hoverStyle, -}: { - configPlugin?: string | boolean; - hoverStyle?: StyleProp; - linkStyles?: StyleProp; - paragraphStyles?: StyleProp; -}) => { +}: Props) { const url = typeof configPlugin === 'string' ? configPlugin : undefined; if (url) { return ( @@ -22,12 +25,12 @@ export const ConfigPluginContent = ({ ); } return

Config plugin

; -}; +} -export const getConfigPluginText = ({ configPlugin }: { configPlugin?: string | boolean }) => { +export function getConfigPluginText(configPlugin: LibraryDataEntryType['configPlugin']) { if (typeof configPlugin === 'string') { - return `Expo Config Plugin available as a separate package`; + return `Expo config plugin available as a separate package`; } else if (configPlugin) { return 'Expo config plugin included'; } -}; +} diff --git a/components/Library/MetaData.tsx b/components/Library/MetaData.tsx index 0f6d46018..8ab0baca9 100644 --- a/components/Library/MetaData.tsx +++ b/components/Library/MetaData.tsx @@ -191,7 +191,7 @@ function generateSecondaryData(library: LibraryType, isDark: boolean): MetadataE paragraphStyles={paragraphStyles} /> ), - tooltip: getConfigPluginText({ configPlugin }), + tooltip: getConfigPluginText(configPlugin), } : null, github.hasTypes diff --git a/react-native-libraries.schema.json b/react-native-libraries.schema.json index 6e2e09690..427ca5c01 100644 --- a/react-native-libraries.schema.json +++ b/react-native-libraries.schema.json @@ -195,7 +195,7 @@ "default": false, "examples": [ true, - "link to 3rd Party config plugin" + "link to third-party config plugin" ] }, "alternatives": { diff --git a/types/index.ts b/types/index.ts index 5b9752ce6..00a3ab117 100644 --- a/types/index.ts +++ b/types/index.ts @@ -33,7 +33,7 @@ export type Query = { hasImage?: string; hasTypes?: string; hasNativeCode?: string; - configPlugin?: boolean | string; + configPlugin?: string; isMaintained?: string; isPopular?: string; isRecommended?: string; @@ -79,7 +79,7 @@ export type LibraryType = LibraryDataEntryType & { isArchived?: boolean; isPrivate?: boolean; hasNativeCode: boolean; - configPlugin?: boolean | string; + configPlugin?: boolean; moduleType?: 'expo' | 'nitro' | 'turbo'; urls: { repo: string;